mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-06 10:06:25 +02:00
Improve PGNP API
This commit is contained in:
parent
bdd879586e
commit
e817ac6bed
4 changed files with 36 additions and 8 deletions
|
@ -40,7 +40,8 @@ Various API calls:
|
||||||
std::string tagValue=GetTagValue("Date"); // Get the value of a tag
|
std::string tagValue=GetTagValue("Date"); // Get the value of a tag
|
||||||
Access to moves:
|
Access to moves:
|
||||||
|
|
||||||
pgnp::HalfMove *move=pgn.GetMoves(); // Get the tree of half moves
|
pgnp::HalfMove *move=new pgnp::HalfMove();
|
||||||
|
pgn.GetMoves(move); // Get the tree of half moves (do not forget to call "delete move")
|
||||||
int length=move->GetLength(); // Get the number of half moves in the move MainLine
|
int length=move->GetLength(); // Get the number of half moves in the move MainLine
|
||||||
// Public members:
|
// Public members:
|
||||||
// move->variations contains variations of the current move
|
// move->variations contains variations of the current move
|
||||||
|
|
24
src/pgnp.cpp
24
src/pgnp.cpp
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
namespace pgnp {
|
namespace pgnp {
|
||||||
|
|
||||||
HalfMove::HalfMove() : isBlack(false), MainLine(NULL) {}
|
HalfMove::HalfMove() : count(-1), isBlack(false), MainLine(NULL) {}
|
||||||
|
|
||||||
HalfMove::~HalfMove() {
|
HalfMove::~HalfMove() {
|
||||||
for (auto *move : variations) {
|
for (auto *move : variations) {
|
||||||
|
@ -55,6 +55,26 @@ int HalfMove::GetLength() {
|
||||||
return length;
|
return length;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HalfMove::Copy(HalfMove* copy){
|
||||||
|
copy->count=count;
|
||||||
|
copy->isBlack=isBlack;
|
||||||
|
copy->move=move;
|
||||||
|
copy->comment=comment;
|
||||||
|
|
||||||
|
// Copy MainLine
|
||||||
|
if(MainLine!=NULL){
|
||||||
|
copy->MainLine=new HalfMove();
|
||||||
|
MainLine->Copy(copy->MainLine);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Copy variation
|
||||||
|
for(HalfMove *var:variations){
|
||||||
|
HalfMove *new_var=new HalfMove();
|
||||||
|
copy->variations.push_back(new_var);
|
||||||
|
var->Copy(new_var);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
PGN::~PGN() {
|
PGN::~PGN() {
|
||||||
if (moves != NULL)
|
if (moves != NULL)
|
||||||
delete moves;
|
delete moves;
|
||||||
|
@ -265,7 +285,7 @@ int PGN::ParseNextTag(int start_loc) {
|
||||||
return (valueloc + 1); // +1 For the last char of the tag which is ']'
|
return (valueloc + 1); // +1 For the last char of the tag which is ']'
|
||||||
}
|
}
|
||||||
|
|
||||||
HalfMove *PGN::GetMoves() { return (moves); }
|
void PGN::GetMoves(HalfMove* copy) { moves->Copy(copy); }
|
||||||
|
|
||||||
std::vector<std::string> PGN::GetTagList() { return tagkeys; }
|
std::vector<std::string> PGN::GetTagList() { return tagkeys; }
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@ public:
|
||||||
int GetLength();
|
int GetLength();
|
||||||
/// @brief Dump move and all its variations
|
/// @brief Dump move and all its variations
|
||||||
void Dump();
|
void Dump();
|
||||||
|
void Copy(HalfMove* copy);
|
||||||
};
|
};
|
||||||
|
|
||||||
class PGN {
|
class PGN {
|
||||||
|
@ -52,7 +53,7 @@ public:
|
||||||
std::vector<std::string> GetTagList();
|
std::vector<std::string> GetTagList();
|
||||||
std::string GetTagValue(std::string);
|
std::string GetTagValue(std::string);
|
||||||
std::string GetResult();
|
std::string GetResult();
|
||||||
HalfMove *GetMoves();
|
void GetMoves(HalfMove*);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/// @brief Populate @a tags with by parsing the one starting at location in
|
/// @brief Populate @a tags with by parsing the one starting at location in
|
||||||
|
|
|
@ -8,7 +8,9 @@ TEST_CASE("Valid PGN", "[valid/pgn1]") {
|
||||||
REQUIRE_NOTHROW(pgn.FromFile("pgn_files/valid/pgn1.pgn"));
|
REQUIRE_NOTHROW(pgn.FromFile("pgn_files/valid/pgn1.pgn"));
|
||||||
REQUIRE_THROWS(pgn.STRCheck());
|
REQUIRE_THROWS(pgn.STRCheck());
|
||||||
|
|
||||||
HalfMove *m = pgn.GetMoves();
|
HalfMove *m = new HalfMove();
|
||||||
|
pgn.GetMoves(m);
|
||||||
|
HalfMove *m_backup = m;
|
||||||
REQUIRE(m->GetLength() == 6);
|
REQUIRE(m->GetLength() == 6);
|
||||||
|
|
||||||
SECTION("Main line move checks") {
|
SECTION("Main line move checks") {
|
||||||
|
@ -31,7 +33,7 @@ TEST_CASE("Valid PGN", "[valid/pgn1]") {
|
||||||
}
|
}
|
||||||
|
|
||||||
SECTION("Main line color checks") {
|
SECTION("Main line color checks") {
|
||||||
m = pgn.GetMoves();
|
m=m_backup;
|
||||||
CHECK_FALSE(m->isBlack);
|
CHECK_FALSE(m->isBlack);
|
||||||
|
|
||||||
m = m->MainLine;
|
m = m->MainLine;
|
||||||
|
@ -63,7 +65,9 @@ TEST_CASE("Valid PGN", "[valid/pgn2]") {
|
||||||
PGN pgn;
|
PGN pgn;
|
||||||
REQUIRE_NOTHROW(pgn.FromFile("pgn_files/valid/pgn2.pgn"));
|
REQUIRE_NOTHROW(pgn.FromFile("pgn_files/valid/pgn2.pgn"));
|
||||||
REQUIRE_THROWS(pgn.STRCheck());
|
REQUIRE_THROWS(pgn.STRCheck());
|
||||||
REQUIRE(pgn.GetMoves()->GetLength() == 66);
|
HalfMove *m = new HalfMove();
|
||||||
|
pgn.GetMoves(m);
|
||||||
|
REQUIRE(m->GetLength() == 66);
|
||||||
CHECK(pgn.GetResult() == "0-1");
|
CHECK(pgn.GetResult() == "0-1");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,6 +75,8 @@ TEST_CASE("Seven Tag Roster", "[std/pgn1]") {
|
||||||
PGN pgn;
|
PGN pgn;
|
||||||
REQUIRE_NOTHROW(pgn.FromFile("pgn_files/str/pgn1.pgn"));
|
REQUIRE_NOTHROW(pgn.FromFile("pgn_files/str/pgn1.pgn"));
|
||||||
REQUIRE_NOTHROW(pgn.STRCheck());
|
REQUIRE_NOTHROW(pgn.STRCheck());
|
||||||
REQUIRE(pgn.GetMoves()->GetLength() == 85);
|
HalfMove *m = new HalfMove();
|
||||||
|
pgn.GetMoves(m);
|
||||||
|
REQUIRE(m->GetLength() == 85);
|
||||||
CHECK(pgn.GetResult() == "1/2-1/2");
|
CHECK(pgn.GetResult() == "1/2-1/2");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue