mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-05 17:46:26 +02:00
Debug SAN move parser
This commit is contained in:
parent
90050da015
commit
3812a74cda
2 changed files with 4 additions and 0 deletions
|
@ -435,6 +435,7 @@ std::string ChessArbiter::ParseSAN(std::string SANMove) {
|
|||
// Pawn moves
|
||||
if (std::islower(SANMove[0])) {
|
||||
piece = 'P';
|
||||
hint=SANMove[0];
|
||||
// Not a capture
|
||||
if (SANMove[1] != 'x') {
|
||||
dst = SANMove.substr(0, 2);
|
||||
|
|
|
@ -453,4 +453,7 @@ TEST_CASE("ParseSAN", "[ParseSAN]") {
|
|||
|
||||
a.Setup("rnbqkbnr/pp3ppp/4p3/2pp4/3PP3/8/PPPN1PPP/R1BQKBNR w KQkq - 0 4");
|
||||
CHECK(a.ParseSAN("exd5") == "e4d5");
|
||||
|
||||
a.Setup("1r4k1/4pp1p/6pb/1p3b2/P1P5/5P2/2P3PP/1K1R3R w - - 0 23");
|
||||
CHECK(a.ParseSAN("cxb5") == "c4b5");
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue