A Portable Game Notation (PGN) parser.
Find a file
2022-01-24 16:41:02 +01:00
src Improve tests 2022-01-24 16:41:02 +01:00
tests Improve tests 2022-01-24 16:41:02 +01:00
.gitignore Create project 2022-01-23 20:57:28 +01:00
.gitlab-ci.yml Add CI receipt 2022-01-24 15:36:45 +01:00
CMakeLists.txt Improve overall parsing 2022-01-24 15:29:22 +01:00
README.md Create project 2022-01-23 20:57:28 +01:00

PGNP: PGN Parser

PGNP is a Portable Game Notation (PGN) parser. More details about the PGN specification can be found here.

How to use it ?

PGNP can be used as a shared library in your project. You only need to include the header file and linking the .so file to your executable.

Example

Load PGN from file:

pgnp::PGN pgn;
try {
    pgn.FromFile("pgn.txt");
}
catch(...){
    // Handle exceptions
}

Load PGN from string:

pgnp::PGN pgn;
try {
    pgn.FromString("YOUR PGN CONTENT HERE");
}
catch(...){
    // Handle exceptions
}

// TODO: How to use the PGN object with the parsed data