Exemplo n.º 1
0
        private void SetUpBoard()
        {
            ChessSquare chessSquare;
            bool        grey = false;

            for (int column = 0; column < 8; column++)
            {
                for (int row = 0; row < 8; row++)
                {
                    chessSquare = new ChessSquare(grey);
                    chessSquare.SetValue(Grid.ColumnProperty, column);
                    chessSquare.SetValue(Grid.RowProperty, row);


                    chessSquare.SetPicture(board[column, row]?.BitmapImage);

                    ChessBoard.Children.Add(chessSquare);
                    grey = !grey;
                }
                grey = !grey;
            }
        }
Exemplo n.º 2
0
        private void SetUpBoard()
        {
            ChessSquare chessSquare;

            bool grey = false;

            for (int column = 0; column < 8; column++)
            {
                for (int row = 0; row < 8; row++)
                {
                    chessSquare = new ChessSquare(grey);
                    chessSquare.SetValue(Grid.ColumnProperty, column);
                    chessSquare.SetValue(Grid.RowProperty, row);
                    chessSquare.MouseDown += ChessBoard_MouseDown;
                    chessSquare.SetPicture(board.GetSpace(column, row));

                    chessSquareBoard[row, column] = chessSquare;

                    ChessBoard.Children.Add(chessSquare);
                    grey = !grey;
                }
                grey = !grey;
            }
        }
Exemplo n.º 3
0
        private void ChessBoard_MouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
        {
            ChessSquare chessSquare = sender as ChessSquare;

            if (firstClick)
            {
                if ((board.CurrentTurn == board[(int)chessSquare.GetValue(Grid.ColumnProperty), (int)chessSquare.GetValue(Grid.RowProperty)]?.Color))
                {
                    selectedSquare = chessSquare;
                    int.TryParse(chessSquare.GetValue(Grid.ColumnProperty).ToString(), out int locX);
                    int.TryParse(chessSquare.GetValue(Grid.RowProperty).ToString(), out int locY);
                    pieceX = locX;
                    pieceY = locY;
                    chessSquare.SelectPiece();

                    firstClick = false;

                    HighLightMoves(pieceX, pieceY);
                }
            }
            else
            {
                int.TryParse(chessSquare.GetValue(Grid.ColumnProperty).ToString(), out int toX);
                int.TryParse(chessSquare.GetValue(Grid.RowProperty).ToString(), out int toY);
                if (board.Move(pieceX, pieceY, toX, toY))
                {
                    chessSquareBoard[kingY, kingX].IsChecked = false;
                }
                selectedSquare?.DeselectPiece();
                firstClick = true;

                ResetBoard();
            }

            if (board.Check(PieceColor.D))
            {
                KingInCheck(PieceColor.D);
            }
            if (board.Check(PieceColor.L))
            {
                KingInCheck(PieceColor.L);
            }


            if (board.CheckMate(PieceColor.D))
            {
                playAgain = MessageBox.Show("Light Wins!\nDo you want to play again?", "Winner", MessageBoxButton.YesNo);
            }

            else if (board.CheckMate(PieceColor.L))
            {
                playAgain = MessageBox.Show("Dark Wins!\nDo you want to play again?", "Winner", MessageBoxButton.YesNo);
            }

            if (playAgain == MessageBoxResult.Yes)
            {
                new MainWindow().Show();
                this.Close();
            }
            else if (playAgain == MessageBoxResult.No)
            {
                this.Close();
            }
        }