• 大小: 285KB
    文件类型: .rar
    金币: 2
    下载: 2 次
    发布日期: 2021-06-17
  • 语言: Java
  • 标签: 飞机大战  

资源简介

达内java编程训练项目-飞机大战

资源截图

代码片段和文件信息

package com.tarena.shoot;
import java.util.Random;

/** 敌机 :是飞行物 也是敌人  **/
public class Airplane extends Flyingobject implements Enemy{
private int speed = 2; //走步的步数

//构造方法
public Airplane(){
image = ShootGame.airplane; //图片
width = image.getWidth(); //宽
height = image.getHeight(); //高
Random rand = new Random(); //随机数对象
x = rand.nextInt(ShootGame.WIDTH-this.width);//x:0到(窗口宽-敌机宽)之内的随机数
y = -this.height; //y:负的敌机的高
}

//重写getScore()
public int getScore(){
return 5;
}
//重写step()
public void step(){
y+=speed; //y+(向下)
}

//重写outOfBounds
public boolean outOfBounds(){
return this.y>=ShootGame.HEIGHT;
}
}

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

     文件        301  2017-07-05 11:16  飞机大战(终极版)\.classpath

     文件        383  2017-07-05 11:16  飞机大战(终极版)\.project

     文件        598  2017-07-05 11:16  飞机大战(终极版)\.settings\org.eclipse.jdt.core.prefs

     文件       1064  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\Airplane.class

     文件       3575  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\airplane.png

     文件        215  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\Award.class

     文件      26709  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\background.png

     文件       1201  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\Bee.class

     文件       6405  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\bee.png

     文件        868  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\Bullet.class

     文件        408  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\bullet.png

     文件        133  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\Enemy.class

     文件        892  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\Flyingobject.class

     文件      20220  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\gameover.png

     文件       2345  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\Hero.class

     文件      12280  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\hero0.png

     文件      16243  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\hero1.png

     文件      14902  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\pause.png

     文件       1865  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\ShootGame$1.class

     文件        910  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\ShootGame$2.class

     文件       8598  2017-07-25 10:43  飞机大战(终极版)\bin\com\tarena\shoot\ShootGame.class

     文件      43132  2014-11-14 21:29  飞机大战(终极版)\bin\com\tarena\shoot\start.png

     文件        738  2017-07-07 13:03  飞机大战(终极版)\src\com\tarena\shoot\Airplane.java

     文件       3575  2014-11-14 21:29  飞机大战(终极版)\src\com\tarena\shoot\airplane.png

     文件        208  2017-07-05 14:39  飞机大战(终极版)\src\com\tarena\shoot\Award.java

     文件      26709  2014-11-14 21:29  飞机大战(终极版)\src\com\tarena\shoot\background.png

     文件       1075  2017-07-07 13:03  飞机大战(终极版)\src\com\tarena\shoot\Bee.java

     文件       6405  2014-11-14 21:29  飞机大战(终极版)\src\com\tarena\shoot\bee.png

     文件        578  2017-07-07 13:06  飞机大战(终极版)\src\com\tarena\shoot\Bullet.java

     文件        408  2014-11-14 21:29  飞机大战(终极版)\src\com\tarena\shoot\bullet.png

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

评论

共有 条评论