mirror of
https://gitlab.com/manzerbredes/chess-move-interface.git
synced 2025-04-05 17:46:30 +02:00
Debug an cleaning source code
This commit is contained in:
parent
03ce4126cf
commit
14ac3bba33
3 changed files with 6 additions and 6 deletions
|
@ -6,11 +6,11 @@ HalfMove::HalfMove()
|
||||||
: number(1), isBlack(false), NAG(0), parent(nullptr), mainline(nullptr) {}
|
: number(1), isBlack(false), NAG(0), parent(nullptr), mainline(nullptr) {}
|
||||||
|
|
||||||
HalfMove::HalfMove(const std::string &SAN)
|
HalfMove::HalfMove(const std::string &SAN)
|
||||||
: number(1), isBlack(false), parent(nullptr), mainline(nullptr) {}
|
: SAN(SAN), number(1), isBlack(false), parent(nullptr), mainline(nullptr) {}
|
||||||
|
|
||||||
HalfMove::HalfMove(const std::string &SAN, const std::string &comment,
|
HalfMove::HalfMove(const std::string &SAN, const std::string &comment,
|
||||||
std::uint16_t number, std::uint8_t NAG, bool isBlack)
|
std::uint16_t number, std::uint8_t NAG, bool isBlack)
|
||||||
: SAN(SAN), comment(comment), number(number), NAG(NAG), isBlack(isBlack),
|
: SAN(SAN), comment(comment), number(number), isBlack(isBlack), NAG(NAG),
|
||||||
parent(nullptr), mainline(nullptr) {}
|
parent(nullptr), mainline(nullptr) {}
|
||||||
|
|
||||||
HalfMove::~HalfMove() {
|
HalfMove::~HalfMove() {
|
||||||
|
|
|
@ -16,13 +16,13 @@ namespace CMI {
|
||||||
*/
|
*/
|
||||||
class HalfMove {
|
class HalfMove {
|
||||||
|
|
||||||
HalfMove *parent;
|
|
||||||
HalfMove *mainline;
|
|
||||||
std::vector<HalfMove *> variations;
|
std::vector<HalfMove *> variations;
|
||||||
std::string SAN, comment;
|
std::string SAN, comment;
|
||||||
std::uint16_t number;
|
std::uint16_t number;
|
||||||
std::uint8_t NAG;
|
|
||||||
bool isBlack;
|
bool isBlack;
|
||||||
|
std::uint8_t NAG;
|
||||||
|
HalfMove *parent;
|
||||||
|
HalfMove *mainline;
|
||||||
|
|
||||||
/// @brief Set the parent of current CMI::HalfMove, only used internally
|
/// @brief Set the parent of current CMI::HalfMove, only used internally
|
||||||
void SetParent(HalfMove *);
|
void SetParent(HalfMove *);
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
using namespace CMI;
|
using namespace CMI;
|
||||||
|
|
||||||
#define NEW_MOVE(VAR, SAN) \
|
#define NEW_MOVE(VAR, SAN) \
|
||||||
HalfMove *(VAR) = new HalfMove(); \
|
HalfMove *VAR = new HalfMove(); \
|
||||||
(VAR)->SetSAN((SAN));
|
(VAR)->SetSAN((SAN));
|
||||||
|
|
||||||
HalfMove *BuildTree() {
|
HalfMove *BuildTree() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue