mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Debug Game class
This commit is contained in:
parent
91d764ba59
commit
21a5b3df8a
3 changed files with 10 additions and 1 deletions
|
@ -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());
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue