为了账号安全,请及时绑定邮箱和手机立即绑定

如何将鼠标位置(以像素为单位)转换为网格上的行和列?

如何将鼠标位置(以像素为单位)转换为网格上的行和列?

慕无忌1623718 2022-09-22 10:21:59
我基本上是在制作一个战舰猜谜游戏,你必须通过点击鼠标到达一艘船的位置。当正确猜出飞船的位置时,它会从数组中删除该飞船单元格,当每个单元格都猜对时,游戏就结束了。我现在挣扎的是将飞船单元格保留在画布内将鼠标位置(以像素为单位)转换为网格上的行和列如果猜测正确,请将猜测添加到命中数组,如果错过,则将其添加到未命中数组中。当做出猜测时,除了给单元格着色外,还要在单元格上打印“命中!”或“错过!”当所有电池都被击中时沉没船
查看完整描述

1 回答

?
梦里花落0921

TA贡献1772条经验 获得超5个赞

在代码中,您混合了行和列。x 坐标从左到右,这是列。y 轴从顶部到底部,对应于行。


不要将 、 和 存储在数组中。但是使用二维数组来存储飞船的位置和鼠标点击的位置:columnrowhitmiss


boolean [][] ship;

boolean [][] click;

将飞船单元格保留在画布内

如果方向是水平的,则船的x起始位置必须小于:NUM_COLS - shipLength


randomX = (int)random(NUM_COLS - shipLength);

randomY = (int)random(NUM_ROWS);

如果方向是水平的,则船的 y 起始位置必须小于 :NUM_ROWS - shipLength


randomX = (int)random(NUM_COLS);

randomY = (int)random(NUM_ROWS - shipLength);

呼入而不是 :randomShipsetupdraw


void setup() {

    size(600, 500);

    randomShip();

    println(store);

}


void draw() {

    // randomShip(); <---- delete

    drawCells (row, column, shipLength, (255) );

}

生成船舶的随机位置和大小randomShip;


void randomShip () {


    ship = new boolean[NUM_COLS][NUM_ROWS];

    click = new boolean[NUM_COLS][NUM_ROWS];


    shipLength = (int)random (3, 8);


    int store = (int)random(vert, horz);  

    if (store >= 0) {


        int randomX = (int)random(NUM_COLS - shipLength);

        int randomY = (int)random(NUM_ROWS);


        for (int i = 0; i < shipLength; i++ ) {

            ship[randomX + i][randomY] = true;

        }

    } else  {


        int randomX = (int)random(NUM_COLS);

        int randomY = (int)random(NUM_ROWS - shipLength); 


        for (int i = 0; i < shipLength; i++ ) {

            ship[randomX][randomY+1] = true;

        }

    }

    println(shipLength);

}

将鼠标位置(以像素为单位)转换为网格上的行和列

如果猜测正确,请将猜测添加到命中数组,如果错过,则将其添加到未命中数组中。

单击的单元格可以通过除以鼠标坐标和mouseXmouseYCELLSIZE


int cell_x = mouseX / CELLSIZE; 

int cell_y = mouseY / CELLSIZE; 

存储标记点击的单元格,并计算命中和未命中:mouseClicked


void mouseClicked () {


    int cell_x = mouseX / CELLSIZE; 

    int cell_y = mouseY / CELLSIZE;


    if (!click[cell_x][cell_y]) {

        click[cell_x][cell_y] = true;


        if ( ship[cell_x][cell_y] ) {

            hitCount ++;

        } else {

            missCount ++;

        }

    }

}

当做出猜测时,除了给单元格着色外,还要在单元格上打印“命中!”或“错过!”

评估绘图池中的船舶位置 () 和单击的位置 ()。绘制依赖于 2 个嵌套循环中的状态的单元格和文本:ship[][]click[][]


void drawCells(int colour) {


    for (int i = 0; i < NUM_COLS; i++) {

        for (int j = 0; j < NUM_ROWS; j++) {


            float x = i * CELLSIZE;

            float y = j * CELLSIZE;


            if (ship[i][j]) {

                fill (colour);

                rect(x, y, CELLSIZE, CELLSIZE);

            }


            if (click[i][j]) {

                fill(255, 0, 0);

                textSize(15);

                text(ship[i][j] ? "hit" : "miss", x+10, y+30); 

            }

        }

    }

}

当所有电池都被击中时沉没船

在 中处理游戏的结束:draw


例如


void draw() {


    drawCells(255);


    if (hitCount == shipLength ) {


        // [...]


    }

}

完整代码列表:


final int CELLSIZE = 50;

final int NUM_ROWS = 10;

final int NUM_COLS = 12;


int horz = (int)random(50);

int vert = (int)random(-50);


int store;

int shipLength;


boolean [][] ship;

boolean [][] click;


int hitCount = 0;

int missCount = 0;


void setup() {

    size(600, 500);

    randomShip();

    println(store);

}


void draw() {


    drawCells(255);


    if (hitCount == shipLength ) {


        // [...]


    }

}


void drawCells(int colour) {


    for (int i = 0; i < NUM_COLS; i++) {

        for (int j = 0; j < NUM_ROWS; j++) {


            float x = i * CELLSIZE;

            float y = j * CELLSIZE;


            if (ship[i][j]) {

                fill (colour);

                rect(x, y, CELLSIZE, CELLSIZE);

            }


            if (click[i][j]) {

                fill(255, 0, 0);

                textSize(15);

                text(ship[i][j] ? "hit" : "miss", x+10, y+30); 

            }

        }

    }

}


void randomShip () {


    ship = new boolean[NUM_COLS][NUM_ROWS];

    click = new boolean[NUM_COLS][NUM_ROWS];

    hitCount = 0;

    missCount = 0;


    shipLength = (int)random (3, 8);


    int store = (int)random(vert, horz);  

    if (store >= 0) {


        int randomX = (int)random(NUM_COLS - shipLength);

        int randomY = (int)random(NUM_ROWS);


        for (int i = 0; i < shipLength; i++ ) {

            ship[randomX + i][randomY] = true;

        }

    } else  {


        int randomX = (int)random(NUM_COLS);

        int randomY = (int)random(NUM_ROWS - shipLength); 


        for (int i = 0; i < shipLength; i++ ) {

            ship[randomX][randomY+1] = true;

        }

    }

    println(shipLength);

}


void mouseClicked () {


    int cell_x = mouseX / CELLSIZE; 

    int cell_y = mouseY / CELLSIZE;


    if (!click[cell_x][cell_y]) {

        click[cell_x][cell_y] = true;


        if ( ship[cell_x][cell_y] ) {

            hitCount ++;

        } else {

            missCount ++;

        }

    }

}


查看完整回答
反对 回复 2022-09-22
  • 1 回答
  • 0 关注
  • 126 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信