• 大小: 9.42MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-19
  • 语言: Java
  • 标签: java  飞机大战  源码  

资源简介

飞机大战/雷霆大战 全部Java源代码,可运行。 飞机大战代码挥泪大甩卖,学Java面向对象必备小游戏。 加入了子弹奖励模式,和最终Boss,画面优美,可玩性强。可学习,可直接作为游戏玩

资源截图

代码片段和文件信息

package com.tarena.shoot;

import java.util.Random;

public class Airplane extends Flyingobject implements Enemy{

private int speed = 1;
public Airplane(){

image = ShootGame.airplane;        
width = image.getWidth();
height = image.getHeight();
Random send = new Random();
x = send.nextInt(ShootGame.WIDTH-image.getWidth());
y = -(this.height+10);

}
@Override
public int getScore() {
return 5;
}
@Override
public void step() {
// TODO Auto-generated method stub
y += speed;
}
@Override
public boolean outOfBounds() {

return this.y>=ShootGame.HIGHT+10;
}
@Override
public boolean accident(int xint y) {
// TODO Auto-generated method stub
if (x>=this.x&&x<=this.x+this.width&&y<=this.y&&y>=this.y-this.height) {
return true;
}else {
return false;
}
}





}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-08-19 14:06  Myshoot\
     文件         301  2017-03-19 18:51  Myshoot\.classpath
     文件         383  2017-03-19 18:51  Myshoot\.project
     目录           0  2017-08-19 14:06  Myshoot\.settings\
     文件         598  2017-03-19 18:51  Myshoot\.settings\org.eclipse.jdt.core.prefs
     目录           0  2017-08-19 14:06  Myshoot\bgm\
     文件     1089818  2011-12-13 09:43  Myshoot\bgm\bg.ogg
     文件        8313  2011-12-13 09:43  Myshoot\bgm\bgm_fire.ogg
     文件        9261  2011-12-13 09:43  Myshoot\bgm\bgm_net.ogg
     文件       29282  2011-12-19 14:58  Myshoot\bgm\coinanimate.ogg
     文件       24435  2011-12-22 16:05  Myshoot\bgm\coinsnone.ogg
     文件        9867  2011-12-15 18:35  Myshoot\bgm\firechange.ogg
     文件     1449318  2011-12-13 09:43  Myshoot\bgm\fishbg2.mp3
     文件       35280  2011-12-19 17:36  Myshoot\bgm\highpoints.ogg
     文件      115357  2011-12-19 17:48  Myshoot\bgm\hundredpoints.mp3
     目录           0  2017-09-19 20:33  Myshoot\bin\
     目录           0  2017-09-19 20:33  Myshoot\bin\com\
     目录           0  2017-09-19 20:33  Myshoot\bin\com\tarena\
     目录           0  2019-03-05 22:54  Myshoot\bin\com\tarena\shoot\
     文件        1228  2017-09-19 20:33  Myshoot\bin\com\tarena\shoot\Airplane.class
     文件        3575  2017-03-20 21:34  Myshoot\bin\com\tarena\shoot\airplane.png
     文件         215  2017-09-19 20:33  Myshoot\bin\com\tarena\shoot\Award.class
     文件      607464  2017-03-19 20:17  Myshoot\bin\com\tarena\shoot\background.png
     文件       26709  2017-03-20 21:34  Myshoot\bin\com\tarena\shoot\background1.png
     文件        1497  2017-09-19 20:33  Myshoot\bin\com\tarena\shoot\Bee.class
     文件        6405  2017-03-20 21:34  Myshoot\bin\com\tarena\shoot\bee.png
     文件        1842  2017-09-19 20:33  Myshoot\bin\com\tarena\shoot\Boss.class
     文件       55456  2017-04-16 11:20  Myshoot\bin\com\tarena\shoot\boss.png
     文件         965  2017-09-19 20:33  Myshoot\bin\com\tarena\shoot\Bullet.class
     文件         408  2017-03-20 21:34  Myshoot\bin\com\tarena\shoot\bullet.png
     文件         133  2017-09-19 20:33  Myshoot\bin\com\tarena\shoot\Enemy.class
............此处省略44个文件信息

评论

共有 条评论