mirror of
https://gitlab.com/manzerbredes/pgnp.git
synced 2025-04-05 17:46:25 +02:00
Update README.md
This commit is contained in:
parent
ed52c7cb70
commit
33e4789677
1 changed files with 15 additions and 6 deletions
21
README.md
21
README.md
|
@ -1,12 +1,21 @@
|
||||||
[](https://gitlab.com/manzerbredes/pgnp/-/commits/master)
|
[](https://gitlab.com/manzerbredes/pgnp/-/commits/master)
|
||||||
[](https://www.gnu.org/licenses/lgpl-3.0)
|
[](https://www.gnu.org/licenses/lgpl-3.0)
|
||||||
|
|
||||||
## PGNP: PGN Parser
|
# PGNP: PGN Parser
|
||||||
|
|
||||||
PGNP is a Portable Game Notation (PGN) parser. More details about the
|
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).
|
PGN specification can be found [here](https://www.chessclub.com/help/PGN-spec).
|
||||||
|
|
||||||
# Features
|
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
|
||||||
- Basic PGN parsing (tags, move, comments, variations, NAG, etc.)
|
- Basic PGN parsing (tags, move, comments, variations, NAG, etc.)
|
||||||
- Parse PGN files that contains multiple games
|
- Parse PGN files that contains multiple games
|
||||||
- Handle very large files: up to 2^(sizeof(unsigned long long)*8) bytes
|
- Handle very large files: up to 2^(sizeof(unsigned long long)*8) bytes
|
||||||
|
@ -46,12 +55,12 @@ PGN specification can be found [here](https://www.chessclub.com/help/PGN-spec).
|
||||||
> Exit status: 0
|
> Exit status: 0
|
||||||
|
|
||||||
|
|
||||||
# How to use it ?
|
## How to use it ?
|
||||||
PGNP can be used as a shared library in your project.
|
PGNP can be used as a static library in your project.
|
||||||
You only need to include `pgnp.hpp` and linking the .so file to your
|
You only need to include `pgnp.hpp` and linking the .so file to your
|
||||||
executable.
|
executable.
|
||||||
|
|
||||||
# Example
|
## Example
|
||||||
Somewhere at the beginning of the file:
|
Somewhere at the beginning of the file:
|
||||||
|
|
||||||
#include "pgnp.hpp"
|
#include "pgnp.hpp"
|
||||||
|
@ -86,7 +95,7 @@ Access to moves:
|
||||||
// moves->isBlack boolean that says if current half move is for the black side
|
// 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.)
|
// Check pgnp.hpp for more infos for the other fields (comments, count, etc.)
|
||||||
|
|
||||||
# CMake Integration
|
## CMake Integration
|
||||||
By using the `add_subdirectory()` directive on this repository, you will be able to use the following cmake calls in your project:
|
By using the `add_subdirectory()` directive on this repository, you will be able to use the following cmake calls in your project:
|
||||||
|
|
||||||
target_link_libraries(<YOUR_TARGET> pgnp)
|
target_link_libraries(<YOUR_TARGET> pgnp)
|
||||||
|
|
Loading…
Add table
Reference in a new issue