Android TicTacToe - 随机游戏结局

时间:2014-07-06 20:45:33

标签: java android tic-tac-toe

所以今天我为了学习目的而制作TicTacToe,一切看起来都很好,直到我尝试自己玩 - 在某些情况下游戏结束之前应该。让我们说这是我的tictactoe网格:

1|2|3
4|5|6
7|8|9

所以例如当我把X放在2并且O游戏突然得出结论玩家2(O用户)赢了。

这是我的功能,可以找出是否有人赢了。我可能很愚蠢地做这样的计算,但我真的不知道有什么其他方法可以找到有人获胜并决定谁是赢家。如果包括获胜者在内的所有可能结果的陈述,只需简单8。

(plr1,plr2 - 值为“X”和“O”的字符串,text1,2,3是X和O的文本视图,它们的排列方式与上面的网格相同)

if(text1.getText().toString() == text2.getText().toString() && text2.getText().toString() == text3.getText().toString()) {
        if(text1.getText().toString() == plr1) {
            status.setText("Player 1 won!");
            gameRunning = false;
        }
        else if(text1.getText().toString() == plr2){
            status.setText("Player 2 won!");
            gameRunning = false;
        }
    }
    else if(text4.getText().toString() == text5.getText().toString() && text5.getText().toString() == text6.getText().toString()) {
        if(text4.getText().toString() == plr1) {
            status.setText("Player 1 won!");
            gameRunning = false;
        }
        else if(text1.getText().toString() == plr2){
            status.setText("Player 2 won!");
            gameRunning = false;
        }
    }
    else if(text7.getText().toString() == text8.getText().toString() && text8.getText().toString() == text9.getText().toString()) {
        if(text1.getText().toString() == plr1) {
            status.setText("Player 1 won!");
            gameRunning = false;
        }
        else if(text1.getText().toString() == plr2){
            status.setText("Player 2 won!");
            gameRunning = false;
        }
    }
    else if(text1.getText().toString() == text4.getText().toString() && text4.getText().toString() == text7.getText().toString()) {
        if(text1.getText().toString() == plr1) {
            status.setText("Player 1 won!");
            gameRunning = false;
        }
        else if(text1.getText().toString() == plr2){
            status.setText("Player 2 won!");
            gameRunning = false;
        }
    }
    else if(text2.getText().toString() == text5.getText().toString() && text5.getText().toString() == text8.getText().toString()) {
        if(text1.getText().toString() == plr1) {
            status.setText("Player 1 won!");
            gameRunning = false;
        }
        else if(text1.getText().toString() == plr2){
            status.setText("Player 2 won!");
            gameRunning = false;
        }
    }
    else if(text3.getText().toString() == text6.getText().toString() && text6.getText().toString() == text9.getText().toString()) {
        if(text1.getText().toString() == plr1) {
            status.setText("Player 1 won!");
            gameRunning = false;
        }
        else if(text1.getText().toString() == plr2){
            status.setText("Player 2 won!");
            gameRunning = false;
        }
    }
    else if(text1.getText().toString() == text5.getText().toString() && text5.getText().toString() == text9.getText().toString()) {
        if(text7.getText().toString() == plr1) {
            status.setText("Player 1 won!");
            gameRunning = false;
        }
        else if(text7.getText().toString() == plr2){
            status.setText("Player 2 won!");
            gameRunning = false;
        }
    }
    else if(text3.getText().toString() == text5.getText().toString() && text5.getText().toString() == text7.getText().toString()) {
        if(text1.getText().toString() == plr1) {
            status.setText("Player 1 won!");
            gameRunning = false;
        }
        else if(text1.getText().toString() == plr2){
            status.setText("Player 2 won!");
            gameRunning = false;
        }
    }

问题在逻辑上应该是if语句,但对我来说它们似乎没问题,也许我错过了什么,因为目前正在这里午夜。

1 个答案:

答案 0 :(得分:6)

比较从TextView获得的字符串是一个性能瓶颈(即使只做了几次),更一般地说,不是好的做法。如您所示,您的TicTacToe网格可以放入3x3阵列,可以定义为:byte[][] grid = new byte[3][3];byte就足够了,因为网格方格只能有3种状态:空(例如0),X(1)和O(2)。

检查获胜者是否更容易,更清洁,更快:

  1. 检查横向胜利

    for (int i = 0; i < 3; i++) {
        if ((grid[0][i] == grid[1][i]) && (grid[1][i] == grid[2][i])) {
            ...
        }
    }
    
  2. 检查垂直获胜(每列......)

  3. 检查2对角线胜利(对于固定的3×3板,它是可循环的,但不值得)
  4. 在每次获胜的情况下,只需从获胜线中获取任何值以确定谁赢了。