1 Star 0 Fork 0

oosad 004/TankWar_刘垚远

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Tank.java 9.16 KB
一键复制 编辑 原始数据 按行查看 历史
刘垚远 提交于 2023-04-15 11:19 . 提交坦克大战2.5
import java.awt.*;
import java.awt.event.*;
import java.util.Random;
import java.util.List;
public class Tank {
public static final int XSPEED = 5;
public static final int YSPEED = 5;
public static final int WIDTH = 30;
public static final int HEIGHT = 30;
TankClient tc = null;
private int x, y;
private int oldX, oldY;
private int step;
private boolean good;
private boolean live = true;
private static Random r = new Random();
Direction[] dirs = Direction.values();
int rn = r.nextInt(dirs.length);
private int life = 100;
private BloodBar bb= new BloodBar();
public int getLife() {
return life;
}
public void setLife(int life) {
this.life = life;
}
public boolean isLive() {
return live;
}
public boolean isGood() {
return good;
}
public void setLive(boolean live) {
this.live = live;
}
//是否按下了4个方向键
private boolean bL = false, bU = false, bR = false, bD = false;
//成员变量:方向
enum Direction {L, LU, U, RU, R, RD, D, LD, STOP}
private Direction dir = Direction.D;
private Direction ptDir = Direction.D;
public Tank(int x, int y) {
this.x = x;
this.y = y;
}
public Tank(int x, int y, TankClient tc){
this(x,y);
this.tc = tc;
}
public Tank(int x, int y, boolean good, TankClient tc) {
this(x, y);
this.good = good;
this.tc = tc;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public void draw(Graphics g) {
if (!live)
return;
if(good){
bb.draw(g);
}
Color c = g.getColor();
if (this.good) {
g.setColor(Color.WHITE);
} else {
g.setColor(Color.BLUE);
}
g.fillOval(x, y, WIDTH, HEIGHT);
g.setColor(c);
switch (ptDir) {
case L:
g.drawLine(x + Tank.WIDTH / 2, y + Tank.HEIGHT / 2, x, y + Tank.HEIGHT / 2);
break;
case LU:
g.drawLine(x + Tank.WIDTH / 2, y + Tank.HEIGHT / 2, x, y);
break;
case U:
g.drawLine(x + Tank.WIDTH / 2, y + Tank.HEIGHT / 2, x + Tank.WIDTH / 2, y);
break;
case RU:
g.drawLine(x + Tank.WIDTH / 2, y + Tank.HEIGHT / 2, x + Tank.WIDTH, y);
break;
case R:
g.drawLine(x + Tank.WIDTH / 2, y + Tank.HEIGHT / 2, x + Tank.WIDTH, y + Tank.HEIGHT / 2);
break;
case RD:
g.drawLine(x + Tank.WIDTH / 2, y + Tank.HEIGHT / 2, x + Tank.WIDTH, y + Tank.HEIGHT);
break;
case D:
g.drawLine(x + Tank.WIDTH / 2, y + Tank.HEIGHT / 2, x + Tank.WIDTH / 2, y + Tank.HEIGHT);
break;
case LD:
g.drawLine(x + Tank.WIDTH / 2, y + Tank.HEIGHT / 2, x, y + Tank.HEIGHT);
break;
case STOP:
break;
}
move();
}
void move() {
this.oldX = x;
this.oldY = y;
if (!good) {
// //Direction.values()将这个枚举类型转为数组
// Direction[] dirs = Direction.values();
if (step == 0) {
step = r.nextInt(12) + 3;
int rn = r.nextInt(dirs.length);
dir = dirs[rn];
}
step--;
if (r.nextInt(40) > 38)
this.fire();
}
switch (dir) {
case L:
x -= XSPEED;
break;
case LU:
x -= XSPEED;
y -= YSPEED;
break;
case U:
y -= YSPEED;
break;
case RU:
x += XSPEED;
y -= YSPEED;
break;
case R:
x += XSPEED;
break;
case RD:
x += XSPEED;
y += YSPEED;
break;
case D:
y += YSPEED;
break;
case LD:
x -= XSPEED;
y += YSPEED;
break;
case STOP:
break;
}
//将坦克的方向传给炮筒,使炮筒与坦克方向一致
if (this.dir != Direction.STOP) {
this.ptDir = this.dir;
if (x < 0) x = 0;
if (y < 25) y = 25;
if (x + Tank.WIDTH > TankClient.GAME_WIDTH) x = TankClient.GAME_WIDTH - Tank.WIDTH;
if (y + Tank.HEIGHT > TankClient.GAME_HEIGHT) y = TankClient.GAME_HEIGHT - Tank.HEIGHT;
}
}
public void KyePressed(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
case KeyEvent.VK_CONTROL:
fire();
break;
case KeyEvent.VK_LEFT:
bL = true;
break;
case KeyEvent.VK_UP:
bU = true;
break;
case KeyEvent.VK_RIGHT:
bR = true;
break;
case KeyEvent.VK_DOWN:
bD = true;
break;
}
locateDirection();
}
public void kyeReleased(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
//按下Ctrl时作出动作
//只有当键被抬起来时,这枚炮弹才被发出去
//避免了一直按下Ctrl而使得子弹过多的问题
case KeyEvent.VK_LEFT:
bL = false;
break;
case KeyEvent.VK_UP:
bU = false;
break;
case KeyEvent.VK_RIGHT:
bR = false;
break;
case KeyEvent.VK_DOWN:
bD = false;
break;
case KeyEvent.VK_A:
superFire();
break;
}
locateDirection();
}
void locateDirection() {
if (bL && !bU && !bR && !bD) dir = Direction.L;
else if (bL && bU && !bR && !bD) dir = Direction.LU;
else if (!bL && bU && !bR && !bD) dir = Direction.U;
else if (!bL && bU && bR && !bD) dir = Direction.RU;
else if (!bL && !bU && bR && !bD) dir = Direction.R;
else if (!bL && !bU && bR && bD) dir = Direction.RD;
else if (!bL && !bU && !bR && bD) dir = Direction.D;
else if (bL && !bU && !bR && bD) dir = Direction.LD;
else if (!bL && !bU && !bR && !bD) dir = Direction.STOP;
}
public Missile fire() {
if (!live) return null;
//保证子弹从Tank的中间出现
int x = this.x + Tank.WIDTH / 2 - Missile.WIDTH / 2;
int y = this.y + Tank.HEIGHT / 2 - Missile.WIDTH / 2;
//将Tank现在的位置和方向传递给子弹Missile
Missile m = new Missile(x, y, ptDir, tc, this.good);
//在这里将missile加入到容器里
tc.missiles.add(m);
return m;
}
public Missile fire(Direction dir) {
if(!live) return null;
//保证子弹从Tank的中间出现
int x = this.x + Tank.WIDTH / 2 - Missile.WIDTH / 2;
int y = this.y + Tank.HEIGHT / 2 - Missile.WIDTH / 2;
//将Tank现在的位置和方向传递给子弹
Missile m = new Missile(x, y, dir, tc,this.good);
//在这里将missile加入到容器里
tc.missiles.add(m);
return m;
}
public void superFire() {
Direction[] dirs = Direction.values();
for (int i = 0; i < 8; i++) {
fire(dirs[i]);
}
}
public Rectangle getRect() {
return new Rectangle(x, y, WIDTH, HEIGHT);
}
public boolean collidesWithWall(Wall w) {
if (this.getRect().intersects(w.getRect()) &&
this.live) {
this.stay();
return true;
}
return false;
}
private void stay() {
x = oldX;
y = oldY;
}
public boolean collidesWithTanks(List<Tank> tanks) {
for (int i = 0; i < tanks.size(); i++) {
Tank t = tanks.get(i);
if (this != t) {
if (this.live && t.isLive() &&
this.getRect().intersects(t.getRect())) {
t.stay();
this.stay();
return true;
}
}
}
return false;
}
private class BloodBar {
public void draw(Graphics g) {
Color c = g.getColor();
g.setColor(Color.ORANGE);
g.drawRect(x, y - 10, WIDTH, 10);
int w = WIDTH * life / 100;
g.fillRect(x, y - 10, w, 10);
g.setColor(c);
}
}
// Tank.java 中增加一个吃血条的方法:
public boolean eat(Blood b) {
if (this.live && b.isLive() &&
this.getRect().intersects(b.getRect())) {
this.life = 100;
b.setLive(false);
return true;
}
return false;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/oosad22-23-2/tank-war-liu-yaoyuan.git
git@gitee.com:oosad22-23-2/tank-war-liu-yaoyuan.git
oosad22-23-2
tank-war-liu-yaoyuan
TankWar_刘垚远
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385