- 1、本文档共22页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
坦克大战java源代码
有些图片路径会出错 要注意
package com.tankgame;
import java.util.Vector;
//坦克类
class Tank
{
int x=0;
int y=0;
int color=0;
int speed=1;
int direct=0;
boolean isLive=true;
public Tank(int x,int y)
{
this.x=x;
this.y=y;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public int getDirect() {
return direct;
}
public void setDirect(int direct) {
this.direct = direct;
}
public int getColor() {
return color;
}
public void setColor(int color) {
this.color = color;
}
}
//我的坦克
class Hero extends Tank
{
Shot shot=null;
VectorShot shotm=new VectorShot();
public Hero(int x,int y)
{
super(x,y);
this.color=5;
}
//坦克具有一个打击敌人的方法
public void shotenemy(int x,int y,int direct)
{
switch(direct)
{
case 0:
shot=new Shot(this.x+10,this.y,0);
shotm.add(shot);
break;
case 1:
shot=new Shot(this.x+30,this.y+10,1);
shotm.add(shot);
break;
case 2:
shot=new Shot(this.x+10,this.y+30,2);
shotm.add(shot);
break;
case 3:
shot=new Shot(this.x,this.y+10,3);
shotm.add(shot);
break;
}
Thread th=new Thread(shot);
th.start();
}
//调整速度
public void moveup()
{
y-=speed;
}
public void moveright()
{
x+=speed;
}
public void movedown()
{
y+=speed;
}
public void moveleft()
{
x-=speed;
}
}
//敌人的坦克
class EnemyTank extends Tank implements Runnable
{
VectorShotensh=new VectorShot();
VectorEnemyTankets=new VectorEnemyTank();
public EnemyTank(int x, int y)
{
super(x, y);
this.setColor(2);
this.setDirect(2);
}
//获取MPanel上的敌人坦克
public void setets(VectorEnemyTank vv)
{
this.ets=vv;
}
//判断敌人的坦克是否碰撞
public boolean isTouch()
{
boolean b=false;
EnemyTank et=null;
switch(direct)
{
case 0:
for(int i=0;iets.size();i++)
{
et=ets.get(i);
if(et!=this)
{
if(et.direct==0||et.direct==2)
{
if(this.x=et.xthis.x=et.x+20this.y=
文档评论(0)