Debug db import

This commit is contained in:
Loic Guegan 2022-12-26 18:56:59 +01:00
parent af331272c7
commit 5c8334af1d
3 changed files with 19 additions and 3 deletions

View file

@ -107,5 +107,15 @@ void BaseImportTab::Reset(std::shared_ptr<GameBase> base){
this->base=base;
this->games_to_import.clear();
this->databases_to_import.clear();
this->selected_games_to_import.clear();
glm->Clear();
}
std::vector<std::shared_ptr<Game>> BaseImportTab::GetGameToImport(){
std::vector<std::shared_ptr<Game>> to_import;
for(auto g: games_to_import){to_import.push_back(g);}
for (auto it = selected_games_to_import.begin(); it != selected_games_to_import.end(); it++){
to_import.push_back(it->second);
}
return to_import;
}

View file

@ -23,5 +23,6 @@ public:
void OnImportSelection(wxCommandEvent &event);
void OnImportDatabase(wxCommandEvent &event);
void Reset(std::shared_ptr<GameBase> base);
std::vector<std::shared_ptr<Game>> GetGameToImport();
std::vector<std::shared_ptr<GameBase>> GetDatabaseToImport() {return databases_to_import;};
};

View file

@ -55,8 +55,13 @@ void BaseTab::OpenDatabase(std::string dbpath) {
}
void BaseTab::OnSave(wxCommandEvent &event) {
std::vector<std::shared_ptr<GameBase>> dummy_empty_base;
base->Save(games_tab->GetDeletedGameIds(), dummy_empty_base, games_tab->GetEditedGames());
// Build new games
std::vector<std::shared_ptr<Game>> new_games=games_tab->GetEditedGames();
for(auto g: import_tab->GetGameToImport()){
new_games.push_back(g);
}
SHOW_DIALOG_BUSY("Apply all changes. Take a coffee, this process can takes time...");
base->Save(games_tab->GetDeletedGameIds(), import_tab->GetDatabaseToImport(), new_games);
// Close all opened games in this database
wxCommandEvent closeLinkedTabEvent(CLOSE_LINKED_TAB, GetId());