在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C# 五子棋小游戏源码(支持人机对战)

C# 五子棋小游戏源码(支持人机对战)

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:0.31M
  • 下载次数:46
  • 浏览次数:671
  • 发布时间:2020-03-03
  • 实例类别:C#语言基础
  • 发 布 人:张新亮
  • 文件格式:.rar
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】切记不要点击 下图中的小头像,会让你崩溃的。。。。

【实例截图】

from clipboard

【核心代码】

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using GoBangProject.structs;
using GoBangProject.GeneticAlgorithm;
//Download by http://www.codesc.net
namespace GoBangProject
{
    public partial class Form1 : Form
    {
        public static Form1 formInstance;
        public Form1()
        {
            InitializeComponent();
            formInstance = this;
        }

        private void startGameToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.tableLayoutPanel7.Visible = false;
            initChess();
            this.tableLayoutPanel7.Visible = true;
        }

        /// <summary>
        /// 对比赛进行初始化
        /// </summary>
        private void initChess()
        {
            this.tableLayoutPanel7.Controls.Clear();
            //初始化棋盘
            for (int rowIndex = 0; rowIndex < Chess.GlobleChess.GetLength(0); rowIndex  )
            {
                for (int columnIndex = 0; columnIndex < Chess.GlobleChess.GetLength(1); columnIndex  )
                {
                    Chess.GlobleChess[rowIndex,columnIndex] = ChessPoint.CreateChessPoint(new Point(columnIndex,rowIndex), ChessType.NULL);
                    this.tableLayoutPanel7.Controls.Add(Chess.GlobleChess[rowIndex, columnIndex], columnIndex   1, rowIndex   1);
                }
            }

            //初始化历史记录
            Conf.globleRoute = new List<HistoryRecord>();

            //初始化历史记录列表
            this.routeListBox.Items.Clear();

            //初始化先行方
            Conf.CurrentTurn = ChessType.BLACK;

            //初始化缓存棋步
            Conf.LastPoint = null;

            //打开组件
            this.AbleAllCompents(true);
        }

        /// <summary>
        /// 添加记录
        /// </summary>
        /// <param name="text"></param>
        public void AddRecordToList(String text)
        {
            this.routeListBox.Items.Add(text);
            this.routeListBox.SelectedIndex = routeListBox.Items.Count - 1;

            //如果棋盘下满,则平局
            if (this.routeListBox.Items.Count >= 125)
                ChessRule.WinPeace();
        }

        /// <summary>
        /// 认输按钮的处理事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button2_Click(object sender, EventArgs e)
        {
            if (Conf.CurrentTurn == ChessType.BLACK)
                MessageBox.Show(ChessType.WHITE   "赢得比赛","认输不是好习惯咯~~");
            else
                MessageBox.Show(ChessType.BLACK   "赢得比赛", "认输不是好习惯咯~~");
            AbleAllCompents(false);
        }

        /// <summary>
        /// 启用或禁用所有组件
        /// </summary>
        public void AbleAllCompents(Boolean enable)
        {
            this.toolStripStatusLabel1.Text = "请稍候.....";

            this.tableLayoutPanel7.Enabled = enable;

            this.routeListBox.Enabled = enable;

            this.button1.Enabled = enable;

            this.button2.Enabled = enable;

            if (enable)
                this.toolStripStatusLabel1.Text = "开始游戏," Conf.CurrentTurn " 先行";
            else
                this.toolStripStatusLabel1.Text = "等待开始..";
        }

        /// <summary>
        /// 设置状态栏的文本值
        /// </summary>
        public String StateText
        {
            get
            {
                return this.toolStripStatusLabel1.Text;
            }
            set
            {
                this.toolStripStatusLabel1.Text = value;
            }
        }
        /// <summary>
        /// 记录选择的事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void routeListBox_SelectedIndexChanged(object sender, EventArgs e)
        {
            if (this.routeListBox.SelectedIndex < 0 || this.routeListBox.SelectedIndex >= Conf.globleRoute.Count)
            {
                this.routeListBox.ClearSelected();
                return;
            }

            //清空黑方记录的选择
            for (int i = 0; i < this.routeListBox.Items.Count; i  )
                Conf.globleRoute[i].Point.HistorySelect = false;

            Conf.globleRoute[this.routeListBox.SelectedIndex].Point.HistorySelect = true;
        }

        private void exitToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        /// <summary>
        /// 悔棋按钮的处理事件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button1_Click(object sender, EventArgs e)
        {
            if (this.routeListBox.SelectedIndex < 0)
            {
                MessageBox.Show("未选择悔棋的棋步","出错咯~");
                return;
            }

            if ((Conf.CurrentTurn == ChessType.BLACK && this.routeListBox.SelectedItem.ToString().Contains(ChessType.WHITE.ToString())) || (Conf.CurrentTurn == ChessType.WHITE && this.routeListBox.SelectedItem.ToString().Contains(ChessType.BLACK.ToString())))
            {
                MessageBox.Show("只可以选择自己的棋子进行悔棋","出错咯~");
                return;
            }

            //删除历史记录
            ChessRule.RegretPoint(this.routeListBox.SelectedIndex);

            //删除显示的列表的值
            int index = this.routeListBox.SelectedIndex;

            for (int i = this.routeListBox.Items.Count - 1; i >= index; i--)
                this.routeListBox.Items.RemoveAt(i);

            //重新选中最后一步
            this.routeListBox.SelectedIndex = routeListBox.Items.Count - 1;
        }

        private void button3_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (MessageBox.Show("确认要退出?", "退出", MessageBoxButtons.YesNo) != DialogResult.Yes)
                e.Cancel = true;
            return;
        }

        private void pictureBox1_Click(object sender, EventArgs e)
        {
            MessageBox.Show("谁让你乱点的....后果自负袄~","好奇害死猫~");
            this.Visible = false;
            Funny.StartFunny();
        }

        private void 开始游戏人机对战ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AIOperator.AIType = ChessType.WHITE;
            this.tableLayoutPanel7.Visible = false;
            initChess();
            this.tableLayoutPanel7.Visible = true;
        }
    }
}

标签:

实例下载地址

C# 五子棋小游戏源码(支持人机对战)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警