mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-06 10:06:26 +02:00
Debug pawns promotion
This commit is contained in:
parent
6f48becb91
commit
779cf4f082
2 changed files with 4 additions and 2 deletions
|
@ -131,12 +131,12 @@ bool ChessArbiter::Play(const std::string &move, char promote) {
|
||||||
if(moved.piece == 'p' && dst[1]=='1'){
|
if(moved.piece == 'p' && dst[1]=='1'){
|
||||||
board.RemovePiece(dst);
|
board.RemovePiece(dst);
|
||||||
board.AddPiece(tolower(promote),dst);
|
board.AddPiece(tolower(promote),dst);
|
||||||
SAN+="="+toupper(promote);
|
SAN+="=";SAN.push_back(toupper(promote));
|
||||||
was_pawn_promotion=true;
|
was_pawn_promotion=true;
|
||||||
} else if(dst[1]=='8'){
|
} else if(dst[1]=='8'){
|
||||||
board.RemovePiece(dst);
|
board.RemovePiece(dst);
|
||||||
board.AddPiece(toupper(promote),dst);
|
board.AddPiece(toupper(promote),dst);
|
||||||
SAN+="="+toupper(promote);
|
SAN+="=";SAN.push_back(toupper(promote));
|
||||||
was_pawn_promotion=true;
|
was_pawn_promotion=true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -485,12 +485,14 @@ TEST_CASE("Specific bugs found on a game", "[BugFixes]") {
|
||||||
a.Play("d7d8");
|
a.Play("d7d8");
|
||||||
CHECK(a.GetFEN() == "3Q4/k7/2p1ppp1/5qBp/5P1P/8/6PK/8 b - - 0 45");
|
CHECK(a.GetFEN() == "3Q4/k7/2p1ppp1/5qBp/5P1P/8/6PK/8 b - - 0 45");
|
||||||
CHECK(a.WasPawnPromotion());
|
CHECK(a.WasPawnPromotion());
|
||||||
|
CHECK(a.GetSAN()=="d8=Q");
|
||||||
|
|
||||||
// BUG 3 (Promotion)
|
// BUG 3 (Promotion)
|
||||||
a.Setup("8/k2P4/2p1ppp1/5qBp/5P1P/8/6PK/8 w - - 0 45");
|
a.Setup("8/k2P4/2p1ppp1/5qBp/5P1P/8/6PK/8 w - - 0 45");
|
||||||
a.Play("d7d8",'n');
|
a.Play("d7d8",'n');
|
||||||
CHECK(a.GetFEN() == "3N4/k7/2p1ppp1/5qBp/5P1P/8/6PK/8 b - - 0 45");
|
CHECK(a.GetFEN() == "3N4/k7/2p1ppp1/5qBp/5P1P/8/6PK/8 b - - 0 45");
|
||||||
CHECK(a.WasPawnPromotion());
|
CHECK(a.WasPawnPromotion());
|
||||||
|
CHECK(a.GetSAN()=="d8=N");
|
||||||
|
|
||||||
// BUG 4 (Promotion)
|
// BUG 4 (Promotion)
|
||||||
char p=a.ParseSANPromotion("d8=Q");
|
char p=a.ParseSANPromotion("d8=Q");
|
||||||
|
|
Loading…
Add table
Reference in a new issue