From 94c2565647d84f31d5ccac0d88717aef29d4a9a1 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Wed, 16 Feb 2022 13:43:30 +0100 Subject: [PATCH] Debug piece capture --- src/Board.cpp | 2 +- tests/chessarbiter.cpp | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/Board.cpp b/src/Board.cpp index a107c02..6546354 100644 --- a/src/Board.cpp +++ b/src/Board.cpp @@ -74,9 +74,9 @@ std::string Board::GetKingLocation(bool isBlack) { void Board::Move(std::string move) { std::string src = move.substr(0, 2); std::string dst = move.substr(2, 2); + RemovePiece(dst); // Remove piece on dst if exists for (Piece &p : pieces) { if (p.coord == src) { - RemovePiece(dst); // Remove piece on dst if exists p.coord = dst; break; } diff --git a/tests/chessarbiter.cpp b/tests/chessarbiter.cpp index edee7f0..475816e 100644 --- a/tests/chessarbiter.cpp +++ b/tests/chessarbiter.cpp @@ -358,3 +358,13 @@ TEST_CASE("IsDrawByRepetitions", "[chessarbiter/IsDrawByRepetitions]") { a.Play("d6d7"); CHECK(a.IsDrawByRepetitions()); } + +TEST_CASE("SimpleCapture", "[SimplePieceCapture]") { + ChessArbiter a; + a.Setup("rnbqkbnr/ppp1pppp/8/3p4/4P3/8/PPPP1PPP/RNBQKBNR w KQkq - 0 2"); + + // Ensure capture works + a.Play("e4d5"); + CHECK(a.GetFEN() == + "rnbqkbnr/ppp1pppp/8/3P4/8/8/PPPP1PPP/RNBQKBNR b KQkq - 0 2"); +}