欢迎来到天天文库
浏览记录
ID:38696573
大小:91.00 KB
页数:22页
时间:2019-06-17
《坦克大战java源代码》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、有些图片路径会出错要注意packagecom.tankgame;importjava.util.Vector;//坦克类classTank{intx=0;inty=0;intcolor=0;intspeed=1;intdirect=0;booleanisLive=true;publicTank(intx,inty){this.x=x;this.y=y;}publicintgetX(){returnx;}publicvoidsetX(intx){this.x=x;}publicintgetY(){returny;}publicvoidsetY(inty){this
2、.y=y;}publicintgetDirect(){returndirect;}publicvoidsetDirect(intdirect){this.direct=direct;}publicintgetColor(){returncolor;}publicvoidsetColor(intcolor){this.color=color;}}//我的坦克classHeroextendsTank{Shotshot=null;Vectorshotm=newVector();publicHero(intx,inty){super(x,y);t
3、his.color=5;}//坦克具有一个打击敌人的方法publicvoidshotenemy(intx,inty,intdirect){switch(direct){case0:shot=newShot(this.x+10,this.y,0);shotm.add(shot);break;case1:shot=newShot(this.x+30,this.y+10,1);shotm.add(shot);break;case2:shot=newShot(this.x+10,this.y+30,2);shotm.add(shot);break;case3:shot=
4、newShot(this.x,this.y+10,3);shotm.add(shot);break;}Threadth=newThread(shot);th.start();}//调整速度publicvoidmoveup(){y-=speed;}publicvoidmoveright(){x+=speed;}publicvoidmovedown(){y+=speed;}publicvoidmoveleft(){x-=speed;}}//敌人的坦克classEnemyTankextendsTankimplementsRunnable{Vectorens
5、h=newVector();Vectorets=newVector();publicEnemyTank(intx,inty){super(x,y);this.setColor(2);this.setDirect(2);}//获取MPanel上的敌人坦克publicvoidsetets(Vectorvv){this.ets=vv;}//判断敌人的坦克是否碰撞publicbooleanisTouch(){booleanb=false;EnemyTanket=null;switch(dire
6、ct){case0:for(inti=0;i7、8、et.direct==2){if(this.x>=et.x&&this.x<=et.x+20&&this.y<=et.y+30&&this.y>et.y){returntrue;}if(this.x+20>=et.x&&this.x+20<=et.x+20&&this.y<=et.y+30&&this.y>et.y){returntrue;}}if(et.direct==19、10、et.direct==11、3){if(this.x>=et.x&&this.x<=et.x+30&&this.y<=et.y+20&&this.y>et.y){returntrue;}if(this.x+20>=et.x&&this.x+20<=et.x+30&&this.y<=et.y+20&&this.y>et.y){returntrue;}}}}break;case1:for(inti=0;i12、13、et.direct==2){if(this.x+30>=et.x&&t14、his.x+30<=et
7、
8、et.direct==2){if(this.x>=et.x&&this.x<=et.x+20&&this.y<=et.y+30&&this.y>et.y){returntrue;}if(this.x+20>=et.x&&this.x+20<=et.x+20&&this.y<=et.y+30&&this.y>et.y){returntrue;}}if(et.direct==1
9、
10、et.direct==
11、3){if(this.x>=et.x&&this.x<=et.x+30&&this.y<=et.y+20&&this.y>et.y){returntrue;}if(this.x+20>=et.x&&this.x+20<=et.x+30&&this.y<=et.y+20&&this.y>et.y){returntrue;}}}}break;case1:for(inti=0;i12、13、et.direct==2){if(this.x+30>=et.x&&t14、his.x+30<=et
12、
13、et.direct==2){if(this.x+30>=et.x&&t
14、his.x+30<=et
此文档下载收益归作者所有