• 大小: 1.48MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: Java
  • 标签: 生命  Boss  敌机子弹  

资源简介

JAVA项目——打飞机小游戏,实现敌机子弹,Boss机以及特殊跟踪弹,奖励环节隐藏于击杀敌机处,实现子弹,敌机,自己等的碰撞检测,难度跟随游戏时间增加。

资源截图

代码片段和文件信息

package net.Mas.game;

import java.util.Random;

public class Airplan extends Flyobject  implements Enemy {
   
   private int speed ;  //  移动速度 
   private int life ;    //生命
  // private BufferedImage[] images = {};   //图片  
   private int type ;    //标记 
   
   private int xSpeed = 1;   //x坐标移动速度  
  
   
   public Airplan () {
  // images = new BufferedImage[] {ShootGame.Airplan0ShootGame.Airplan1ShootGame.Airplan2};
   Random random = new Random();
   type = random.nextInt(20);
      if(type < 3)
   {
   image  = ShootGame.Airplan2;
   life   =3 ;
   speed  = 1 ;
   }else if (type < 7) {
   image = ShootGame.Airplan1;
   life = 2;
   speed = 1 ;
   }else {
   image  = ShootGame.Airplan0;
   life = 1;
   speed = 1 ;
   }
   w

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        301  2017-09-11 09:01  WeiGame\.classpath

     文件        383  2017-09-11 09:01  WeiGame\.project

     文件        598  2017-09-11 09:01  WeiGame\.settings\org.eclipse.jdt.core.prefs

     文件       2020  2017-09-18 10:01  WeiGame\bin\net\Mas\game\Airplan.class

     文件       3575  2017-09-13 09:02  WeiGame\bin\net\Mas\game\Airplan0.png

     文件       1975  2017-09-18 14:20  WeiGame\bin\net\Mas\game\Airplan1.png

     文件       4980  2017-09-15 11:26  WeiGame\bin\net\Mas\game\Airplan2.png

     文件        211  2017-09-11 16:29  WeiGame\bin\net\Mas\game\Award.class

     文件     548116  2017-09-15 11:39  WeiGame\bin\net\Mas\game\background.png

     文件       1513  2017-09-18 10:06  WeiGame\bin\net\Mas\game\Bee.class

     文件       6405  2017-09-11 16:27  WeiGame\bin\net\Mas\game\bee.png

     文件       1953  2017-09-18 16:04  WeiGame\bin\net\Mas\game\Boss.class

     文件      40960  2017-09-15 10:42  WeiGame\bin\net\Mas\game\Boss.png

     文件       1396  2017-09-18 10:01  WeiGame\bin\net\Mas\game\Bullet.class

     文件        408  2017-09-11 16:27  WeiGame\bin\net\Mas\game\bullet.png

     文件       1661  2017-09-18 14:25  WeiGame\bin\net\Mas\game\bulletG.png

     文件        129  2017-09-11 16:29  WeiGame\bin\net\Mas\game\Enemy.class

     文件       1907  2017-09-18 09:59  WeiGame\bin\net\Mas\game\Flyobject.class

     文件      20220  2017-09-11 16:27  WeiGame\bin\net\Mas\game\gameover.png

     文件       2261  2017-09-18 14:27  WeiGame\bin\net\Mas\game\Gullet.class

     文件       2897  2017-09-18 17:40  WeiGame\bin\net\Mas\game\Hero.class

     文件       5909  2017-09-18 14:21  WeiGame\bin\net\Mas\game\hero0.png

     文件      44269  2017-09-11 16:27  WeiGame\bin\net\Mas\game\hero1.png

     文件      28136  2017-09-11 16:27  WeiGame\bin\net\Mas\game\hero2.PNG

     文件      20800  2017-09-11 16:27  WeiGame\bin\net\Mas\game\hero3.png

     文件      14902  2017-09-11 16:27  WeiGame\bin\net\Mas\game\pause.png

     文件       1838  2017-09-18 16:51  WeiGame\bin\net\Mas\game\ShootGame$1.class

     文件        916  2017-09-18 16:51  WeiGame\bin\net\Mas\game\ShootGame$2.class

     文件      12412  2017-09-18 16:51  WeiGame\bin\net\Mas\game\ShootGame.class

     文件      26937  2017-09-11 16:27  WeiGame\bin\net\Mas\game\start.png

............此处省略40个文件信息

评论

共有 条评论