C# Winform实现五子棋游戏(代完善)

实现了基本的玩法。

BoardController.cs

cs 复制代码
using System;

namespace GomokuGame
{
    public class BoardController
    {
        private static BoardController instance;
        private readonly int[,] board;
        private const int boardSize = 15;

        private BoardController()
        {
            board = new int[boardSize, boardSize];
        }

        public static BoardController Instance
        {
            get
            {
                if (instance == null)
                {
                    instance = new BoardController();
                }
                return instance;
            }
        }

        public int[,] GetBoard() => board;

        public bool PlacePiece(int x, int y, int player)
        {
            if (board[x, y] == 0)
            {
                board[x, y] = player;
                return true;
            }
            return false;
        }

        public bool CheckWin(int player)
        {
            for (int i = 0; i < boardSize; i++)
            {
                for (int j = 0; j < boardSize; j++)
                {
                    if (board[i, j] == player)
                    {
                        if (CheckDirection(i, j, 1, 0, player) || // Horizontal
                            CheckDirection(i, j, 0, 1, player) || // Vertical
                            CheckDirection(i, j, 1, 1, player) || // Diagonal \
                            CheckDirection(i, j, 1, -1, player))  // Diagonal /
                        {
                            return true;
                        }
                    }
                }
            }
            return false;
        }

        private bool CheckDirection(int startX, int startY, int dx, int dy, int player)
        {
            int count = 0;
            for (int i = 0; i < 5; i++)
            {
                int x = startX + i * dx;
                int y = startY + i * dy;
                if (x >= 0 && x < boardSize && y >= 0 && y < boardSize && board[x, y] == player)
                {
                    count++;
                }
                else
                {
                    break;
                }
            }
            return count == 5;
        }
    }
}

BoardView.cs

cs 复制代码
using System;
using System.Drawing;
using System.Windows.Forms;

namespace GomokuGame
{
    public class BoardView : Panel
    {
        private const int cellSize = 30;
        private const int boardSize = 15;
        private int[,] board;
        private int currentPlayer;

        public BoardView()
        {
            this.DoubleBuffered = true;
            this.Size = new Size(boardSize * cellSize, boardSize * cellSize);
            board = BoardController.Instance.GetBoard();
            currentPlayer = 1;
            this.Paint += BoardView_Paint;
            this.MouseClick += BoardView_MouseClick;
        }

        private void BoardView_Paint(object sender, PaintEventArgs e)
        {
            Graphics g = e.Graphics;

            for (int i = 0; i < boardSize; i++)
            {
                for (int j = 0; j < boardSize; j++)
                {
                    g.DrawRectangle(Pens.Black, i * cellSize, j * cellSize, cellSize, cellSize);

                    if (board[i, j] == 1)
                    {
                        g.FillEllipse(Brushes.Black, i * cellSize, j * cellSize, cellSize, cellSize);
                    }
                    else if (board[i, j] == 2)
                    {
                        g.FillEllipse(Brushes.Black, i * cellSize, j * cellSize, cellSize, cellSize);
                        g.FillEllipse(Brushes.White, i * cellSize + 2, j * cellSize + 2, cellSize - 4, cellSize - 4);
                    }
                }
            }
        }

        private void BoardView_MouseClick(object sender, MouseEventArgs e)
        {
            int x = e.X / cellSize;
            int y = e.Y / cellSize;

            if (BoardController.Instance.PlacePiece(x, y, currentPlayer))
            {
                this.Invalidate();
                if (BoardController.Instance.CheckWin(currentPlayer))
                {
                    MessageBox.Show($"Player {currentPlayer} wins!");
                }
                // 交换玩家
                currentPlayer = currentPlayer == 1 ? 2 : 1;
            }
        }
    }
}

Form1.cs

cs 复制代码
using System;
using System.Windows.Forms;

namespace GomokuGame
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            InitializeGame();
        }

        private void InitializeGame()
        {
            BoardView boardView = new BoardView();
            boardView.Dock = DockStyle.Fill;
            this.Controls.Add(boardView);

            IGameStrategy strategy = new PvPStrategy();
            strategy.Execute();
        }
    }
}

Form1.Designer.cs

cs 复制代码
using System;
using System.Windows.Forms;

namespace GomokuGame
{
    partial class Form1 :  Form
    {
        private System.ComponentModel.IContainer components = null;

        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        private void InitializeComponent()
        {
            this.SuspendLayout();
            // 
            // Form1
            // 
            this.ClientSize = new System.Drawing.Size(800, 450);
            this.Name = "Form1";
            this.ResumeLayout(false);

        }
    }
}

GameStrategy.cs

cs 复制代码
using System;

public interface IGameStrategy
{
    void Execute();
}

public class PvPStrategy : IGameStrategy
{
    public void Execute()
    {
        Console.WriteLine("Player vs Player mode.");
    }
}

public class PvAIStrategy : IGameStrategy
{
    public void Execute()
    {
        Console.WriteLine("Player vs AI mode.");
    }
}

PieceFactory.cs

cs 复制代码
using System;

public abstract class Piece
{
    public abstract void Place(int x, int y);
}

public class BlackPiece : Piece
{
    public override void Place(int x, int y)
    {
        Console.WriteLine($"Placed black piece at ({x}, {y})");
    }
}

public class WhitePiece : Piece
{
    public override void Place(int x, int y)
    {
        Console.WriteLine($"Placed white piece at ({x}, {y})");
    }
}

public class PieceFactory
{
    public static Piece CreatePiece(int player)
    {
        return player == 1 ? new BlackPiece() : (Piece)new WhitePiece();
    }
}

PlacePieceCommand.cs

cs 复制代码
using GomokuGame;
public interface ICommand
{
    void Execute();
}

public class PlacePieceCommand : ICommand
{
    private readonly int x;
    private readonly int y;
    private readonly int player;

    public PlacePieceCommand(int x, int y, int player)
    {
        this.x = x;
        this.y = y;
        this.player = player;
    }

    public void Execute()
    {
        BoardController.Instance.PlacePiece(x, y, player);
        PieceFactory.CreatePiece(player).Place(x, y);
    }
}

Program.cs

cs 复制代码
using System;
using System.Windows.Forms;

namespace GomokuGame
{
    static class Program
    {
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1());
        }
    }
}

完整代码下载:https://download.csdn.net/download/exlink2012/89317787

相关推荐
蓝黑202011 分钟前
IntelliJ IDEA常用快捷键
java·ide·intellij-idea
Ysjt | 深13 分钟前
C++多线程编程入门教程(优质版)
java·开发语言·jvm·c++
shuangrenlong25 分钟前
slice介绍slice查看器
java·ubuntu
牧竹子25 分钟前
对原jar包解压后修改原class文件后重新打包为jar
java·jar
数据小爬虫@36 分钟前
如何利用java爬虫获得淘宝商品评论
java·开发语言·爬虫
喜欢猪猪37 分钟前
面试题---深入源码理解MQ长轮询优化机制
java
草莓base1 小时前
【手写一个spring】spring源码的简单实现--bean对象的创建
java·spring·rpc
drebander2 小时前
使用 Java Stream 优雅实现List 转化为Map<key,Map<key,value>>
java·python·list
乌啼霜满天2492 小时前
Spring 与 Spring MVC 与 Spring Boot三者之间的区别与联系
java·spring boot·spring·mvc
tangliang_cn2 小时前
java入门 自定义springboot starter
java·开发语言·spring boot