服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - java实现飞机大战案例详解

java实现飞机大战案例详解

2021-08-26 11:39复杂先森* Java教程

这篇文章主要为大家详细介绍了java实现飞机大战案例,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

前言

飞机大战是一个非常经典的案例,因为它包含了多种新手需要掌握的概念,是一个非常契合面向对象思想的入门练习案例

程序分析:

在此游戏中共有六个对象:
小敌机Airplane,大敌机BigAirplane,小蜜蜂Bee,天空Sky,英雄机Hero,子弹Bullet

其次我们还需要三个类:

超类Flyer,图片类Images,测试类World

还需:

英雄机2张,小敌机,大敌机,小蜜蜂,子弹,天空各1张,爆炸图4张,游戏开始,暂停,游戏结束各1张,共14张图片放入与图片类Images同包中

java实现飞机大战案例详解

超类Flyer:

此类是用来封装所有对象共有的行为及属性的
不管是写什么程序,都建议遵循两点:数据私有化,行为公开化

  1. import java.util.Random;
  2. import java.awt.image.BufferedImage;
  3.  
  4. public abstract class Flyer {
  5. //所有对象都有三种状态:活着的,死了的,及删除的
  6. //这里之所以选择用常量表示状态是因为首先状态是一个不需要去修改的值
  7. //其次状态需要反复使用所以结合这两个特点,我选择了使用常量表示
  8. //state是用来表示当前状态的,每个对象都有一个实时的状态,此状态是会改变的,且初始状态都是活着的
  9. public static final int LIVE = 0;//活着的
  10. public static final int DEAD = 1;//死了的
  11. public static final int REMOVE = 2;//删除的
  12. protected int state = LIVE;//当前状态(默认状态为活着的)
  13.  
  14. 每个对象都是一张图片,既然是图片那么就一定有宽高,其次因为每个对象都是会随时移动的 即为都有xy坐标
  15. protected int width;//宽
  16. protected int height;//高
  17. protected int x;//左右移动(x坐标)
  18. protected int y;//上下移动(y坐标)
  19.  
  20. /**
  21. * 飞行物移动(抽象)
  22. * 每个飞行物都是会移动的,但是移动方式不同
  23. * 所以这里就将共有的行为抽到了超类中
  24. * 但是设置成了抽象方法,实现了多态的效果
  25. */
  26. public abstract void step();
  27.  
  28. /**
  29. * 获取图片(抽象)
  30. * 所有对象都是图片但图片不相同所以抽象化了
  31. */
  32. public abstract BufferedImage getImage();
  33.  
  34. /**
  35. * 判断对象是否是活着的
  36. */
  37. public boolean isLive(){
  38. return state == LIVE;
  39. }
  40. /**
  41. * 判断对象是否是死了的
  42. */
  43. public boolean isDead(){
  44. return state == DEAD;
  45. }
  46. /**
  47. * 判断对象是否删除了
  48. */
  49. public boolean isRemove(){
  50. return state == REMOVE;
  51. }
  52.  
  53. /**
  54. * 判断对象(大敌机,小敌机,小蜜蜂)是否越界
  55. * 当敌人越界我们就需要删除它否则程序越执行越卡,会出现内存泄露的问题,此方法就是为后续删除越界对象做铺垫的
  56. * @return
  57. */
  58. public boolean isOutOfBounds(){
  59. return y >= World.HEIGHT;
  60. }
  61. /**
  62. * 给小/大敌机,小蜜蜂提供的
  63. * 因为三种飞行物的宽,高不同所以不能写死。
  64. * 若三种飞行物的宽,高相同,那么就可以将宽,高写死
  65. */
  66. public Flyer(int width,int height){
  67. Random rand = new Random();
  68. this.width = width;
  69. this.height = height;
  70. x = rand.nextInt(World.WIDTH-width);//x:0到负的width长度的之间的随机数
  71. y = -height;//y:负的height高度
  72. }
  73.  
  74. /**
  75. * 给天空,子弹,英雄机提供的
  76. * 因为英雄机,子弹,天空的宽,高,x,y都是不同的,所以数据不能写死,需要传参
  77. */
  78. public Flyer(int width,int height,int x,int y){
  79. this.width = width;
  80. this.height = height;
  81. this.x = x;
  82. this.y = y;
  83. }
  84.  
  85. /**
  86. *检测碰撞
  87. * this:敌人(小敌机/小蜜蜂/大敌机)
  88. * other:子弹/英雄机
  89. *@return
  90. */
  91. public boolean isHit(Flyer other){
  92. int x1 = this.x - other.width;//x1:敌人的x-英雄机/子弹的宽
  93. int x2 = this.x + this.width;//x2:敌人的x加上敌人的宽
  94. int y1 = this.y - other.height;//y1:敌人的y-英雄机/子弹的高
  95. int y2 = this.y + this.height;//y2:敌人的y加上敌人的高
  96. int x = other.x;//x:英雄机/子弹的x
  97. int y = other.y;//y:英雄机/子弹的y
  98. /*
  99. x在x1与x2之间 并且 y在y1与y2之间,即为撞上了
  100. */
  101. return x>x1 && x<=x2 && y>=y1 && y<=y2;
  102. }
  103.  
  104. /**
  105. * 飞行物死亡
  106. */
  107. public void goDead(){
  108. state = DEAD;//将当前状态修改为死了的
  109. }
  110. }

