坦克大战系列三:从零编写【坦克大战】

上文中, 我们学习到了 坦克大战系列二:从零编写【坦克大战】

接下来我们学习让坦克移动起来
在这里插入图片描述

1.防止敌人坦克重叠运动

  1. 八种情况
    在这里插入图片描述
    防止敌人坦克重叠代码
public boolean isTouchEnemyTank() {
        //判断当前敌人坦克(this)方向
        switch (this.direct) {
            case 0:////让当前敌人坦克和其它所有的敌人坦克比较
                for (int i = 0; i < enemyTanks.size(); i++) {
                    //从Vector 集合中拿到一个坦克
                    EnemyTank enemyTank = enemyTanks.get(i);
                    //不和自己比较
                    if (enemyTank != this) {
                        //如果敌人坦克是 上/下 方向
                        //思路分析
                        // 1.如果敌人坦克是上/下 x的范围 [enemyTank.x, enemyTank.x + 40]
                        //                    y的范围 [enemyTank.y, enemyTank.y + 60]
                        if (enemyTank.direct == 0 || enemyTank.direct == 2) {
                            // 2.当前坦克 左上角的坐标 [this.x, this.y]
                            if (this.x >= enemyTank.x
                                    && this.x <= enemyTank.x + 40
                                    && this.y >= enemyTank.y
                                    && this.y <= enemyTank.y + 60) {
                                return true;
                            }
                            // 3.当前坦克 右上角的坐标 [this.x + 40, this.y]
                            if (this.x + 40 >= enemyTank.x
                                    && this.x + 40 <= enemyTank.x + 40
                                    && this.y >= enemyTank.y
                                    && this.y <= enemyTank.y + 60) {
                                return true;
                            }
                        }
                        //如果敌人坦克是 右/左 方向
                        //思路分析
                        // 1.如果敌人坦克是右/左 x的范围 [enemyTank.x, enemyTank.x + 60]
                        //                    y的范围 [enemyTank.y, enemyTank.y + 40]
                        if (enemyTank.direct == 1 || enemyTank.direct == 3) {
                            // 2.当前坦克 左上角的坐标 [this.x, this.y]
                            if (this.x >= enemyTank.x
                                    && this.x <= enemyTank.x + 60
                                    && this.y >= enemyTank.y
                                    && this.y <= enemyTank.y + 40) {
                                return true;
                            }
                            // 3.当前坦克 右上角的坐标 [this.x + 40, this.y]
                            if (this.x + 40 >= enemyTank.x
                                    && this.x + 40 <= enemyTank.x + 60
                                    && this.y >= enemyTank.y
                                    && this.y <= enemyTank.y + 40) {
                                return true;
                            }
                        }
                    }
                }
                break;
            case 1:////让当前敌人坦克和其它所有的敌人坦克比较
                for (int i = 0; i < enemyTanks.size(); i++) {
                    //从Vector 集合中拿到一个坦克
                    EnemyTank enemyTank = enemyTanks.get(i);
                    //不和自己比较
                    if (enemyTank != this) {
                        //如果敌人坦克是 上/下 方向
                        //思路分析
                        // 1.如果敌人坦克是上/下 x的范围 [enemyTank.x, enemyTank.x + 40]
                        //                    y的范围 [enemyTank.y, enemyTank.y + 60]
                        if (enemyTank.direct == 0 || enemyTank.direct == 2) {
                            // 2.当前坦克 右上角的坐标 [this.x + 60, this.y]
                            if (this.x + 60 >= enemyTank.x
                                    && this.x + 60 <= enemyTank.x + 40
                                    && this.y >= enemyTank.y
                                    && this.y <= enemyTank.y + 60) {
                                return true;
                            }
                            // 3.当前坦克 右下角的坐标 [this.x + 60, this.y + 40]
                            if (this.x + 60 >= enemyTank.x
                                    && this.x + 60 <= enemyTank.x + 40
                                    && this.y + 40 >= enemyTank.y
                                    && this.y + 40 <= enemyTank.y + 60) {
                                return true;
                            }
                        }
                        //如果敌人坦克是 右/左 方向
                        //思路分析
                        // 1.如果敌人坦克是右/左 x的范围 [enemyTank.x, enemyTank.x + 60]
                        //                    y的范围 [enemyTank.y, enemyTank.y + 40]
                        if (enemyTank.direct == 1 || enemyTank.direct == 3) {
                            // 2.当前坦克 右上角的坐标 [this.x + 60, this.y]
                            if (this.x + 60 >= enemyTank.x
                                    && this.x + 60 <= enemyTank.x + 60
                                    && this.y >= enemyTank.y
                                    && this.y <= enemyTank.y + 40) {
                                return true;
                            }
                            // 3.当前坦克 右下角的坐标 [this.x + 60, this.y + 40]
                            if (this.x + 60 >= enemyTank.x
                                    && this.x + 60 <= enemyTank.x + 60
                                    && this.y + 40 >= enemyTank.y
                                    && this.y + 40 <= enemyTank.y + 40) {
                                return true;
                            }
                        }
                    }
                }
                break;
            case 2:////让当前敌人坦克和其它所有的敌人坦克比较
                for (int i = 0; i < enemyTanks.size(); i++) {
                    //从Vector 集合中拿到一个坦克
                    EnemyTank enemyTank = enemyTanks.get(i);
                    //不和自己比较
                    if (enemyTank != this) {
                        //如果敌人坦克是 上/下 方向
                        //思路分析
                        // 1.如果敌人坦克是上/下 x的范围 [enemyTank.x, enemyTank.x + 40]
                        //                    y的范围 [enemyTank.y, enemyTank.y + 60]
                        if (enemyTank.direct == 0 || enemyTank.direct == 2) {
                            // 2.当前坦克 左下角的坐标 [this.x, this.y + 60]
                            if (this.x >= enemyTank.x
                                    && this.x <= enemyTank.x + 40
                                    && this.y + 60 >= enemyTank.y
                                    && this.y + 60 <= enemyTank.y + 60) {
                                return true;
                            }
                            // 3.当前坦克 右下角的坐标 [this.x + 40, this.y + 60]
                            if (this.x + 40 >= enemyTank.x
                                    && this.x + 40 <= enemyTank.x + 40
                                    && this.y + 60 >= enemyTank.y
                                    && this.y + 60 <= enemyTank.y + 60) {
                                return true;
                            }
                        }
                        //如果敌人坦克是 右/左 方向
                        //思路分析
                        // 1.如果敌人坦克是右/左 x的范围 [enemyTank.x, enemyTank.x + 60]
                        //                    y的范围 [enemyTank.y, enemyTank.y + 40]
                        if (enemyTank.direct == 1 || enemyTank.direct == 3) {
                            // 2.当前坦克 左下角的坐标 [this.x, this.y + 60]
                            if (this.x >= enemyTank.x
                                    && this.x <= enemyTank.x + 60
                                    && this.y + 60 >= enemyTank.y
                                    && this.y + 60 <= enemyTank.y + 40) {
                                return true;
                            }
                            // 3.当前坦克 右下角的坐标 [this.x + 40, this.y + 60]
                            if (this.x + 40 >= enemyTank.x
                                    && this.x + 40 <= enemyTank.x + 60
                                    && this.y + 60 >= enemyTank.y
                                    && this.y + 60 <= enemyTank.y + 40) {
                                return true;
                            }
                        }
                    }
                }
                break;
            case 3:////让当前敌人坦克和其它所有的敌人坦克比较
                for (int i = 0; i < enemyTanks.size(); i++) {
                    //从Vector 集合中拿到一个坦克
                    EnemyTank enemyTank = enemyTanks.get(i);
                    //不和自己比较
                    if (enemyTank != this) {
                        //如果敌人坦克是 上/下 方向
                        //思路分析
                        // 1.如果敌人坦克是上/下 x的范围 [enemyTank.x, enemyTank.x + 40]
                        //                    y的范围 [enemyTank.y, enemyTank.y + 60]
                        if (enemyTank.direct == 0 || enemyTank.direct == 2) {
                            // 2.当前坦克 左上角的坐标 [this.x, this.y]
                            if (this.x >= enemyTank.x
                                    && this.x <= enemyTank.x + 40
                                    && this.y >= enemyTank.y
                                    && this.y <= enemyTank.y + 60) {
                                return true;
                            }
                            // 3.当前坦克 左下角的坐标 [this.x, this.y + 40]
                            if (this.x >= enemyTank.x
                                    && this.x <= enemyTank.x + 40
                                    && this.y + 40 >= enemyTank.y
                                    && this.y + 40 <= enemyTank.y + 60) {
                                return true;
                            }
                        }
                        //如果敌人坦克是 右/左 方向
                        //思路分析
                        // 1.如果敌人坦克是右/左 x的范围 [enemyTank.x, enemyTank.x + 60]
                        //                    y的范围 [enemyTank.y, enemyTank.y + 40]
                        if (enemyTank.direct == 1 || enemyTank.direct == 3) {
                            // 2.当前坦克 左上角的坐标 [this.x, this.y]
                            if (this.x >= enemyTank.x
                                    && this.x <= enemyTank.x + 60
                                    && this.y >= enemyTank.y
                                    && this.y <= enemyTank.y + 40) {
                                return true;
                            }
                            // 3.当前坦克 左下角的坐标 [this.x, this.y + 40]
                            if (this.x >= enemyTank.x
                                    && this.x <= enemyTank.x + 60
                                    && this.y + 40 >= enemyTank.y
                                    && this.y + 40 <= enemyTank.y + 40) {
                                return true;
                            }
                        }
                    }
                }
                break;
        }
        return false;
    }

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
这辆敌方坦克和任何其它敌方坦克都不发生碰撞时且不超边界时才可以移动
在这里插入图片描述

