chessarbiter/src/Piece.hpp

27 lines
872 B
C++
Raw Normal View History

2022-01-29 11:52:47 +01:00
#include <string>
#include <vector>
2022-01-30 13:17:45 +01:00
#define IS_FR_VALID(f, r) ((f) >= 'a' && (f) <= 'h' && (r) >= '1' && (r) <= '8')
#define ADD_MOVE(f, r) \
2022-01-29 11:52:47 +01:00
{ \
2022-01-30 13:17:45 +01:00
if (IS_FR_VALID(f, r)) { \
2022-01-29 11:52:47 +01:00
moves.push_back(std::string() + (char)((f)) + (char)((r))); \
} \
}
namespace chessarbiter {
/**
* Member are public for conveniance
*/
class Piece {
public:
2023-05-10 06:55:12 +02:00
char piece;
2022-01-29 11:52:47 +01:00
bool isBlack;
std::string coord;
2022-12-27 11:28:13 +01:00
Piece(char c, const std::string &coord);
2022-01-29 11:52:47 +01:00
/// @brief Get all possible moves according to the type of piece and its position
std::vector<std::string> GetMoves();
};
} // namespace chessarbiter