kolibri / chessphp
Utils for handling pgns in php
v0.0.1
2019-11-15 13:18 UTC
Requires
- php: ^7.1
- ryanhs/chess.php: ^1.0
Requires (Dev)
- phpunit/phpunit: ^7.5
This package is auto-updated.
Last update: 2025-03-16 03:21:25 UTC
README
(This repo is still in development)
This is a wrapper around ryanhs/chess.php to provide a more easy interface to get information of a chess game, that was imported via a PGN string.
Installation
composer require kolibri/chessphp
Usage
<?php use Kolibri\ChessGame; $emptyGame = new ChessGame(); // Create an empty game (not so useful right now) $pgnString = <<<EOF [Event "Simultaneous"] [Site "Budapest HUN"] [Date "1934.??.??"] [EventDate "?"] [Round "?"] [Result "1-0"] [White "Esteban Canal"] [Black "NN"] [ECO "B01"] [WhiteElo "?"] [BlackElo "?"] [PlyCount "27"] 1. e4 d5 2. exd5 Qxd5 3. Nc3 Qa5 4. d4 c6 5. Nf3 Bg4 6. Bf4 e6 7. h3 Bxf3 8. Qxf3 Bb4 9. Be2 Nd7 10. a3 O-O-O 11. axb4 Qxa1+ 12. Kd2 Qxh1 13. Qxc6+ bxc6 14. Ba6# EOF; // Load Game from PGN string $gameFromPgn = new ChessGame($pgnString); echo $gameFromPgn->getPgn(); // get the pgn string echo $gameFromPgn->getFen(); // get the FEN of the board at the last move echo $gameFromPgn->getAsciiBoard(); // get an ascii version of the board echo $gameFromPgn->getWhitePlayerName(); // get the name of the white player echo $gameFromPgn->getBlackPlayerName(); // get the name of the black player