mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-06 10:06:26 +02:00
Debug capture
This commit is contained in:
parent
640d882099
commit
0e5c4b923a
2 changed files with 3 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
namespace chessarbiter {
|
namespace chessarbiter {
|
||||||
ChessArbiter::ChessArbiter()
|
ChessArbiter::ChessArbiter()
|
||||||
: wPawn(1), wRook(5), wKnight(3), wBishop(3), wQueen(9), wKing(0), SAN(""),
|
: wPawn(1), wRook(5), wKnight(3), wBishop(3), wQueen(9), wKing(0), SAN(""),
|
||||||
capture(' '), capture_last(' ') {}
|
capture(' '){}
|
||||||
|
|
||||||
void ChessArbiter::Setup(std::string fen) {
|
void ChessArbiter::Setup(std::string fen) {
|
||||||
positions.clear();
|
positions.clear();
|
||||||
|
@ -47,6 +47,7 @@ bool ChessArbiter::Play(std::string move) {
|
||||||
FEN newFen = fen;
|
FEN newFen = fen;
|
||||||
INIT_BACKUP();
|
INIT_BACKUP();
|
||||||
SAN = "";
|
SAN = "";
|
||||||
|
capture=' ';
|
||||||
|
|
||||||
if (IsCapture) {
|
if (IsCapture) {
|
||||||
capture = board.GetPieceAt(dst).piece;
|
capture = board.GetPieceAt(dst).piece;
|
||||||
|
|
|
@ -30,7 +30,7 @@ class ChessArbiter {
|
||||||
void SetFEN(std::string);
|
void SetFEN(std::string);
|
||||||
void SetFEN(FEN);
|
void SetFEN(FEN);
|
||||||
std::string SAN, SAN_last;
|
std::string SAN, SAN_last;
|
||||||
char capture, capture_last;
|
char capture;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ChessArbiter();
|
ChessArbiter();
|
||||||
|
|
Loading…
Add table
Reference in a new issue