图片工具类Images:

此类用来获取每个对象对应的图片

  1. import java.awt.image.BufferedImage;
  2. import javax.imageio.ImageIO;
  3. import javax.swing.ImageIcon;
  4. /**
  5. * 图片工具类
  6. */
  7. public class Images {
  8. // 公开的 静态的 图片数据类型 变量名
  9. /**
  10. * 对象图片
  11. */
  12. public static BufferedImage sky;//天空
  13. public static BufferedImage bullet;//子弹
  14. public static BufferedImage[] heros;//英雄机
  15. public static BufferedImage[] airs;//小敌机
  16. public static BufferedImage[] bairs;//大敌机
  17. public static BufferedImage[] bees;//小蜜蜂
  18.  
  19. /**
  20. * 状态图片
  21. */
  22. public static BufferedImage start;//启动状态图
  23. public static BufferedImage pause;//暂停状态图
  24. public static BufferedImage gameover;//游戏结束状态图
  25.  
  26. static {//初始化静态图片
  27. sky = readImage("background01.png");//天空
  28. bullet = readImage("bullet.png");//子弹
  29. heros = new BufferedImage[2];//英雄机图片数组
  30. heros[0] = readImage("hero0.png");//英雄机图片1
  31. heros[1] = readImage("hero1.png");//英雄机图片2
  32. airs = new BufferedImage[5];//小敌机图片数组
  33. bairs = new BufferedImage[5];//大敌机图片数组
  34. bees = new BufferedImage[5];//小蜜蜂图片数组
  35. airs[0] = readImage("airplane.png");//小敌机图片读取
  36. bairs[0] = readImage("bigairplane.png");//大敌机图片读取
  37. bees[0] = readImage("bee01.png");//小蜜蜂图片读取
  38.  
  39. /**爆炸图迭代读取*/
  40. for (int i=1;i<5;i++){//遍历/迭代赋值
  41. airs[i] = readImage("bom"+i+".png");//小敌机图片数组其余元素赋值爆炸图
  42. bairs[i] = readImage("bom"+i+".png");//大敌机图片数组其余元素赋值爆炸图
  43. bees[i] = readImage("bom"+i+".png");//小蜜蜂图片数组其余元素赋值爆炸图
  44. }
  45. start = readImage("start.png");//启动状态图
  46. pause = readImage("pause.png");//暂停状态图
  47. gameover = readImage("gameover.png");//游戏结束状态图
  48. }
  49.  
  50. /**
  51. * 读取图片
  52. * 此处的fileName:图片文件名
  53. *
  54. * try.....catch:异常的一种处理方法
  55. */
  56. public static BufferedImage readImage(String fileName){
  57. try{
  58. BufferedImage img = ImageIO.read(Flyer.class.getResource(fileName)); //读取与Flyer在同一个包中的图片
  59. return img;
  60. }catch(Exception e){
  61. e.printStackTrace();
  62. throw new RuntimeException();
  63. }
  64. }
  65. }

世界窗口类/测试类 World:

