blob: c836a3ef9c293e7ca952d72f63a16aaa895b0cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#pragma once
#include "Types.hpp"
#include <sstream>
#include <string>
#include <vector>
#include "CMI.hpp"
namespace pgnp {
/**
* Most members are public for conveniance sake
*/
class HalfMove {
private:
/// @brief Recursive dump
std::string NestedDump(const HalfMove *, int) const;
public:
/// @brief Contains current move count
int count;
/// @brief Is this move for black
bool isBlack;
/// @brief The SAN move
std::string move;
/// @brief Comment associated to the move
std::string comment;
std::uint8_t NAG;
/// @brief Next HalfMove link to this line
HalfMove *MainLine;
/// @brief Next HalfMove links to variation of this line
std::vector<HalfMove *> variations;
HalfMove();
~HalfMove();
/// @brief Get number of HalfMove in the MailLine
int GetLength() const;
/// @brief Dump move and all its variations
std::string Dump() const;
/// @brief Perform a deep copy of a HalfMove
void Copy(HalfMove *copy);
/// @brief Get HalfMove located x down the MainLine
HalfMove *GetHalfMoveAt(int);
/// @brief Get CMI version of HalfMove
CMI::HalfMove *GetAsCMI();
};
struct HalfMoveOutOfRange : public std::exception {
const char *what() const throw() {
return "HalfMove distance is out of range";
}
};
} // namespace pgnp
|