mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-06 10:06:25 +02:00
Update README.md
This commit is contained in:
parent
e6e2c5a8bf
commit
bbbe18df2f
1 changed files with 19 additions and 1 deletions
20
README.md
20
README.md
|
@ -27,5 +27,23 @@ Load PGN from string:
|
||||||
catch(...){
|
catch(...){
|
||||||
// Handle exceptions
|
// Handle exceptions
|
||||||
}
|
}
|
||||||
|
Various API calls:
|
||||||
|
|
||||||
|
pgn.HasTag("Round"); // Check if tag exists
|
||||||
|
try {
|
||||||
|
pgn.STRCheck(); // Perform a Seven Tag Roster check
|
||||||
|
}
|
||||||
|
catch(...){
|
||||||
|
// Handle exceptions
|
||||||
|
}
|
||||||
|
std::vector<std::string> tags=pgn.GetTagList(); // Get a list of tags
|
||||||
|
std::string tagValue=GetTagValue("Date"); // Get the value of a tag
|
||||||
|
Access to moves:
|
||||||
|
|
||||||
|
pgnp::HalfMove *move=pgn.GetMoves(); // Get the tree of half moves
|
||||||
|
int length=move->GetLength(); // Get the number of half moves in the move MainLine
|
||||||
|
// Public members:
|
||||||
|
// move->variations contains variations of the current move
|
||||||
|
// move->isBlack boolean that says if current half move is for the black side
|
||||||
|
// Check pgnp.hpp for more infos for other field (comments, count, etc.)
|
||||||
|
|
||||||
// TODO: How to use the PGN object with the parsed data
|
|
Loading…
Add table
Reference in a new issue