blob: bf3a2cee77d0c9a5f1b3a7b8fa0e2cfdab8aca41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
#include "ochess.hpp"
#include "MainWindow.hpp"
#include "base_tab/BaseTab.hpp"
bool MyApp::OnInit() {
wxImage::AddHandler(new wxPNGHandler);
// Check config version
CONFIG_OPEN(conf);
wxString version=conf->Read("version",CONFIG_VERSION);
conf->Write("version",version); // Setup config file version
wxLogDebug("Starting ochess with configuration file version %s",version);
CONFIG_CLOSE(conf);
// Advertise for configuration file version
if(version != CONFIG_VERSION)
SHOW_DIALOG_INFO("Configuration files version missmatch. Expected "+std::string(CONFIG_VERSION)+" but got "+version+".\nPlease remove the current configuration file as it may crash the application.");
// Main frame
MainWindow *frame = new MainWindow();
frame->Show(true);
return true;
}
std::vector<TabInfos *> MyApp::ListTabInfos() {
std::vector<TabInfos *> tinfos;
wxAuiNotebook *notebook=((MainWindow *)this->GetTopWindow())->notebook;
for (int i = 0; i < notebook->GetPageCount(); i++) {
tinfos.push_back(dynamic_cast<TabInfos *>(notebook->GetPage(i)));
}
return (tinfos);
}
Openings& MyApp::GetBook() { return Book; }
void MyApp::NewGame(TabInfos *tabsrc,std::shared_ptr<Game> g){
MainWindow *w=((MainWindow *)this->GetTopWindow());
TabInfos *i=w->NewGame(g);
i->Link(tabsrc); // Link opened game to tabsrc
}
void MyApp::NewGame(std::shared_ptr<Game> g){
MainWindow *w=((MainWindow *)this->GetTopWindow());
w->NewGame(g);
}
wxIMPLEMENT_APP(MyApp);
void Abort(std::string msg) {
wxMessageDialog *dial = new wxMessageDialog(NULL, wxString(msg), wxT("Error"),
wxOK | wxICON_ERROR);
dial->ShowModal();
wxLogFatalError(wxString(msg));
}
long TabInfos::tab_count=0;
void TabInfos::Link(TabInfos *tab){
this->is_linked=true;
this->linked_id=tab->id;
this->OnLink();
}
|