此类用来集合所有类进行排序及具体的操作,和程序的最终运行

  1. import javax.swing.JFrame;
  2. import javax.swing.JPanel;
  3. import java.awt.Graphics;
  4. import java.awt.event.MouseAdapter;
  5. import java.awt.event.MouseEvent;
  6. import java.nio.Buffer;
  7. //定时器
  8. import java.util.Timer;
  9. //定时器任务
  10. import java.util.TimerTask;
  11. //打开随机类
  12. import java.util.Random;
  13. //扩容类
  14. import java.util.Arrays;
  15. /**
  16. * 世界测试类(整个游戏窗口)
  17. */
  18. public class World extends JPanel{
  19. public static final int WIDTH = 400;//窗口宽
  20. public static final int HEIGHT = 700;//窗口高
  21.  
  22. public static final int START = 0;//启动状态
  23. public static final int RUNNING = 1;//运行状态
  24. public static final int PAUSE = 2;//暂停状态
  25. public static final int GAME_OVER = 3;//游戏结束状态
  26. private int state = START;//当前状态默认是启动状态
  27.  
  28. /**
  29. * 声明每个类具体的对象
  30. * 如下为:窗口中所看到的对象
  31. */
  32. private Sky s = new Sky();//天空对象
  33. private Hero h = new Hero();//英雄机对象
  34. private Flyer[] enemies ={};//敌人对象,分别是大敌机,小敌机,小蜜蜂所以写成了数组
  35. private Bullet[] bt ={};//子弹也是有很多的所以写成了数组
  36.  
  37. /**
  38. * 生成敌人对象(小敌机,大敌机,小蜜蜂)
  39. */
  40. public Flyer nextOne(){
  41. Random rand = new Random();
  42. int type = rand.nextInt(20);//0-19之间的随机数
  43. if (type < 5){//当随机数小于5
  44. return new Bee();//返回小蜜蜂
  45. }else if (type < 13){//当随机数小于13
  46. return new Airplane();//返回小敌机
  47. }else{//大于十三则
  48. return new BigAirplane();//返回大敌机
  49. }
  50. }
  51.  
  52. private int enterIndex = 0;
  53. /**
  54. * 敌人(大敌机,小敌机,小蜜蜂)入场
  55. */
  56. public void enterAction() {//每10毫秒走一次
  57. enterIndex++;
  58. if (enterIndex%40 == 0 ){//四百毫秒走一次
  59. Flyer fl = nextOne();//获取敌人对象
  60. enemies = Arrays.copyOf(enemies,enemies.length+1);//扩容(每产生一个敌人数组就扩容1)
  61. enemies[enemies.length-1] = fl;//将生成的敌人fl放置enemies数组的末尾
  62. }
  63. }
  64.  
  65. int shootIndex = 0;
  66. /**
  67. * 子弹入场
  68. */
  69. public void shootAction(){//10毫秒走一次
  70. shootIndex++;
  71. if (shootIndex%30 == 0){//每300毫秒走一次
  72. Bullet[] bs = h.shoot();//获取子弹数组对象
  73. bt = Arrays.copyOf(bt,bt.length+bs.length);//扩容子弹数组(每入场一个子弹就加一个元素)
  74. System.arraycopy(bs,0,bt,bt.length-bs.length,bs.length);//数组的追加
  75. }
  76. }
  77.  
  78. /**
  79. * 让除去英雄机外的所有对象(小敌机,大敌机,小蜜蜂,子弹,天空)移动
  80. */
  81. public void setpAction() {//每10毫秒走一次
  82. s.step();//天空移动
  83. for (int i=0;i<enemies.length;i++) {//遍历所有敌人
  84. enemies[i].step();//敌人移动
  85. }
  86. for (int i=0;i<bt.length;i++){//遍历所有子弹
  87. bt[i].step();//子弹移动
  88. }
  89. }
  90.  
  91. /**
  92. * 重写outOfBoundsAction(方法)
  93. */
  94. public void outOfBoundsAction() {//每10毫秒走一次
  95. for (int i=0;i<enemies.length;i++){//遍历所有敌人
  96. if (enemies[i].isOutOfBounds() || enemies[i].isRemove()){
  97. enemies[i] = enemies[enemies.length-1];//最后一个敌人和越界敌人替换
  98. enemies = Arrays.copyOf(enemies,enemies.length-1);//缩容
  99. }
  100. }
  101. for (int i=0;i<bt.length;i++){//迭代所有子弹
  102. if (bt[i].isOutOfBounds() || bt[i].isRemove()){
  103. bt[i] = bt[bt.length-1];//用最后一个子弹替换出界的子弹
  104. bt = Arrays.copyOf(bt,bt.length-1);//缩容
  105. }
  106. }
  107. }
  108. private int score = 0;//玩家的得分
  109. /**
  110. * 子弹与敌人的碰撞
  111. */
  112. public void bulletBangAction() {//每10毫秒走一次
  113. for (int i=0;i<bt.length;i++){//遍历所有子弹
  114. Bullet b = bt[i];//获取每一个子弹
  115. for (int j=0;j<enemies.length;j++){//迭代每一个敌人
  116. Flyer f = enemies[j];//获取每一个敌人
  117. if (b.isLive() && f.isLive() && f.isHit(b)){//若子弹活着的,敌人活着的,并且两个对象相撞
  118. b.goDead();//子弹当前状态修改为死亡
  119. f.goDead();//敌人当前状态修改为死亡
  120. if (f instanceof EnemyScore) {//判断死亡的敌人类型能否强转为得分接口类型
  121. EnemyScore es = (EnemyScore) f;//将死亡敌人向下造型
  122. score += es.getScore();//调用具体的敌人对象的得分接口的getScore()加分方法
  123. }
  124. if (f instanceof EnemyAward){//判断死亡的敌人类型能否强转为奖励值接口类型
  125. EnemyAward ea = (EnemyAward) f;//将死亡敌人强转为奖励值接口类型
  126. int type = ea.getAwardType();//将具体的奖励值赋值给type
  127. switch (type){
  128. case EnemyAward.FIRE://火力值
  129. h.addFier();//返回增加火力值
  130. break;
  131. case EnemyAward.LIFE://生命值
  132. h.addLife();//返回增加生命值
  133. break;
  134. }
  135. }
  136. }
  137. }
  138. }
  139. }
  140.  
  141. /**
  142. * 英雄机与敌人的碰撞
  143. */
  144. private void heroBangAction() {//每10毫秒走一次
  145. for (int i=0;i<enemies.length;i++){//迭代所有敌人
  146. Flyer f = enemies[i];//获取每个敌人
  147. if (f.isLive() && h.isLive() && f.isHit(h)){//判断碰撞
  148. f.goDead();//敌人死亡
  149. h.subtractLife();//英雄机减生命值
  150. h.clearFier();//英雄机清空火力值
  151. }
  152. }
  153. }
  154.  
  155. /**
  156. * 检测游戏结束
  157. */
  158. private void checkGameOverAction() {//每10毫秒走一次
  159. if (h.getLife() <= 0) {//若英雄机生命值为0或小于0
  160. state = GAME_OVER;//将状态修改为GAME_OVER游戏结束状态
  161. }
  162. }
  163. /**
  164. * 启动程序的执行
  165. */
  166. public void action() {//测试代码
  167. MouseAdapter m = new MouseAdapter() {
  168. /**
  169. * 重写mouseMoved()鼠标移动事件
  170. * @param e
  171. */
  172. @Override
  173. public void mouseMoved(MouseEvent e) {
  174. if (state == RUNNING){//仅在运行状态下执行
  175. int x = e.getX();//获取鼠标的x坐标
  176. int y = e.getY();//获取鼠标的y坐标
  177. h.moveTo(x,y);//接收鼠标具体坐标
  178. }
  179. }
  180.  
  181. /**
  182. * 重写mouseClicked() 鼠标点击事件
  183. * @param e
  184. */
  185. public void mouseClicked(MouseEvent e){
  186. switch (state){//根据当前状态做不同的处理
  187. case START://启动状态时
  188. state = RUNNING;//鼠标点击后改成运行状态
  189. break;
  190. case GAME_OVER://游戏结束状态时
  191. /*清理战场(将所有数据初始化)*/
  192. score = 0;//总分归零
  193. s = new Sky();//天空初始化所有属性
  194. h = new Hero();//英雄机初始化所有属性
  195. enemies = new Flyer[0];//敌人初始化所有属性
  196. bt = new Bullet[0];//子弹初始化所有属性
  197.  
  198. state = START;//鼠标点击后修改为启动状态
  199. break;
  200. }
  201. }
  202.  
  203. /**
  204. * 鼠标移出窗口事件
  205. * @param e
  206. */
  207. public void mouseExited(MouseEvent e){
  208. if (state == RUNNING){//若状态为运行
  209. state = PAUSE;//则将当前状态修改为暂停
  210. }
  211. }
  212.  
  213. /**
  214. * 鼠标的进入窗口事件
  215. * @param e
  216. */
  217. public void mouseEntered(MouseEvent e){
  218. if (state == PAUSE){//若当前状态为暂停
  219. state = RUNNING;//则将当前状态修改为运行
  220. }
  221. }
  222. };
  223. this.addMouseListener(m);
  224. this.addMouseMotionListener(m);
  225. Timer timer = new Timer();//定时器对象
  226. int interval = 10;//定时的间隔(此间隔是以毫秒为单位)
  227. timer.schedule(new TimerTask() {
  228. @Override
  229. public void run() {//定时干的事(每10毫秒自动执行此方法当中的所有方法)
  230. if (state == RUNNING){//只在运行状态下执行
  231. enterAction();//敌人(大敌机,小敌机,小蜜蜂)入场
  232. shootAction();//子弹入场
  233. setpAction();//飞行物移动
  234. outOfBoundsAction();//删除越界的敌人
  235. bulletBangAction();//子弹与敌人的碰撞
  236. heroBangAction();//英雄机与敌人的碰撞
  237. checkGameOverAction();//检测游戏结束
  238. }
  239. repaint();//重新调用paint()方法(重画)
  240. }
  241. }, interval, interval);//定时计划表
  242. }
  243.  
  244. /**
  245. * 重写paint方法,在窗口中画图片
  246. * @param g:画笔
  247. */
  248. public void paint(Graphics g){//每10毫秒走一次
  249. g.drawImage(s.getImage(), s.x, s.y, null);//画天空
  250. g.drawImage(s.getImage(), s.x, s.getY1(), null);//画第二张天空
  251. g.drawImage(h.getImage(),h.x,h.y,null);//画英雄机
  252. for (int i=0;i<enemies.length;i++){//遍历所有敌人
  253. Flyer f = enemies[i];//获取每一个敌人
  254. g.drawImage(f.getImage(),f.x,f.y,null);//画敌人
  255. }
  256. for (int i = 0; i<bt.length; i++){//遍历所有子弹
  257. Bullet b = bt[i];//获取所有子弹
  258. g.drawImage(b.getImage(),b.x,b.y,null);//画子弹
  259. }
  260. g.drawString("SCORE:"+score,10,25);//在窗口右上角画分数
  261. g.drawString("HP:"+h.getLife(),10,45);//在窗口右上角画出英雄机的生命值
  262. switch (state){//画状态图
  263. case START:
  264. g.drawImage(Images.start,0,0,null);//启动状态图
  265. break;
  266. case PAUSE:
  267. g.drawImage(Images.pause,0,0,null);//暂停图
  268. break;
  269. case GAME_OVER:
  270. g.drawImage(Images.gameover,0,0,null);//游戏结束图
  271. break;
  272. }
  273. }
  274.  
  275. /**
  276. * 主执行方法
  277. * @param args
  278. */
  279. public static void main(String[] args) {
  280. JFrame frame = new JFrame();
  281. World world = new World();
  282. frame.add(world);
  283. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  284. frame.setSize(WIDTH,HEIGHT);
  285. frame.setLocationRelativeTo(null);
  286. frame.setVisible(true);//1)设置窗口可见 2)尽快调用paint()方法
  287.  
  288. world.action();//启动程序的执行
  289. }
  290. }
  291. /**
  292. * 1.问:为什么要将引用设计再main方法的外面?
  293. * 答:因为若将引用设计在main中,则引用只能在main中使用,其他方法都不能访问,
  294. * 为了能在其他方法中也能访问这些引用,所以将引用设计在main外
  295. *
  296. * 2.问:为什么要单独创建action方法来测试?
  297. * 答:因为main方法时static的,在main方法中是无法访问引用的,
  298. * 所以需要单独创建非static的方法来测试
  299. *
  300. * 3.问:为什么在main中要先创建world对象,然后再调用action()方法?
  301. * 答:因为main方法是static的,再main中是无法调用action()方法的
  302. * 所以要先创建world对象,然后再调用action()方法
  303. */

