资源简介
代码片段和文件信息
import java.awt.Graphics;
import java.awt.Image;
public class GameBox {
boolean rightPoint;
Image im;
int xy;
public GameBox(int _xint _y){
im=Tools.createImageBuyName(“box.png“);
x=_x;
y=_y;
}
public void render(Graphics gboolean rightPoint){
if(rightPoint==true){
rightPoint=false;
g.drawImage(Tools.createImageBuyName(“box2.png“)xynull);
}else{
g.drawImage(Tools.createImageBuyName(“box.png“)xynull);
}
}
public boolean moveBox(int dxint dyGameMap mapGameBoxManager bmGamePointManager pm){
int x_=x+dx;// x_ is New x
int y_=y+dy; // y_ is New y
if(x_/50<0 ||y_/50<0 ||x_/50>=map.mapData[0].length || y_/50>=map.mapData.length){
return false;
}
if(map.mapData[x_/50][y_/50]==0){
return false;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-12-01 22:35 推箱子\
文件 301 2018-04-26 16:57 推箱子\.classpath
文件 385 2018-04-26 16:57 推箱子\.project
目录 0 2018-12-01 22:35 推箱子\bin\
文件 6895 2018-04-26 16:57 推箱子\bin\box.png
文件 6601 2018-04-26 16:57 推箱子\bin\box2.png
文件 1407 2018-04-26 16:57 推箱子\bin\GameBox.class
文件 1227 2018-04-26 16:57 推箱子\bin\GameBoxManager.class
文件 1114 2018-04-26 16:57 推箱子\bin\Gamefr
文件 1924 2018-04-26 16:57 推箱子\bin\GameMap.class
文件 1663 2018-04-26 16:57 推箱子\bin\GamePanel.class
文件 2389 2018-04-26 16:57 推箱子\bin\GamePla
文件 759 2018-04-26 16:57 推箱子\bin\GamePoint.class
文件 1054 2018-04-26 16:57 推箱子\bin\GamePointManager.class
文件 3877 2018-04-26 16:57 推箱子\bin\map0.png
文件 4093 2018-04-26 16:57 推箱子\bin\map1.png
文件 2634 2018-04-26 16:57 推箱子\bin\map2.png
文件 8303 2018-04-26 16:57 推箱子\bin\pla
文件 3142 2018-04-26 16:57 推箱子\bin\point.png
文件 413 2018-04-26 16:57 推箱子\bin\Run.class
文件 548 2018-04-26 16:57 推箱子\bin\Tools.class
文件 6895 2018-04-26 16:57 推箱子\box.png
文件 6601 2018-04-26 16:57 推箱子\box2.png
文件 3877 2018-04-26 16:57 推箱子\map0.png
文件 4093 2018-04-26 16:57 推箱子\map1.png
文件 2634 2018-04-26 16:57 推箱子\map2.png
文件 8303 2018-04-26 16:57 推箱子\pla
文件 3142 2018-04-26 16:57 推箱子\point.png
目录 0 2018-12-01 22:35 推箱子\src\
文件 6895 2018-04-26 16:57 推箱子\src\box.png
文件 6601 2018-04-26 16:57 推箱子\src\box2.png
............此处省略15个文件信息
- 上一篇:潜艇大战游戏(java swing源码)
- 下一篇:java 推箱子源码
评论
共有 条评论