From 418b9ff72f3010d7f3f07cb28a7e12808650d701 Mon Sep 17 00:00:00 2001 From: zedarider Date: Wed, 9 Nov 2016 01:43:52 +0000 Subject: added movement to pawn --- include/chess_ai.hpp | 72 ++++++++++++++++++++++++++++++++-------------------- 1 file changed, 45 insertions(+), 27 deletions(-) (limited to 'include/chess_ai.hpp') diff --git a/include/chess_ai.hpp b/include/chess_ai.hpp index efde215..aa0a9c0 100644 --- a/include/chess_ai.hpp +++ b/include/chess_ai.hpp @@ -9,17 +9,29 @@ namespace chess_ai { + // Describes the different types of chess pieces there are on the board enum piece_type : unsigned; + + // Describes the colour of the pieces enum piece_colour : unsigned; + + // just describes if the board is full or empty enum board_state : unsigned; + + // defines the errors that can happen when moving a piece + enum movement_flag : unsigned; + + // The chess board that will be played on class chess_board; + + // Any chess piece in the game class chess_piece; + // typedefs for iterators to access elements easier typedef std::vector>:: iterator vector_iterator; typedef std::vector::iterator square_iterator; - // Describes the different types of chess pieces there are on the board enum piece_type : unsigned { // A pawn can only move forward twice on the first move, otherwise only // once. It only take pieces that are on the diagonals in front of it, @@ -51,7 +63,6 @@ iterator vector_iterator; empty }; - // Describes the colour of the pieces enum piece_colour : unsigned { // Looking at the board white will be at the bottom white, @@ -61,7 +72,6 @@ iterator vector_iterator; none }; - // just describes if the board is full or empty enum board_state : unsigned { // The starting position of the board with all pieces in the right // position @@ -74,7 +84,24 @@ iterator vector_iterator; clear }; - // The chess board that will be played on + enum movement_flag : unsigned { + // when king is in check there are limited possibilities + move_error_KingInCheckAfterMove, + // when there is a friendly piece in the way + move_error_FriendlyPieceOnDestination, + // when there is an enemy piece blocking the way + move_error_EnemyPieceOnDestination, + // illegal move for chose piece + move_error_IllegalMove, + + // when the move is successful + move_Success, + // when a move leads to a check + move_Check, + // when a move leads to a checkmate + move_Checkmate, + }; + class chess_board { public: @@ -98,24 +125,26 @@ iterator vector_iterator; void remove_piece(unsigned x, unsigned y); // move a piece according to the chess rules - void move_piece(chess_piece piece); - - // move a piece from coordinates - void move_piece(unsigned x, unsigned y); - void move_piece(unsigned orig_x, unsigned orig_y, unsigned dest_x, - unsigned dest_y); - void move_piece(chess_piece piece, unsigned x, unsigned y); + movement_flag move_piece(chess_piece piece); + movement_flag move_piece(unsigned x, unsigned y); + movement_flag move_piece(unsigned orig_x, unsigned orig_y, unsigned dest_x, + unsigned dest_y); + movement_flag move_piece(unsigned orig_x, unsigned orig_y, unsigned dest_x, + unsigned dest_y, chess_piece& taken_piece); + movement_flag move_piece(chess_piece piece, unsigned x, unsigned y); // iterate through the list and return the pointer to change square_iterator& iterate_board(square_iterator& it, unsigned x, unsigned y); - - - protected: - - void init_board_vector(); private: + + // initialises vector + void init_board_vector(); + + // moves the pawn + movement_flag move_pawn(square_iterator it, square_iterator new_it, + chess_piece& taken_piece); // The size of the chess board is a constant and hence defined by a // preprocessed define statement. @@ -125,7 +154,6 @@ iterator vector_iterator; std::vector> grid; }; - // Any chess piece in the game class chess_piece { friend class chess_board; public: @@ -156,19 +184,9 @@ iterator vector_iterator; // set the different values void set(piece_type type, piece_colour colour, unsigned x, unsigned y); - // overloading operators - - // so that we can make two copies of a point - chess_piece& operator==(const chess_piece& piece); - - // overload ++ operator for pawns - chess_piece& operator++(); - chess_piece operator++(int); - // return a printable version of the square std::string str(); - protected: private: // Type of the chess piece, eg. bishop or queen -- cgit