小敌机类Airplane:

此类存储小敌机特有的属性及行为:
移动速度,分值,及图片的切换
继承超类,且实现得分接口

  1. package cn.tedu.shoot;
  2.  
  3. import java.awt.image.BufferedImage;
  4.  
  5. /**
  6. * 小敌机
  7. */
  8. public class Airplane extends Flyer implements EnemyScore{
  9. // 移动速度
  10. private int speed;
  11.  
  12. public Airplane(){
  13. super(66,89);
  14. speed = 2;//小敌机的下落速度
  15. }
  16. /**重写step方法(移动)*/
  17. public void step(){
  18. y += speed;//y+表示向下
  19. }
  20. int index = 1;
  21. /**
  22. * 重写getImage()获取对象图片
  23. * @return
  24. */
  25. public BufferedImage getImage() {
  26. if (isLive()){//若活着 则返回airs[0]图片
  27. return Images.airs[0];
  28. }else if (isDead()){//若死了 则返回airs[1~4]图片
  29. BufferedImage img = Images.airs[index++];//获取爆破图
  30. if (index == Images.airs.length){//若index到了5 则表示到了最后一张
  31. state = REMOVE;//将当前状态修改为REMOVE删除的
  32. }
  33. return img;//返回爆炸图
  34. /*
  35. index = 1
  36. 10M isLive返回true 则 return返回airs[0]图片
  37. 20M isLive返回false 则 执行isDead返回true img = airs[1] index = 2 返回airs[1]图片
  38. 30M isLive返回false 则 执行isDead返回true img = airs[2] index = 3 返回airs[2]图片
  39. 40M isLive返回false 则 执行isDead返回true img = airs[3] index = 4 返回airs[3]图片
  40. 50M isLive返回false 则 执行isDead返回true img = airs[4] index = 5 state修改为REMOVE 返回airs[4]图片
  41. 60M isLive返回false 则 执行isDead返回false return返回null空值(不返回图片)
  42. */
  43. }
  44. return null;
  45. }
  46.  
  47. /**
  48. * 重写getScore()方法
  49. * @return:分值
  50. */
  51. public int getScore(){
  52. return 1;
  53. }
  54. }

