加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Tank.java 19.33 KB
一键复制 编辑 原始数据 按行查看 历史
86155 提交于 2023-04-17 11:32 . Tank2.5
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
import java.awt.*;
import java.awt.event.*;
import java.util.Random;
public class Tank import java.awt.*;
import java.awt.event.*;
import java.util.Random;
import java.awt.*;
import java.awt.event.*;
import java.util.Random;
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;
private static Random r = new Random();
//保留TankClient的引用,更方便地使用其中的成员变量
TankClient tc = null;
public int getLife() {
return life;
}
public void setLife(int life) {
this.life = life;
}
Direction[] dirs = Direction.values();
//将这个枚举类型转为数据组
int rn = r.nextInt(dirs.length);
private int x, y;
public static final int XSPEED = 5;
public static final int YSPEED = 5;
public static final int WIDTH = 30;
public static final int HEIGHT = 30;
private static Random r = new Random();
//保留TankClient的引用,更方便地使用其中的成员变量
TankClient tc = null;
public int getLife() {
return life;
}
public void setLife(int life) {
this.life = life;
}
Direction[] dirs = Direction.values();
//将这个枚举类型转为数据组
int rn = r.nextInt(dirs.length);
private int x, y;
private int oldX, oldY;
private int step;
private int life=100;
//如果dirs的长度为9,则r.nextInt产生0到8的随机的整数
private boolean good;
private BloodBar bb=new BloodBar();
private boolean live = true;
//是否按下了4个方向键
private boolean bL = false,
bU = false,
bR = false,
bD = false;
private Direction dir = Direction.STOP;
//ptDir代表炮筒的方向,默认方向向下
private Direction ptDir = Direction.D;
public Tank(int x, int y, boolean good) {
this.x = x;
this.y = y;
this.good = good;
private int oldX, oldY;
private int step;
private int life=100;
//如果dirs的长度为9,则r.nextInt产生0到8的随机的整数
private boolean good;
private BloodBar bb=new BloodBar();
private boolean live = true;
//是否按下了4个方向键
private boolean bL = false,
bU = false,
bR = false,
bD = false;
private Direction dir = Direction.STOP;
//ptDir代表炮筒的方向,默认方向向下
private Direction ptDir = Direction.D;
public Tank(int x, int y, boolean good) {
this.x = x;
this.y = y;
this.good = good;
}
public Tank(int x, int y, boolean good, TankClient tc) {
//调用其它的构造方法
this(x, y, good);
this.tc = tc;
}
public boolean collidesWithWall(Wall w) {
if (this.getRect().intersects(w.getRect()) &&
this.live) {
this.stay();
return true;
}
return false;
}
public boolean collidesWithTanks(java.util.List<Tank> tanks) {
for (int i = 0; i < tanks.size(); i++) {
Tank t = tanks.get(i);
}
public Tank(int x, int y, boolean good, TankClient tc) {
//调用其它的构造方法
this(x, y, good);
this.tc = tc;
}
public boolean collidesWithWall(Wall w) {
if (this.getRect().intersects(w.getRect()) &&
this.live) {
this.stay();
return true;
}
return false;
}
public boolean collidesWithTanks(java.util.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 void stay() {
x = oldX;
y = oldY;
}
public boolean isLive() {
return live;
if (this != t) {
if (this.live && t.isLive() &&
this.getRect().intersects(t.getRect())) {
t.stay();
this.stay();
return true;
}
}
}
return false;
}
private void stay() {
x = oldX;
y = oldY;
}
public boolean isLive() {
return live;
}
public void setLive(boolean b) {
this.live = b;
}
;
public Rectangle getRect() {
return new Rectangle(x, y, WIDTH, HEIGHT);
}
public int getX() {
return x;
}
public int getY() {
return y;
}
}
public void setLive(boolean b) {
this.live = b;
}
;
public Rectangle getRect() {
return new Rectangle(x, y, WIDTH, HEIGHT);
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public boolean isGood() {
return good;
}
public void draw(Graphics g) {
if (!live) return;
if(good){
bb.draw(g);
}
Color c = g.getColor();
//以不同的颜色来显示不同的坦克
if (good) {
g.setColor(Color.RED);
} else {
g.setColor(Color.BLUE);
}
g.fillOval(x, y, WIDTH, HEIGHT);
g.setColor(c);
//判断出炮筒的方向,并模拟方向来画出炮筒
public boolean isGood() {
return good;
}
public void draw(Graphics g) {
if (!live) return;
if(good){
bb.draw(g);
}
Color c = g.getColor();
//以不同的颜色来显示不同的坦克
if (good) {
g.setColor(Color.RED);
} 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;
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(dir);
}
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;
int rn = r.nextInt(dirs.length);
dir = dirs[rn];
}
step--;
if (r.nextInt(40) > 38) this.fire(dir);
}
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;
}
//将坦克的方向传给炮筒,使炮筒与坦克方向一致
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 KeyPressed(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
//按下Ctrl时作出的动作
case KeyEvent.VK_LEFT:
bL = true;
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 KeyPressed(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
//按下Ctrl时作出的动作
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 keyReleased(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
//按下Ctrl时作出动作
//只有当键被抬起来时,这枚炮弹才被发出去
//避免了一直按下Ctrl而使得子弹过多的问题
case KeyEvent.VK_CONTROL:
case KeyEvent.VK_UP:
bU = true;
break;
case KeyEvent.VK_RIGHT:
bR = true;
break;
case KeyEvent.VK_DOWN:
bD = true;
break;
}
locateDirection();
}
public void keyReleased(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
//按下Ctrl时作出动作
//只有当键被抬起来时,这枚炮弹才被发出去
//避免了一直按下Ctrl而使得子弹过多的问题
case KeyEvent.VK_CONTROL:
case KeyEvent.VK_UP:
bU = true;
break;
case KeyEvent.VK_RIGHT:
bR = true;
break;
case KeyEvent.VK_DOWN:
bD = true;
break;
}
locateDirection();
}
public void keyReleased(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
//按下Ctrl时作出动作
//只有当键被抬起来时,这枚炮弹才被发出去
//避免了一直按下Ctrl而使得子弹过多的问题
case KeyEvent.VK_CONTROL:
case KeyEvent.VK_UP:
bU = true;
break;
case KeyEvent.VK_RIGHT:
bR = true;
break;
case KeyEvent.VK_DOWN:
bD = true;
break;
}
locateDirection();
}
public void keyReleased(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
//按下Ctrl时作出动作
//只有当键被抬起来时,这枚炮弹才被发出去
//避免了一直按下Ctrl而使得子弹过多的问题
case KeyEvent.VK_CONTROL:
case KeyEvent.VK_UP:
bU = true;
break;
case KeyEvent.VK_RIGHT:
bR = true;
break;
case KeyEvent.VK_DOWN:
bD = true;
break;
}
locateDirection();
}
public void keyReleased(KeyEvent e) {
int key = e.getKeyCode();
switch (key) {
//按下Ctrl时作出动作
//只有当键被抬起来时,这枚炮弹才被发出去
//避免了一直按下Ctrl而使得子弹过多的问题
case KeyEvent.VK_CONTROL:
fire(dir);
break;
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();
}
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;
}
private void superFire() {
Direction[] dirs = Direction.values();
for (int i = 0; i < 8; i++) {
fire(dirs[i]);
}
}
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;
}
private void superFire() {
Direction[] dirs = Direction.values();
for (int i = 0; i < 8; i++) {
fire(dirs[i]);
}
}
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;
}
private class BloodBar{
public void draw(Graphics g){
Color c=g.getColor();
g.setColor(Color.RED);
g.drawRect(x,y-10,WIDTH,10);
int w=WIDTH*life/100;
g.fillRect(x,y-10,w,10);
g.setColor(c);
}
}
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;
}
//成员变量:方向
enum Direction {L, LU, U, RU, R, RD, D, LD, STOP}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化