mirror of
https://gitlab.com/manzerbredes/chessarbiter.git
synced 2025-04-06 10:06:26 +02:00
Optimizing the Play method
This commit is contained in:
parent
6ebd968255
commit
d877983ce7
1 changed files with 10 additions and 8 deletions
|
@ -178,13 +178,6 @@ bool ChessArbiter::Play(const std::string &move, char promote) {
|
||||||
return (false);
|
return (false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't forget the plus and # sign on the SAN moves
|
|
||||||
if(IsCheckMate()){
|
|
||||||
SAN+="#";
|
|
||||||
} else if(IsCheck(fen.player)){
|
|
||||||
SAN+="+";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update position map (repetitions draw)
|
// Update position map (repetitions draw)
|
||||||
if (positions.count(fen.board) == 0) {
|
if (positions.count(fen.board) == 0) {
|
||||||
positions[fen.board] = 1;
|
positions[fen.board] = 1;
|
||||||
|
@ -434,7 +427,16 @@ bool ChessArbiter::IsCheckMate() {
|
||||||
return (false);
|
return (false);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string ChessArbiter::GetSAN() { return (SAN); }
|
std::string ChessArbiter::GetSAN() {
|
||||||
|
// Don't forget the plus and # sign on the SAN moves
|
||||||
|
if(IsCheckMate()){
|
||||||
|
return SAN+"#";
|
||||||
|
} else if(IsCheck(fen.player)){
|
||||||
|
return SAN+ "+";
|
||||||
|
}
|
||||||
|
return SAN;
|
||||||
|
}
|
||||||
|
|
||||||
char ChessArbiter::GetCapture() { return (capture); }
|
char ChessArbiter::GetCapture() { return (capture); }
|
||||||
|
|
||||||
std::string ChessArbiter::ParseSAN(const std::string &SANMove) {
|
std::string ChessArbiter::ParseSAN(const std::string &SANMove) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue