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