mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-06 10:06:26 +02:00
Debug en passant capture
This commit is contained in:
parent
adaec1ba14
commit
16f2c01327
2 changed files with 5 additions and 1 deletions
|
@ -113,8 +113,10 @@ bool ChessArbiter::Play(std::string move) {
|
||||||
if (dst == fen.en_passant) {
|
if (dst == fen.en_passant) {
|
||||||
if (fen.player) {
|
if (fen.player) {
|
||||||
board.RemovePiece(dst[0] + std::string() + (char)(dst[1] + 1));
|
board.RemovePiece(dst[0] + std::string() + (char)(dst[1] + 1));
|
||||||
|
capture = 'P';
|
||||||
} else {
|
} else {
|
||||||
board.RemovePiece(dst[0] + std::string() + (char)(dst[1] - 1));
|
board.RemovePiece(dst[0] + std::string() + (char)(dst[1] - 1));
|
||||||
|
capture = 'p';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
newFen.halfmove = 0; // Pawn moves reset half moves
|
newFen.halfmove = 0; // Pawn moves reset half moves
|
||||||
|
@ -435,7 +437,7 @@ std::string ChessArbiter::ParseSAN(std::string SANMove) {
|
||||||
// Pawn moves
|
// Pawn moves
|
||||||
if (std::islower(SANMove[0])) {
|
if (std::islower(SANMove[0])) {
|
||||||
piece = 'P';
|
piece = 'P';
|
||||||
hint=SANMove[0];
|
hint = SANMove[0];
|
||||||
// Not a capture
|
// Not a capture
|
||||||
if (SANMove[1] != 'x') {
|
if (SANMove[1] != 'x') {
|
||||||
dst = SANMove.substr(0, 2);
|
dst = SANMove.substr(0, 2);
|
||||||
|
|
|
@ -406,12 +406,14 @@ TEST_CASE("SimpleEnPassant", "[SimpleEnPassant]") {
|
||||||
CHECK(a.Play("e5f6"));
|
CHECK(a.Play("e5f6"));
|
||||||
CHECK(a.GetFEN() ==
|
CHECK(a.GetFEN() ==
|
||||||
"rnbqkbnr/ppppp1pp/5P2/8/8/8/PPPP1PPP/RNBQKBNR b KQkq - 0 2");
|
"rnbqkbnr/ppppp1pp/5P2/8/8/8/PPPP1PPP/RNBQKBNR b KQkq - 0 2");
|
||||||
|
CHECK(a.GetCapture() == 'p');
|
||||||
|
|
||||||
// Black capture
|
// Black capture
|
||||||
a.Setup("rnbqkbnr/ppppp1pp/8/8/4Pp2/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1");
|
a.Setup("rnbqkbnr/ppppp1pp/8/8/4Pp2/8/PPPP1PPP/RNBQKBNR b KQkq e3 0 1");
|
||||||
CHECK(a.Play("f4e3"));
|
CHECK(a.Play("f4e3"));
|
||||||
CHECK(a.GetFEN() ==
|
CHECK(a.GetFEN() ==
|
||||||
"rnbqkbnr/ppppp1pp/8/8/8/4p3/PPPP1PPP/RNBQKBNR w KQkq - 0 2");
|
"rnbqkbnr/ppppp1pp/8/8/8/4p3/PPPP1PPP/RNBQKBNR w KQkq - 0 2");
|
||||||
|
CHECK(a.GetCapture() == 'P');
|
||||||
|
|
||||||
// Check en_passant is set
|
// Check en_passant is set
|
||||||
a.Setup(
|
a.Setup(
|
||||||
|
|
Loading…
Add table
Reference in a new issue