0

我正在学习创建一个java游戏,对java还是很陌生。现在我想创建一个战舰游戏。但现在我被困在这里。现在,当我将船随机放置为电脑板时,有时它会与之前的船重叠,因此在接下来的游戏中变得不平衡。其次,在我得到玩家的输入后,我如何将输入值放入板中。这是我的代码:

import javax.swing.JOptionPane;
import java.util.Random;
import java.util.Scanner;

public class Battleship
{
    public static void main (String args[]){
        String map [][][]=new String [10][10][2];
        int row =0,col=0;

        //initPlayerMap(map);
        //printMap(map,true);// true to printout the map
        placeShips(map); // place the shipe at computer map
        initMap(map,"~", true);
        initMap(map,"#",false);
        placeShips(map); // place the shipe at computer map
        printMap(map,true);
        System.out.println("Now enter your coordinate of the boom");
        row = getInput("Please enter row: ");
        col = getInput("Please enter col: ");
        printMap(map,false); // computer map
        hitShip(row,col);

    }

    private static void hitShip (int row, int col){
        if (map[startFrom++][colOrRow][1]== map[row][col][1]){
            System.out.println("abc");
        }
        else
        {
            System.out.println("darn!");
        }
    }
    private static void initMap(String map[][][] , String initChar, boolean player){
        //the 0 in 3rd dimension is representing player map and 1 for computer
        int mapNo= (player?0:1);
        for (int i = 0 ; i < 10; i ++)
            for (int j=0; j<10; j++)
                map [i][j][mapNo]= initChar;
    }

    private static void printMap(String map[][][], boolean player){
        int whichMap=0;
        if (!player)
            whichMap=1;

        System.out.println(" 0\t1\t2\t3\t4\t5\t6\t7\t8\t9 ");
        for (int i = 0 ; i < 10; i ++){
            System.out.print(i+" ");
            for (int j=0; j<10; j++){
                System.out.print(map [i][j][whichMap]+ "\t");
            }
            System.out.print("\n");
        }
    }// end of printMap method

    public static int getInput(String message){
        Scanner sc = new Scanner (System.in);
        System.out.print(message);
        return sc.nextInt();
    }

    private static void placeShips(String[][][] grid)
    {
        char[] shipType = { 'B' , 'C' , 'F' , 'M' };
        int[] shipSize = { 5 , 4 , 3 , 2 };
        int[] shipNums = { 1 , 2 , 4 , 4 };

        for (int x = 0 ; x < shipType.length ; x++)
            for (int y = 1 ; y <= shipNums[x] ; y++)
            {

                String shipName = shipType[x]+""+y;
                placeShip(grid,shipName,shipSize[x]);
            }
    }

    private static void placeShip(String[][][] map, String shipName, int size){
        int direction = (int)(Math.random()*2);// 0 or 1
        int colOrRow = (int)(Math.random()*map.length); // pick
        int startFrom =(int)(Math.random()*(map.length-size)); // which cell?


        // placing the ship
        for(int i=0; i < size; i++){
            // weather is vertical or horizontal
            // vertical
            if (direction == 0 ){
            map[startFrom++][colOrRow][1] = shipName;

            }
            else {
                map[colOrRow][startFrom++][1] = shipName;
            }
        }
    }
}
4

3 回答 3

4

首先,您没有正确建模(IMO)

我会更多地使用 java.awt.Rectangle。我会先把板子做成一个矩形,然后把每艘船也做成一个矩形。因为 Rectangle (实际上来自 Shape )有方法 contains(...) 你应该能够快速测试你的矩形是否重叠。

至于在板上标记镜头,也许您的船需要被定义为不仅仅是矩形 - 为它们提供已击中点的功能。您可以使用 java.awt.Point 进行命中/未命中

于 2012-05-18T15:27:14.577 回答
0

我想你在这里问了两个问题,我会同时回答它们。

  1. 要将一艘船放在场地上并确保它们不重叠,请检查您尝试将新船放入的任何方格中是否有船。制作一个二维布尔数组,在其中保存哪个方格是船。
  2. 对于用户输入,您尝试了什么,您遇到了哪些问题?没有任何东西可以坚持,我不能给你任何东西来工作。我建议让用户给出两个坐标:船的起点和终点。处理该数据。
于 2012-05-18T15:24:19.793 回答
0

您似乎没有使用数据结构来跟踪地图中“已填充”的位置。这样您就可以比较或“验证”地图中未填写的位置。

于 2012-05-18T15:26:40.443 回答