2010-05-29 137 views
0

我正在尝试做一个else语句来告诉用户游戏以draw(tic tac toe game)结束。我知道它在哪里起作用,如果有一个赢家,它会显示另一个表单,通过if语句宣布获胜者,但我无法弄清楚它的抽签部分。如果else语句需要帮助

using System; 
using System.Collections.Generic; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 
using System.Drawing; 
namespace MyGame 
{ 
    public class Result1 
    { 


     static private int[,] Winners = new int[,] 
        { 
         // main gameplay Ex: if x is on 0,1,2 x is the winner 
         {0,1,2}, 
         {3,4,5}, 
         {6,7,8}, 
         {0,3,6}, 
         {1,4,7}, 
         {2,5,8}, 
         {0,4,8}, 
         {2,4,6}, 
        }; 


     static public bool CheckWinner(Button[] myControls) 
     { 
      //bolean statement to check for the winner 
      bool gameOver = false; 
      for (int i = 0; i < 8; i++) 
      { 
       int a = Winners[i, 0]; 
       int b = Winners[i, 1]; 
       int c = Winners[i, 2]; 

       Button b1 = myControls[a], b2 = myControls[b], b3 = myControls[c]; 
       if (b1.Text == "" || b2.Text == "" || b3.Text == "") 
        continue; 

       if (b1.Text == b2.Text && b2.Text == b3.Text) 
       { 

        b1.BackColor = b2.BackColor = b3.BackColor = Color.LightCoral; 
        b1.Font = b2.Font = b3.Font = new System.Drawing.Font("Microsoft Sans Serif", 32F, System.Drawing.FontStyle.Italic & System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0))); 
        gameOver = true; 
        xWinnerForm xWinnerForm = new xWinnerForm(); 
        xWinnerForm.ShowDialog(); //only works with show not showDialog method gets overloaded (b1.Text + " is the Winner"); to get around this I added and image showing the last player 


       } 
       //else statement here for draw what code would I put in? 



      } 


        return gameOver; 

     } 



    } 

} 
+0

尝试重新格式化您的问题,请... – Betamoo 2010-05-29 14:49:13

回答

2

当所有空格填满并且没有赢家时,游戏以平局结束。

您的支票不应该在for循环中检查每个获胜线,但应该单独检查,之后for循环。此时,请检查所有控件的“Text”是否非空白,如果是,则绘制一个图形(如果有人赢得了之前的代码,则会发现该图形)。

+0

你可以给我一个例子使用我的代码 – 2010-05-29 17:39:47