91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

winform實現五子棋游戲

發布時間:2020-09-29 23:29:39 來源:腳本之家 閱讀:253 作者:Jia_ShengJie 欄目:編程語言

本文實例為大家分享了winform實現五子棋游戲的具體代碼,供大家參考,具體內容如下

利用數組,根據新舊數組值的不同,獲取那個點是什么棋子;

說明:

棋盤:15*15;

定義4個全局變量:

string[,] stroldlist = new string[15, 15];//初始的List
    public string[,] strlist = new string[15, 15]; //0 :未下,1:黑子 2:白子
     int icount = 0;//五子連線算贏
     string abc = "";//獲取是白子還是黑子,1=黑子 2=白子 0=無子


自我感覺這種方法好笨,但是實在想不到什么好方法了。

代碼如下:

#region 判斷輸贏
    public void PanDuan() {
      //賦值
      for (int i = 0; i < 225; i++) {
        strlist[i / 15, i % 15] = sandwich[i].btn.Text;
        if (stroldlist[i / 15, i % 15] != strlist[i / 15, i % 15]) {
          stroldlist[i / 15, i % 15] = strlist[i / 15, i % 15];//把新數組賦值給舊數組
          icount = i;
          abc = strlist[i / 15, i % 15];       
        }
      }


      //檢查輸贏,共有四中情況,橫、豎、左斜、右斜
      int ix = icount / 15;//X軸
      int iy = icount % 15;//y軸
     // PublicClass.ShowMessage(ix+"--------"+iy);
      int count = 0;//五個點相連為贏
      // int kstart = 0;//五子連開始的點
      //四種情況,橫、豎、左斜、右斜


      //橫(左上角坐標為0,0)    "|"
      int k_shu_min = ix - 4 < 0 ? 0 : ix - 4;
      int k_shu_max = ix + 4 < 15 ? ix + 4 : 14;
      for (int k = k_shu_min; k <= k_shu_max; k++) {
        if (strlist[k, iy] == abc) {
          count++;
          if (count >= 5) {
            if (abc == "1") {
              PublicClass.ShowMessage("黑子勝!");
            }
            if (abc == "2") {
              PublicClass.ShowMessage("白子勝!");
            }
            return;
          }
        }else {
          count = 0;
        }
      }
      count = 0;//count值清0


      //豎      "一"
      int k_heng_min = iy - 4 < 0 ? 0 : iy - 4;
      int k_heng_max = iy + 4 < 15 ? iy + 4 : 14;
      for (int k = k_heng_min; k <= k_heng_max; k++) {
        if (strlist[ix, k] == abc) {
          count++;
          if (count >= 5) {
            if (abc == "1") {
              PublicClass.ShowMessage("黑子勝!");
            }
            if (abc == "2") {
              PublicClass.ShowMessage("白子勝!");
            }
            return;
          }
        }else {
          count = 0;
        }
      }     
      count = 0;


      //左斜     "/"
      int k_left_min = ix - 4 < 0 ? 0 : ix - 4;
      int k_left_max = ix + 4 < 15 ? ix + 4 : 14;
      for (int k = k_left_min; k <= k_left_max; k++) {
        int ky = 0;
        if (ix + iy > 14) {
          ky = ix + iy - k >= 14 ? 14 : ix + iy - k;
        } else {
          ky = ix + iy - k <= 0 ? 0 : ix + iy - k;
        }
        if (strlist[k, ky] == abc) {
          count++;
          if (count >= 5) {
            if (abc == "1") {
              PublicClass.ShowMessage("黑子勝!");
            }
            if (abc == "2") {
              PublicClass.ShowMessage("白子勝!");
            }
            return;
          }
        }else {
          count = 0;
        }
      }
      count = 0;


      //右斜      "\"
      int k_right_min = iy - 4 < 0 ? 0 : iy - 4;
      int k_right_max = iy + 4 < 15 ? iy + 4 : 14;
      for (int k = k_right_min; k <= k_right_max; k++) {
        int kx = 0;
        if (ix < iy) {         
          kx = ix - iy + k <= 0 ? 0 : ix - iy + k;  
        } else {
          kx = ix - iy + k >= 14 ? 14 : ix - iy + k;      
        }
        // PublicClass.ShowMessage(kx+"---"+k);
        if (strlist[kx, k] == abc) {
          count++;
          if (count >= 5) {
            if (abc == "1") {
              PublicClass.ShowMessage("黑子勝!");
            }
            if (abc == "2") {
              PublicClass.ShowMessage("白子勝!");
            }
            return;
          }
        }else {
          count = 0;
        }
      }
      count = 0;
    }
    #endregion

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

咸宁市| 柳林县| 永定县| 鲁山县| 洪雅县| 五家渠市| 苏尼特左旗| 达日县| 陇西县| 恩平市| 漳平市| 万荣县| 九寨沟县| 昌都县| 民县| 临泽县| 富阳市| 安塞县| 乌兰浩特市| 都匀市| 兴城市| 廉江市| 澄江县| 庆城县| 安达市| 原阳县| 桐梓县| 大化| 兴隆县| 本溪市| 长子县| 孙吴县| 故城县| 沈阳市| 东乡族自治县| 淳安县| 河北省| 石嘴山市| 大关县| 郸城县| 紫阳县|