mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-05 17:46:26 +02:00
Add # sign to SAN moves when player is checkmate
This commit is contained in:
parent
db78ff212d
commit
6ebd968255
2 changed files with 9 additions and 2 deletions
|
@ -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+="+";
|
||||
}
|
||||
|
||||
|
|
|
@ -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#");
|
||||
}
|
Loading…
Add table
Reference in a new issue