大敌机类BigAirplane:

大敌机与小敌机几乎无差别
同样要继承超类,且实现得分接口

  1. package cn.tedu.shoot;
  2.  
  3. import java.awt.image.BufferedImage;
  4. import java.util.Random;
  5.  
  6. /**
  7. * 大敌机
  8. */
  9. public class BigAirplane extends Flyer implements EnemyScore{
  10. // 移动速度
  11. private int speed;
  12.  
  13. public BigAirplane(){//初始化默认属性
  14. super(203,211);//图片宽,高
  15. speed = 2;//移动速度
  16. }
  17.  
  18. /**重写step方法(移动)*/
  19. public void step(){
  20. y += speed;//y+表示直线向下移动
  21. }
  22.  
  23. int index = 1;
  24. @Override
  25. public BufferedImage getImage() {
  26. if (isLive()){//若活着 则返回airs[0]图片
  27. return Images.bairs[0];
  28. }else if (isDead()){//若死了 则返回airs[1~4]图片
  29. BufferedImage img = Images.bairs[index++];//获取爆破图
  30. if (index == Images.bairs.length){//若index到了5 则表示到了最后一张
  31. state = REMOVE;//将当前状态修改为REMOVE删除的
  32. }
  33. return img;
  34. }
  35. return null;
  36. }
  37.  
  38. /**
  39. * 重写getScore()方法
  40. * @return:分值
  41. */
  42. public int getScore(){
  43. return 3;
  44. }
  45. }

