2022-01-26 15:52:31 +01:00
|
|
|
[](https://gitlab.com/manzerbredes/pgnp/-/commits/master)
|
2022-01-26 15:46:59 +01:00
|
|
|
[](https://www.gnu.org/licenses/lgpl-3.0)
|
2022-01-26 15:38:54 +01:00
|
|
|
|
2023-07-05 08:53:21 +02:00
|
|
|
# PGNP: PGN Parser
|
2022-01-23 20:57:28 +01:00
|
|
|
|
|
|
|
PGNP is a Portable Game Notation (PGN) parser. More details about the
|
|
|
|
PGN specification can be found [here](https://www.chessclub.com/help/PGN-spec).
|
|
|
|
|
2023-07-05 08:53:21 +02:00
|
|
|
Compilation:
|
|
|
|
|
|
|
|
$ git clone --recursive https://gitlab.com/manzerbredes/pgnp
|
|
|
|
$ mkdir pgnp/build
|
|
|
|
$ cd pgnp/build
|
|
|
|
$ cmake ../ -DCOMPILE_TESTS=1 && make -j $(nproc)
|
|
|
|
$ ctest # Run the tests
|
|
|
|
|
|
|
|
|
|
|
|
## Features
|
2022-01-26 12:03:24 +01:00
|
|
|
- Basic PGN parsing (tags, move, comments, variations, NAG, etc.)
|
2022-01-26 21:31:40 +01:00
|
|
|
- Parse PGN files that contains multiple games
|
|
|
|
- Handle very large files: up to 2^(sizeof(unsigned long long)*8) bytes
|
2022-01-27 14:26:09 +01:00
|
|
|
- Efficiency:
|
|
|
|
|
|
|
|
<b></b>
|
|
|
|
|
|
|
|
# cpu: Intel(R) Core(TM) i7-10750H CPU @ 2.60GHz
|
|
|
|
# file name: lichess_db_standard_rated_2017-06.pgn
|
|
|
|
# file sha1sum: af8e01ab9709950be1804880d22d094324df5338
|
|
|
|
# file source: https://database.lichess.org/#standard_games
|
|
|
|
# file number of games: 11512600
|
|
|
|
# file size: 24.6GB
|
|
|
|
# pgnp FILE_BUFFER_SIZE: (1024 * 1024 / 2)
|
|
|
|
|
|
|
|
> User time (seconds): 599.81
|
|
|
|
> System time (seconds): 2.72
|
|
|
|
> Percent of CPU this job got: 99%
|
|
|
|
> Elapsed (wall clock) time (h:mm:ss or m:ss): 10:03.17
|
|
|
|
> Average shared text size (kbytes): 0
|
|
|
|
> Average unshared data size (kbytes): 0
|
|
|
|
> Average stack size (kbytes): 0
|
|
|
|
> Average total size (kbytes): 0
|
|
|
|
> Maximum resident set size (kbytes): 4484
|
|
|
|
> Average resident set size (kbytes): 0
|
|
|
|
> Major (requiring I/O) page faults: 0
|
|
|
|
> Minor (reclaiming a frame) page faults: 784
|
|
|
|
> Voluntary context switches: 4
|
|
|
|
> Involuntary context switches: 6649
|
|
|
|
> Swaps: 0
|
|
|
|
> File system inputs: 0
|
|
|
|
> File system outputs: 0
|
|
|
|
> Socket messages sent: 0
|
|
|
|
> Socket messages received: 0
|
|
|
|
> Signals delivered: 0
|
|
|
|
> Page size (bytes): 4096
|
|
|
|
> Exit status: 0
|
|
|
|
|
2022-01-25 16:51:37 +01:00
|
|
|
|
2023-07-05 08:53:21 +02:00
|
|
|
## How to use it ?
|
|
|
|
PGNP can be used as a static library in your project.
|
2022-01-25 11:10:34 +01:00
|
|
|
You only need to include `pgnp.hpp` and linking the .so file to your
|
2022-01-23 20:57:28 +01:00
|
|
|
executable.
|
|
|
|
|
2023-07-05 08:53:21 +02:00
|
|
|
## Example
|
2022-01-25 11:10:34 +01:00
|
|
|
Somewhere at the beginning of the file:
|
|
|
|
|
|
|
|
#include "pgnp.hpp"
|
2022-01-26 21:31:40 +01:00
|
|
|
Load PGN from file/string:
|
2022-01-23 20:57:28 +01:00
|
|
|
|
|
|
|
pgnp::PGN pgn;
|
|
|
|
try {
|
2022-01-26 21:31:40 +01:00
|
|
|
pgn.FromFile("pgn.txt"); // Or pgn.FromString("YOUR PGN CONTENT HERE");
|
2022-01-25 16:51:37 +01:00
|
|
|
pgn.ParseNextGame();
|
2022-01-23 20:57:28 +01:00
|
|
|
}
|
|
|
|
catch(...){
|
|
|
|
// Handle exceptions
|
|
|
|
}
|
2022-01-24 16:52:26 +01:00
|
|
|
Various API calls:
|
|
|
|
|
2022-01-26 21:31:40 +01:00
|
|
|
bool hasRound=pgn.HasTag("Round"); // Check if a tag exists
|
2022-01-24 16:53:11 +01:00
|
|
|
try {
|
|
|
|
pgn.STRCheck(); // Perform a Seven Tag Roster check
|
|
|
|
}
|
|
|
|
catch(...){
|
|
|
|
// Handle exceptions
|
|
|
|
}
|
2022-01-26 21:31:40 +01:00
|
|
|
std::vector<std::string> tags=pgn.GetTagList(); // Get the list of tags in current game
|
|
|
|
std::string tagValue=GetTagValue("Date"); // Get the value of a tag in current game
|
2022-01-24 16:52:26 +01:00
|
|
|
Access to moves:
|
|
|
|
|
2022-01-25 11:10:34 +01:00
|
|
|
pgnp::HalfMove *moves=new pgnp::HalfMove();
|
2022-01-26 21:31:40 +01:00
|
|
|
pgn.GetMoves(moves); // Get the tree of half moves
|
|
|
|
int length=moves->GetLength(); // Get the number of half move in the current MainLine
|
2022-01-24 16:53:11 +01:00
|
|
|
// Public members:
|
2022-01-25 11:10:34 +01:00
|
|
|
// moves->variations contains variations of the current move
|
|
|
|
// moves->isBlack boolean that says if current half move is for the black side
|
|
|
|
// Check pgnp.hpp for more infos for the other fields (comments, count, etc.)
|
|
|
|
|
2023-07-05 08:53:21 +02:00
|
|
|
## CMake Integration
|
2022-01-26 21:31:40 +01:00
|
|
|
By using the `add_subdirectory()` directive on this repository, you will be able to use the following cmake calls in your project:
|
2022-01-25 11:10:34 +01:00
|
|
|
|
|
|
|
target_link_libraries(<YOUR_TARGET> pgnp)
|
|
|
|
|
2022-01-23 20:57:28 +01:00
|
|
|
|