mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Add game clone button
This commit is contained in:
parent
fc9f6bd6a2
commit
0c9ddd2f0a
5 changed files with 33 additions and 1 deletions
|
@ -22,6 +22,17 @@ Game::Game(HalfMove *m, std::string initial_fen) : result("*") {
|
|||
board = chessarbiter::FENParser::Parse(initial_fen).board;
|
||||
}
|
||||
|
||||
Game::Game(const Game* g){
|
||||
board=g->board;
|
||||
initial_fen=g->initial_fen;
|
||||
result=g->result;
|
||||
tags=g->tags;
|
||||
if(g->moves != NULL){
|
||||
moves=new HalfMove(g->moves);
|
||||
current=nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
Game::~Game() {
|
||||
if (moves != NULL) {
|
||||
delete moves;
|
||||
|
|
|
@ -15,6 +15,7 @@ class Game {
|
|||
chessarbiter::ChessArbiter arbiter;
|
||||
|
||||
public:
|
||||
Game(const Game* g);
|
||||
Game();
|
||||
Game(std::string fen);
|
||||
Game(HalfMove *m, std::string initial_fen);
|
||||
|
|
|
@ -61,7 +61,8 @@ void GameTab::OnToolClick(wxCommandEvent &event){
|
|||
}
|
||||
SaveGame(related_file,game);
|
||||
} else if(id==1){
|
||||
wxLogDebug("Not yet implemented");
|
||||
Game *g=new Game(&(*game));
|
||||
wxGetApp().NewGame(std::shared_ptr<Game>(g));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -20,6 +20,23 @@ HalfMove::~HalfMove() {
|
|||
}
|
||||
}
|
||||
|
||||
HalfMove::HalfMove(HalfMove *m){
|
||||
move_absolute=m->move_absolute;
|
||||
move=m->move;
|
||||
fen=m->fen;
|
||||
capture=m->capture;
|
||||
IsBlack = m->IsBlack;
|
||||
Number = m->Number;
|
||||
nag = m->nag;
|
||||
SetComment(m->GetComment());
|
||||
if(m->mainline != NULL){
|
||||
SetMainline(new HalfMove(m->mainline));
|
||||
}
|
||||
for (int i=0; i < m->variations.size(); i++) {
|
||||
AddVariation(new HalfMove(m->variations[i]));
|
||||
}
|
||||
}
|
||||
|
||||
void HalfMove::AddVariation(HalfMove *m) {
|
||||
m->IsBlack = this->IsBlack;
|
||||
m->Number = this->Number;
|
||||
|
|
|
@ -25,6 +25,8 @@ class HalfMove : public cgeditor::CGEHalfMove {
|
|||
|
||||
public:
|
||||
|
||||
|
||||
HalfMove(HalfMove *m);
|
||||
HalfMove(std::string move_absolute,std::string move_san);
|
||||
HalfMove(std::string move_absolute,std::string move_san, std::string fen);
|
||||
HalfMove(pgnp::HalfMove *m);
|
||||
|
|
Loading…
Add table
Reference in a new issue