小蜜蜂类Bee:

此类虽也可以算作敌人类,但是与小/大敌机有所不同,它是实现奖励值接口

  1. package cn.tedu.shoot;
  2.  
  3. import java.awt.image.BufferedImage;
  4. import java.util.Random;
  5.  
  6. /**
  7. * 小蜜蜂
  8. */
  9. public class Bee extends Flyer implements EnemyAward{
  10. // x坐标移动速度,y坐标移动速度,
  11. private int xSpeed;//x坐标移动速度
  12. private int ySpeed;//y坐标移动速度
  13. private int awardType;//奖励类型
  14.  
  15. public Bee(){//初始化属性
  16. super(48,50);//图片宽,高
  17. Random rand = new Random();
  18. awardType = rand.nextInt(2);//随机奖励值类型0~2之间(不包括2)0表示火力值,1表示生命值
  19. xSpeed = 1;//平行移动
  20. ySpeed = 2;//垂直移动
  21. }
  22. /**重写step方法(移动)*/
  23. public void step() {
  24. y += ySpeed;//y+:向下移动
  25. x += xSpeed;//x+:随机向左或是向右移动
  26. if (x <= 0 || x >= World.WIDTH - width) {
  27. xSpeed *= -1;//到达边界后反方向移动(正负为负,负负为正)
  28. }
  29. }
  30.  
  31. int index = 1;
  32. public BufferedImage getImage() {
  33. if (isLive()){//若活着 则返回airs[0]图片
  34. return Images.bees[0];//返回小蜜蜂图
  35. }else if (isDead()){//若死了 则返回airs[1~4]图片
  36. BufferedImage img = Images.bees[index++];//获取爆破图
  37. if (index == Images.bees.length){//若index到了5 则表示到了最后一张
  38. state = REMOVE;//将当前状态修改为REMOVE删除的
  39. }
  40. return img;//返回爆炸图
  41. }
  42. return null;
  43. }
  44.  
  45. /**
  46. * 重写getAwardType()方法
  47. * @return
  48. */
  49. public int getAwardType(){
  50. return awardType;//返回奖励类型
  51. }
  52. }

