Compare commits

..

2 commits

Author SHA1 Message Date
445d7323b3 SaveTool: add configuration system. 2021-07-23 14:17:42 +02:00
83002868d9 Add an explanatory comment. 2021-07-22 13:10:40 +02:00
5 changed files with 50 additions and 27 deletions

View file

@ -89,7 +89,7 @@ set(EFSW_INSTALL OFF CACHE BOOL "" FORCE)
add_subdirectory(third-party/efsw EXCLUDE_FROM_ALL) add_subdirectory(third-party/efsw EXCLUDE_FROM_ALL)
set(CPR_BUILD_TESTS OFF CACHE BOOL "" FORCE) set(CPR_BUILD_TESTS OFF CACHE BOOL "" FORCE)
set(CMAKE_USE_LIBSSH2 OFF CACHE BOOL "" FORCE) set(CMAKE_USE_LIBSSH2 OFF CACHE BOOL "" FORCE) # For some reason, even when HTTP_ONLY is set to ON, libcurl will try to link to libssh2.
add_subdirectory(third-party/cpr EXCLUDE_FROM_ALL) add_subdirectory(third-party/cpr EXCLUDE_FROM_ALL)
add_subdirectory(src) add_subdirectory(src)

View file

@ -131,10 +131,16 @@ SaveTool::SaveTool(const Arguments& arguments):
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
return; return;
} }
initialiseConfiguration();
} }
SaveTool::~SaveTool() { SaveTool::~SaveTool() {
SDL_RemoveTimer(_gameCheckTimerId); SDL_RemoveTimer(_gameCheckTimerId);
_conf.setValue("unsafe_mode", _unsafeMode);
_conf.setValue("startup_update_check", _checkUpdatesOnStartup);
_conf.save();
} }
void SaveTool::handleFileAction(efsw::WatchID watch_id, void SaveTool::handleFileAction(efsw::WatchID watch_id,
@ -283,6 +289,24 @@ void SaveTool::updateCheckEvent(SDL_Event& event) {
// TODO: implement // TODO: implement
} }
void SaveTool::initialiseConfiguration() {
if(_conf.hasValue("unsafe_mode")) {
_unsafeMode = _conf.value<bool>("unsafe_mode");
}
else {
_conf.setValue("unsafe_mode", _unsafeMode);
}
if(_conf.hasValue("startup_update_check")) {
_checkUpdatesOnStartup = _conf.value<bool>("startup_update_check");
}
else {
_conf.setValue("startup_update_check", _checkUpdatesOnStartup);
}
_conf.save();
}
void SaveTool::initialiseGui() { void SaveTool::initialiseGui() {
ImGui::CreateContext(); ImGui::CreateContext();

View file

@ -19,6 +19,7 @@
#include <thread> #include <thread>
#include <Corrade/Containers/Pointer.h> #include <Corrade/Containers/Pointer.h>
#include <Corrade/Utility/Configuration.h>
#include <Corrade/Utility/Resource.h> #include <Corrade/Utility/Resource.h>
#include <Magnum/Platform/Sdl2Application.h> #include <Magnum/Platform/Sdl2Application.h>
@ -73,6 +74,7 @@ class SaveTool: public Platform::Sdl2Application, public efsw::FileWatchListener
void updateCheckEvent(SDL_Event& event); void updateCheckEvent(SDL_Event& event);
// Initialisation methods // Initialisation methods
void initialiseConfiguration();
void initialiseGui(); void initialiseGui();
void initialiseManager(); void initialiseManager();
auto findGameDataDirectory() -> bool; auto findGameDataDirectory() -> bool;
@ -139,6 +141,7 @@ class SaveTool: public Platform::Sdl2Application, public efsw::FileWatchListener
void checkForUpdates(); void checkForUpdates();
Utility::Configuration _conf{"MassBuilderSaveTool.ini"};
Utility::Resource _rs{"assets"}; Utility::Resource _rs{"assets"};
// GUI-related members // GUI-related members
@ -191,5 +194,6 @@ class SaveTool: public Platform::Sdl2Application, public efsw::FileWatchListener
}; };
Containers::StaticArray<2, efsw::WatchID> _watchIDs; Containers::StaticArray<2, efsw::WatchID> _watchIDs;
bool _checkUpdatesOnStartup{true};
bool _unsafeMode{false}; bool _unsafeMode{false};
}; };

View file

@ -42,30 +42,16 @@ void SaveTool::drawManager() {
return; return;
} }
if(ImGui::BeginTable("##TopRow", 2)) { ImGui::AlignTextToFramePadding();
ImGui::TableSetupColumn("##ProfileInfo", ImGuiTableColumnFlags_WidthStretch); ImGui::Text("Current profile: %s (%s)",
ImGui::TableSetupColumn("##Unsafe", ImGuiTableColumnFlags_WidthFixed); _currentProfile->companyName().c_str(),
_currentProfile->type() == ProfileType::Demo ? "demo" : "full game");
ImGui::TableNextRow(); ImGui::SameLine();
ImGui::TableSetColumnIndex(0); if(ImGui::Button("Close")) {
ImGui::AlignTextToFramePadding(); _currentProfile = nullptr;
ImGui::Text("Current profile: %s (%s)", _massManager.reset();
_currentProfile->companyName().c_str(), _fileWatcher.reset();
_currentProfile->type() == ProfileType::Demo ? "demo" : "full game"); _uiState = UiState::ProfileManager;
ImGui::SameLine();
if(ImGui::Button("Close")) {
_currentProfile = nullptr;
_massManager.reset();
_fileWatcher.reset();
_uiState = UiState::ProfileManager;
}
ImGui::TableSetColumnIndex(1);
ImGui::Checkbox("Unsafe mode", &_unsafeMode);
drawTooltip("Enabling this allows interactions deemed to be unsafe to do while the game is running.",
Float(windowSize().x()) * 0.35f);
ImGui::EndTable();
} }
if(ImGui::BeginChild("##ProfileInfo", if(ImGui::BeginChild("##ProfileInfo",

View file

@ -54,8 +54,17 @@ void SaveTool::drawMainMenu() {
ImGui::Separator(); ImGui::Separator();
if(ImGui::MenuItem(ICON_FA_SYNC_ALT " Check for updates", nullptr, false, false)) { if(ImGui::BeginMenu(ICON_FA_COG " Settings")) {
// TODO: implement ImGui::Checkbox("Unsafe mode", &_unsafeMode);
ImGui::SameLine();
drawHelpMarker("This allows changing the state of save files in the game's save folder even when the game is running.",
Float(windowSize().x()) * 0.4f);
ImGui::Checkbox("Check for updates on startup", &_checkUpdatesOnStartup);
ImGui::SameLine();
ImGui::Button(ICON_FA_SYNC_ALT " Check now");
ImGui::EndMenu();
} }
ImGui::Separator(); ImGui::Separator();