Debug duplicated move in games

This commit is contained in:
Loic Guegan 2023-06-03 12:34:53 +02:00
parent d60a8bb5c1
commit 9bc06b941a
4 changed files with 39 additions and 4 deletions

View file

@ -14,7 +14,7 @@
- [x] Debug engine name in the EngineTab configuration (use id for engine entry instead of name (otherwise name clash/bugs etc.))
- [x] Use static libraries for dependencies
- [x] Update PGNP to last commit
- [ ] Remove duplicated variations (currently if variation is played more than once it is added anyway to the move list)
- [x] Remove duplicated variations (currently if variation is played more than once it is added anyway to the move list)
- [ ] Debug the Preference window on OS X (GetIcon() must be overridden)
## Additional Features

View file

@ -120,13 +120,28 @@ bool Game::Play(std::string move,char promotion) {
m->SetCapture(capture);
}
if (current != nullptr) {
current->AddMove(m);
if(current->GetMainline()!=nullptr){
HalfMove* curmainline=static_cast<HalfMove*>(current->GetMainline());
HalfMove* movefound=curmainline->GetCurrentMoveWithFEN(arbiter.GetFEN());
if(movefound!=nullptr){
current=movefound;
}
else {
current->AddMove(m);
current = m;
}
}
else{
current->AddMove(m);
current = m;
}
} else if (moves != nullptr) {
moves->AddVariation(m);
current = m;
}
current = m;
if (moves == nullptr) {
moves = m;
current = m;
}
return (true);
}

View file

@ -163,6 +163,20 @@ bool HalfMove::IsVariation() {
std::string HalfMove::GetFen() { return (fen); }
HalfMove* HalfMove::GetCurrentMoveWithFEN(const std::string fen){
if(this->fen == fen){
return this;
}
else {
for(auto var: GetVariations()){
HalfMove* m=static_cast<HalfMove*>(var);
if(m->fen == fen)
return m;
}
}
return nullptr;
}
void HalfMove::BuildAndVerify(HalfMove *m, std::string fen) {
arbiter.Setup(fen);
std::string move_absolute=arbiter.ParseSAN(m->GetSAN());

View file

@ -46,7 +46,13 @@ public:
void SetCapture(char c);
void GetAbsoluteMove(std::string &src,std::string &dst);
void SetAbsoluteMove(const std::string &move_absolute);
/**
* @brief Search if current move (move or its variations)
* contains a specific fen (usefull to not add moves that already exist)
* @param fen
* @return HalfMove* the move if found or nullptr
*/
HalfMove* GetCurrentMoveWithFEN(const std::string fen);
/**
* @brief Build current move
* Verify and play all the moves in the game