天空类Sky:

这里有一点需要强调,就是为了实现天空图片向下移动后会出现移动过的位置出现图片丢失的情况,就使用了两张图上下拼接起来,当第某张天空图完全移出窗口的时候会让它重新出现在窗口上方继续向下移动

  1. package cn.tedu.shoot;
  2.  
  3. import java.awt.image.BufferedImage;
  4.  
  5. /**
  6. * 天空
  7. */
  8. public class Sky extends Flyer{
  9. // 移动速度,y1
  10. private int y1;//第二张图片的y坐标
  11. private int speed;//移动速度
  12.  
  13. public Sky(){//设置初始值(默认值)
  14. //此处的宽高用常量是因为天空的宽高和窗口是一致的,x轴和y轴为若不为0就和窗口不匹配了
  15. super(World.WIDTH,World.HEIGHT,0,0);//初始化图片坐标及宽,高
  16. speed = 1;//初始化移动速度
  17. y1 = -World.HEIGHT;//第二张图片设置在第一张图片上方
  18. }
  19. /**重写step方法(移动)*/
  20. public void step(){
  21. y += speed;//第一张图向下移动
  22. y1 += speed;//第二张图向下移动
  23. if (y >= World.HEIGHT){//若y>=窗口的高
  24. y = -World.HEIGHT;//将移动出去的第一张天空挪到窗口上方
  25. }
  26. if (y1 >= World.HEIGHT){//若第二张天空挪出窗口
  27. y1 = -World.HEIGHT;//将第二张天空挪到窗口上方
  28. }
  29. }
  30. /**重写getImage()获取对象图片*/
  31. @Override
  32. public BufferedImage getImage() {//10毫秒走一次
  33. return Images.sky;//返回天空图片即可
  34. }
  35.  
  36. /**
  37. * 获取y1坐标
  38. */
  39. public int getY1(){
  40. return y1;//返回y1
  41. }
  42. }

