资源简介
画面比较拙劣,基本实现泡泡堂游戏方式, 可多人联机
代码片段和文件信息
package entity;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.Serializable;
import java.util.*;
import javax.imageio.ImageIO;
public abstract class Entity implements Serializable{
public int zIndex;
public boolean alive = true;
public String imgSrc;
public void setAlive(boolean alive) {
this.alive = alive;
}
public static final int UNITSIZE = 50;
public int x;
public int y;
public int size=UNITSIZE;
public int getX(){
return x;
}
public int getY(){
return y;
}
public abstract void paintSelf(Graphics g);
public boolean isAlive(){
return alive;
}
public Rectangle getRect(){
return new Rectangle(x y sizesize);
}
public static BufferedImage getImg(String imgSrc){
try {
return ImageIO.read(new File(imgSrc));
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-01-08 18:39 bomb_man0.3\
文件 301 2014-01-03 15:46 bomb_man0.3\.classpath
文件 387 2014-01-06 17:33 bomb_man0.3\.project
目录 0 2014-01-08 18:39 bomb_man0.3\.settings\
文件 629 2014-01-03 15:46 bomb_man0.3\.settings\org.eclipse.jdt.core.prefs
目录 0 2014-01-08 18:41 bomb_man0.3\bin\
目录 0 2014-01-08 18:42 bomb_man0.3\bin\entity\
目录 0 2014-01-08 18:41 bomb_man0.3\bin\entity\bomb\
文件 2090 2014-01-08 18:41 bomb_man0.3\bin\entity\bomb\Bomb.class
文件 2068 2014-01-08 18:41 bomb_man0.3\bin\entity\bomb\Explode.class
文件 2096 2014-01-08 18:41 bomb_man0.3\bin\entity\bomb\ExplodeUnit.class
目录 0 2014-01-08 18:42 bomb_man0.3\bin\entity\buff\
文件 620 2014-01-08 18:42 bomb_man0.3\bin\entity\buff\BombBuff.class
文件 1246 2014-01-08 18:42 bomb_man0.3\bin\entity\buff\Buff.class
文件 630 2014-01-08 18:42 bomb_man0.3\bin\entity\buff\SpeedBuff.class
文件 648 2014-01-08 18:42 bomb_man0.3\bin\entity\buff\StrengthBuff.class
文件 1452 2014-01-08 18:41 bomb_man0.3\bin\entity\Entity.class
文件 373 2014-01-08 18:41 bomb_man0.3\bin\entity\GameLocation.class
文件 124 2014-01-08 18:44 bomb_man0.3\bin\entity\Moveble.class
目录 0 2014-01-08 18:41 bomb_man0.3\bin\entity\pla
文件 2496 2014-01-08 18:41 bomb_man0.3\bin\entity\pla
文件 2515 2014-01-08 18:41 bomb_man0.3\bin\entity\pla
文件 4465 2014-01-08 18:44 bomb_man0.3\bin\entity\pla
文件 3080 2014-01-08 18:41 bomb_man0.3\bin\entity\pla
文件 896 2014-01-08 18:42 bomb_man0.3\bin\entity\SceneManager$1.class
文件 3188 2014-01-08 18:42 bomb_man0.3\bin\entity\SceneManager.class
目录 0 2014-01-08 18:41 bomb_man0.3\bin\entity\wall\
文件 466 2014-01-08 18:41 bomb_man0.3\bin\entity\wall\HardWall.class
文件 1645 2014-01-08 19:02 bomb_man0.3\bin\entity\wall\MovebleHardWall.class
文件 407 2014-01-08 18:41 bomb_man0.3\bin\entity\wall\OrdinaryWall.class
文件 1291 2014-01-08 18:41 bomb_man0.3\bin\entity\wall\Wall.class
............此处省略88个文件信息
- 上一篇:java课程设计赛车项目
- 下一篇:java实现国密SM3算法
评论
共有 条评论