Debug Game class

This commit is contained in:
Loic Guegan 2022-12-31 20:25:12 +01:00
parent 91d764ba59
commit 21a5b3df8a
3 changed files with 10 additions and 1 deletions

View file

@ -52,6 +52,7 @@ MainWindow::MainWindow()
Bind(REFRESH_ENGINE_LIST, &MainWindow::OnRefreshEngineList, this, wxID_ANY);
Bind(CLOSE_LINKED_TAB, &MainWindow::OnCloseTabLinkedTo, this, wxID_ANY);
Bind(wxEVT_AUINOTEBOOK_PAGE_CLOSED, &MainWindow::OnAuiNotebookPageClosed, this, wxID_ANY);
Bind(wxEVT_AUINOTEBOOK_PAGE_CLOSE, &MainWindow::OnAuiNotebookPageCheck, this, wxID_ANY);
// Add new game tab by default
NewGame(std::shared_ptr<Game>(new Game()));
@ -62,6 +63,11 @@ MainWindow::MainWindow()
this->AddPage(bt,bt);*/
}
void MainWindow::OnAuiNotebookPageCheck(wxAuiNotebookEvent& event){
// TODO: Ask the user before closing
//event.Veto();
}
void MainWindow::AddPage(wxWindow* window, TabInfos* infos){
window->SetClientData(infos);
notebook->AddPage(window, window->GetLabel());

View file

@ -27,6 +27,7 @@ class MainWindow : public MainFrame {
void OnRefreshEngineList(wxCommandEvent &event);
void OnMenuItemClick(wxCommandEvent &event);
void OnAuiNotebookPageClosed(wxAuiNotebookEvent& event);
void OnAuiNotebookPageCheck(wxAuiNotebookEvent& event);
void OnCloseTabLinkedTo(wxCommandEvent &event);
void AddPage(wxWindow* window, TabInfos* infos);
public:

View file

@ -25,11 +25,13 @@ Game::Game(HalfMove *m, std::string initial_fen) : result("*") {
Game::Game(const Game* g){
board=g->board;
initial_fen=g->initial_fen;
board = chessarbiter::FENParser::Parse(initial_fen).board;
result=g->result;
tags=g->tags;
current=nullptr;
moves=nullptr;
if(g->moves != NULL){
moves=new HalfMove(g->moves);
current=nullptr;
}
}