英雄机类Hero:

  1. package cn.tedu.shoot;
  2.  
  3. import java.awt.image.BufferedImage;
  4. /**
  5. * 英雄机
  6. */
  7. public class Hero extends Flyer {
  8. // 命数,火力值
  9. private int life;//命数
  10. private int fire;//火力
  11.  
  12. /**
  13. * 初始化英雄机坐标机具体数据
  14. */
  15. public Hero() {
  16. super(97,139,140,400);//宽,高,及初始坐标
  17. fire = 0;//初始火力值 0:单倍火力
  18. life = 3;//初始生命值
  19. }
  20. /**重写step方法(移动)*/
  21. public void step(){//每10毫秒走一次
  22. //因为英雄机是跟随鼠标移动的,而鼠标是在窗口上的所以这里就没有写具体的方法,而是在窗口类中去用鼠标的具体坐标计算出英雄机的移动位置
  23. }
  24.  
  25. int index = 0;//下标
  26. /**重写getImage()获取对象图片*/
  27. @Override
  28. public BufferedImage getImage() {//每10毫秒走一次
  29. return Images.heros[index++ % Images.heros.length];//heros[0]和heros[1]来回切换
  30. /*过程
  31. index = 0
  32. 10M 返回heros[0] index = 1
  33. 20M 返回heros[1] index = 2
  34. 30M 返回heros[0] index = 3
  35. 40M 返回heros[1] index = 4
  36. 50M 返回heros[0] index = 5
  37. 60M 返回heros[1] index = 6
  38. ...........
  39. */
  40. }
  41. /**
  42. * 英雄机发射子弹(生成子弹对象)
  43. */
  44. public Bullet[] shoot(){
  45. int xStep = this.width/4;//子弹x坐标
  46. int yStep = 5;//子弹y坐标
  47. System.out.println(this.x+"\t"+this.y);
  48. if (fire>0){//双倍火力
  49. Bullet[] bs = new Bullet[3];//2发子弹
  50. bs[0] = new Bullet(this.x+1*xStep,this.y-yStep);//子弹坐标1
  51. bs[1] = new Bullet(this.x+3*xStep,this.y-yStep);//子弹坐标2
  52. bs[2] = new Bullet(this.x+2*xStep,this.y-yStep);
  53. fire -= 2;//发射一次双倍活力,则火力值-2
  54. return bs;
  55. } else {//单倍火力
  56. Bullet[] bs = new Bullet[1];//1发子弹
  57. bs[0] = new Bullet(this.x+2*xStep,this.y-yStep);//x:英雄机的x+2/4英雄机的宽,y:英雄机的y-
  58. return bs;
  59. }
  60. }
  61.  
  62. /**
  63. * 英雄机移动
  64. */
  65. public void moveTo(int x,int y){//形参列表:鼠标的x坐标,y坐标
  66. this.x = x - this.width/2;//英雄机的x = 鼠标的x减1/2英雄机的宽
  67. this.y = y - this.height/2;//英雄机的y = 鼠标的y减1/2英雄机的高
  68. }
  69. /**
  70. * 英雄机增生命值
  71. */
  72. public void addLife(){
  73. life++;//生命值+1
  74. }
  75.  
  76. /**
  77. * 获取英雄机生命值
  78. * @return
  79. */
  80. public int getLife(){
  81. return life;//返回生命值
  82. }
  83.  
  84. /**
  85. * 英雄机减少生命值
  86. */
  87. public void subtractLife(){
  88. life--;//生命值减1
  89. }
  90. /**
  91. * 英雄机增火力值
  92. */
  93. public void addFier(){
  94. fire += 40;//火力值+40
  95. }
  96.  
  97. /**
  98. * 清空火力值
  99. */
  100. public void clearFier(){
  101. fire = 0;//火力值归零
  102. }
  103. }

子弹类Bullet:

  1. package cn.tedu.shoot;
  2.  
  3. import java.awt.image.BufferedImage;
  4.  
  5. /**
  6. * 子弹
  7. */
  8. public class Bullet extends Flyer {
  9. // 移动速度
  10. private int speed;
  11. public Bullet(int x,int y) {//子弹有多个,每个子弹的初始坐标都不同,所以要写活
  12. super(8,20,x,y);
  13. speed = 3;//初始移动速度
  14. }
  15. /**重写step方法(移动)*/
  16. public void step(){
  17. y -= speed;//y-:表示直线向上移动
  18. }
  19.  
  20. /**
  21. * 重写getImage()获取对象图片
  22. * @return
  23. */
  24. @Override
  25. public BufferedImage getImage() {//10毫秒走一次
  26. if (isLive()){//若活着则返回bullet图片
  27. return Images.bullet;
  28. }else if (isDead()){//若死了则将state修改为REMOVE
  29. state = REMOVE;
  30. }
  31. return null;//死了的和删除的都返回null空值
  32. /**
  33. * 若活着 则返回bullet图片
  34. * 若死了 则修改REMOVE 再返回空值
  35. * 若删除 则返回空值
  36. */
  37. }
  38.  
  39. /**
  40. * 判断子弹是否越界
  41. * @return
  42. */
  43. public boolean isOutOfBounds(){
  44. return y <= -height;若子弹的y轴坐标小于自己的高则说明移动到了窗口外部
  45. }
  46. }

奖励值接口 EnemyAward:

  1. package cn.tedu.shoot;
  2.  
  3. /**
  4. * 奖励值接口
  5. */
  6. public interface EnemyAward {
  7. public int FIRE = 0;//火力
  8. public int LIFE = 1;//生命值
  9. /**
  10. * 获取奖励值类型
  11. * @return
  12. */
  13. int getAwardType();
  14. }

得分接口 EnemyScore:

  1. package cn.tedu.shoot;
  2. /*得分接口*/
  3. public interface EnemyScore {
  4. /*得分*/
  5. public int getScore();
  6. }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

原文链接:https://blog.csdn.net/qq_54177999/article/details/114917028

延伸 · 阅读

精彩推荐