Add # sign to SAN moves when player is checkmate

This commit is contained in:
Loic Guegan 2023-01-10 17:13:23 +01:00
parent db78ff212d
commit 6ebd968255
2 changed files with 9 additions and 2 deletions

View file

@ -178,8 +178,10 @@ bool ChessArbiter::Play(const std::string &move, char promote) {
return (false);
}
// Don't forget the plus sign on the SAN move
if(IsCheck(fen.player)){
// Don't forget the plus and # sign on the SAN moves
if(IsCheckMate()){
SAN+="#";
} else if(IsCheck(fen.player)){
SAN+="+";
}

View file

@ -524,4 +524,9 @@ TEST_CASE("Specific bugs found on a game", "[BugFixes]") {
a.Play("d6d3");
CHECK(!a.IsCheck(false));
CHECK(a.GetSAN()=="Qd3");
// Bug 7 SAN move that lead to checkmate must have a # sign on the SAN moves
a.Setup("rnb1k1nr/pppp1ppp/4P3/8/1b3B2/1Nq5/PPP1PPPP/R2KNB1R b kq - 16 12");
a.Play("c3e1");
CHECK(a.GetSAN()=="Qxe1#");
}