From d9818df8791730130adc5349e863b35de0e1c351 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Tue, 31 Jan 2023 19:03:33 +0100 Subject: [PATCH] Improve config version management --- src/ochess.cpp | 53 +++++++++++++++++++++++++++++++++----------------- 1 file changed, 35 insertions(+), 18 deletions(-) diff --git a/src/ochess.cpp b/src/ochess.cpp index bf3a2ce..5ef3522 100644 --- a/src/ochess.cpp +++ b/src/ochess.cpp @@ -7,14 +7,33 @@ bool MyApp::OnInit() { // 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); + 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."); + if (version != CONFIG_VERSION) { + wxMessageDialog *dial = new wxMessageDialog( + NULL, + wxT("Configuration files version missmatch. Expected " + + std::string(CONFIG_VERSION) + " but got " + version + + ".\nExisting OChess configuration must be erased.\n" + + "Do you still want to proceed?"), + wxT("Information"), wxYES_NO | wxNO_DEFAULT | wxICON_QUESTION); + + if (dial->ShowModal() != wxID_YES) + return false; + // First remove everything: + CONFIG_OPEN(conf2); + conf2->DeleteAll(); + conf2->Write("version", CONFIG_VERSION); + CONFIG_CLOSE(conf2); + // Now Create new configuration: + CONFIG_OPEN(conf3); + conf3->Write("version", CONFIG_VERSION); + CONFIG_CLOSE(conf3); + } // Main frame MainWindow *frame = new MainWindow(); @@ -25,28 +44,26 @@ bool MyApp::OnInit() { std::vector MyApp::ListTabInfos() { std::vector tinfos; - wxAuiNotebook *notebook=((MainWindow *)this->GetTopWindow())->notebook; + wxAuiNotebook *notebook = ((MainWindow *)this->GetTopWindow())->notebook; for (int i = 0; i < notebook->GetPageCount(); i++) { tinfos.push_back(dynamic_cast(notebook->GetPage(i))); } return (tinfos); } -Openings& MyApp::GetBook() { return Book; } +Openings &MyApp::GetBook() { return Book; } -void MyApp::NewGame(TabInfos *tabsrc,std::shared_ptr g){ - MainWindow *w=((MainWindow *)this->GetTopWindow()); - TabInfos *i=w->NewGame(g); +void MyApp::NewGame(TabInfos *tabsrc, std::shared_ptr 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 g){ - MainWindow *w=((MainWindow *)this->GetTopWindow()); +void MyApp::NewGame(std::shared_ptr g) { + MainWindow *w = ((MainWindow *)this->GetTopWindow()); w->NewGame(g); } - - wxIMPLEMENT_APP(MyApp); void Abort(std::string msg) { @@ -56,9 +73,9 @@ void Abort(std::string msg) { wxLogFatalError(wxString(msg)); } -long TabInfos::tab_count=0; -void TabInfos::Link(TabInfos *tab){ - this->is_linked=true; - this->linked_id=tab->id; +long TabInfos::tab_count = 0; +void TabInfos::Link(TabInfos *tab) { + this->is_linked = true; + this->linked_id = tab->id; this->OnLink(); } \ No newline at end of file