Debug HalfMove and update screenshot

This commit is contained in:
Loic Guegan 2022-02-23 20:51:39 +01:00
parent 0fa6c24d8e
commit dc54f7ea04
2 changed files with 5 additions and 1 deletions

View file

@ -115,10 +115,14 @@ void HalfMove::SetAsMainline() {
HalfMove *HalfMove::GetMainline() { return (mainline); }
HalfMove::HalfMove(pgnp::HalfMove *m, std::string initial_fen) {
HalfMove::HalfMove(pgnp::HalfMove *m, std::string initial_fen): capture(' ') {
chessarbiter::ChessArbiter arbiter;
arbiter.Setup(initial_fen);
arbiter.Play(arbiter.ParseSAN(m->move));
char capture=arbiter.GetCapture();
if(capture != ' '){
this->capture=capture;
}
this->fen = arbiter.GetFEN();
this->move = m->move;
this->IsBlack = m->isBlack;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 140 KiB