mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Debug HalfMove and update screenshot
This commit is contained in:
parent
0fa6c24d8e
commit
dc54f7ea04
2 changed files with 5 additions and 1 deletions
|
@ -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 |
Loading…
Add table
Reference in a new issue