2.记录玩家成绩

在这里插入图片描述
绘制版面信息
在这里插入图片描述

paint()方法中如果没有super.paint(g),那么绘制的敌方坦克数会出现重叠情况
在这里插入图片描述
调用方法
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在Recorder类中定义一个方法
在这里插入图片描述
write(int c) 指的是一个字符,并不能存入一个int类型的数字
在这里插入图片描述

给JFrame添加监听事件
在这里插入图片描述
在这里插入图片描述

3. 记录敌方坦克坐标和方向

在这里插入图片描述
定义Vector,指向 MyPanel对象的 敌人坦克Vector
在这里插入图片描述
让Recorder中的enemyTanks也指向同一个地址
在这里插入图片描述
修改keepRecorder()方法
在这里插入图片描述

4. 继续上一把游戏

public static Vector<Node> getNodesAndEnemyTankSum() {
        try {
            bufferedReader = new BufferedReader(new FileReader(recordFile));
            allEnemyTankNum = new Integer(bufferedReader.readLine());
            String line = "";
            while ((line = bufferedReader.readLine()) != null) {
                String[] xyd = line.split(" ");
                Node node = new Node(new Integer(xyd[0]), new Integer(xyd[1]),
                        new Integer(xyd[2]));
                nodes.add(node);
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (bufferedReader != null) {
                    bufferedReader.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
            return nodes;
        }
    }

在主类的构造器里,程序还未启动时,加入选项
在这里插入图片描述
在MyPanel类中定义保存Node节点的集合
在这里插入图片描述

将MyPanel构造器变为有参构造器,加入switch分支,1表示新游戏
在这里插入图片描述
2表示继续上一局
在这里插入图片描述

5. 播放音乐

将AePlayWave类资源放入包中,将音乐资源放入src目录下,在MyPanel构造器的最后一行调用即可;
在这里插入图片描述

  • 修正文件存储位置
    在这里插入图片描述

5.1 处理文件相关异常

在这里插入图片描述
或者
在这里插入图片描述

至此,坦克大战已全部完成

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

~ 小团子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值