Improve config version management

This commit is contained in:
Loic Guegan 2023-01-31 19:03:33 +01:00
parent d0e8abf2c5
commit d9818df879

View file

@ -13,8 +13,27 @@ bool MyApp::OnInit() {
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();
@ -45,8 +64,6 @@ void MyApp::NewGame(std::shared_ptr<Game> g){
w->NewGame(g);
}
wxIMPLEMENT_APP(MyApp);
void Abort(std::string msg) {