2023-11-12 08:03:01 +01:00
|
|
|
// SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <array>
|
|
|
|
#include "common/fs/fs.h"
|
|
|
|
#include "common/fs/path_util.h"
|
2023-12-16 18:26:26 +01:00
|
|
|
#include "common/logging/log.h"
|
2023-11-12 08:03:01 +01:00
|
|
|
#include "common/settings.h"
|
|
|
|
#include "common/settings_common.h"
|
|
|
|
#include "common/settings_enums.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/hle/service/acc/profile_manager.h"
|
2024-01-05 03:37:43 +01:00
|
|
|
#include "hid_core/resources/npad/npad.h"
|
2023-11-12 08:03:01 +01:00
|
|
|
#include "network/network.h"
|
|
|
|
|
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
|
2023-11-21 20:51:14 +01:00
|
|
|
#include "common/string_util.h"
|
|
|
|
|
2023-11-12 08:03:01 +01:00
|
|
|
namespace FS = Common::FS;
|
|
|
|
|
|
|
|
Config::Config(const ConfigType config_type)
|
|
|
|
: type(config_type), global{config_type == ConfigType::GlobalConfig} {}
|
|
|
|
|
|
|
|
void Config::Initialize(const std::string& config_name) {
|
|
|
|
const std::filesystem::path fs_config_loc = FS::GetYuzuPath(FS::YuzuPath::ConfigDir);
|
|
|
|
const auto config_file = fmt::format("{}.ini", config_name);
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case ConfigType::GlobalConfig:
|
|
|
|
config_loc = FS::PathToUTF8String(fs_config_loc / config_file);
|
|
|
|
void(FS::CreateParentDir(config_loc));
|
|
|
|
SetUpIni();
|
|
|
|
Reload();
|
|
|
|
break;
|
|
|
|
case ConfigType::PerGameConfig:
|
|
|
|
config_loc = FS::PathToUTF8String(fs_config_loc / "custom" / FS::ToU8String(config_file));
|
|
|
|
void(FS::CreateParentDir(config_loc));
|
|
|
|
SetUpIni();
|
|
|
|
Reload();
|
|
|
|
break;
|
|
|
|
case ConfigType::InputProfile:
|
|
|
|
config_loc = FS::PathToUTF8String(fs_config_loc / "input" / config_file);
|
|
|
|
void(FS::CreateParentDir(config_loc));
|
|
|
|
SetUpIni();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::Initialize(const std::optional<std::string> config_path) {
|
|
|
|
const std::filesystem::path default_sdl_config_path =
|
|
|
|
FS::GetYuzuPath(FS::YuzuPath::ConfigDir) / "sdl2-config.ini";
|
|
|
|
config_loc = config_path.value_or(FS::PathToUTF8String(default_sdl_config_path));
|
|
|
|
void(FS::CreateParentDir(config_loc));
|
|
|
|
SetUpIni();
|
|
|
|
Reload();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::WriteToIni() const {
|
2023-12-16 18:26:26 +01:00
|
|
|
std::string config_type;
|
|
|
|
switch (type) {
|
|
|
|
case ConfigType::GlobalConfig:
|
|
|
|
config_type = "Global";
|
|
|
|
break;
|
|
|
|
case ConfigType::PerGameConfig:
|
|
|
|
config_type = "Game Specific";
|
|
|
|
break;
|
|
|
|
case ConfigType::InputProfile:
|
|
|
|
config_type = "Input Profile";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
LOG_INFO(Config, "Writing {} configuration to: {}", config_type, config_loc);
|
2023-11-21 20:51:14 +01:00
|
|
|
FILE* fp = nullptr;
|
|
|
|
#ifdef _WIN32
|
|
|
|
fp = _wfopen(Common::UTF8ToUTF16W(config_loc).data(), L"wb");
|
|
|
|
#else
|
|
|
|
fp = fopen(config_loc.c_str(), "wb");
|
|
|
|
#endif
|
|
|
|
|
2023-11-23 06:30:49 +01:00
|
|
|
if (fp == nullptr) {
|
|
|
|
LOG_ERROR(Frontend, "Config file could not be saved!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-11-21 20:51:14 +01:00
|
|
|
CSimpleIniA::FileWriter writer(fp);
|
|
|
|
const SI_Error rc = config->Save(writer, false);
|
|
|
|
if (rc < 0) {
|
2023-11-12 08:03:01 +01:00
|
|
|
LOG_ERROR(Frontend, "Config file could not be saved!");
|
|
|
|
}
|
2023-11-21 20:51:14 +01:00
|
|
|
fclose(fp);
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SetUpIni() {
|
|
|
|
config = std::make_unique<CSimpleIniA>();
|
|
|
|
config->SetUnicode(true);
|
|
|
|
config->SetSpaces(false);
|
2023-11-21 20:51:14 +01:00
|
|
|
|
|
|
|
FILE* fp = nullptr;
|
|
|
|
#ifdef _WIN32
|
|
|
|
_wfopen_s(&fp, Common::UTF8ToUTF16W(config_loc).data(), L"rb, ccs=UTF-8");
|
|
|
|
if (fp == nullptr) {
|
|
|
|
fp = _wfopen(Common::UTF8ToUTF16W(config_loc).data(), L"wb, ccs=UTF-8");
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
fp = fopen(config_loc.c_str(), "rb");
|
|
|
|
if (fp == nullptr) {
|
|
|
|
fp = fopen(config_loc.c_str(), "wb");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-11-23 06:30:49 +01:00
|
|
|
if (fp == nullptr) {
|
|
|
|
LOG_ERROR(Frontend, "Config file could not be loaded!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-11-21 20:51:14 +01:00
|
|
|
if (SI_Error rc = config->LoadFile(fp); rc < 0) {
|
|
|
|
LOG_ERROR(Frontend, "Config file could not be loaded!");
|
|
|
|
}
|
|
|
|
fclose(fp);
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Config::IsCustomConfig() const {
|
|
|
|
return type == ConfigType::PerGameConfig;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadPlayerValues(const std::size_t player_index) {
|
|
|
|
std::string player_prefix;
|
|
|
|
if (type != ConfigType::InputProfile) {
|
|
|
|
player_prefix.append("player_").append(ToString(player_index)).append("_");
|
|
|
|
}
|
|
|
|
|
2023-12-16 18:26:26 +01:00
|
|
|
const auto profile_name = ReadStringSetting(std::string(player_prefix).append("profile_name"));
|
|
|
|
|
2023-11-12 08:03:01 +01:00
|
|
|
auto& player = Settings::values.players.GetValue()[player_index];
|
|
|
|
if (IsCustomConfig()) {
|
|
|
|
if (profile_name.empty()) {
|
|
|
|
// Use the global input config
|
|
|
|
player = Settings::values.players.GetValue(true)[player_index];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
player.profile_name = profile_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (player_prefix.empty() && Settings::IsConfiguringGlobal()) {
|
|
|
|
const auto controller = static_cast<Settings::ControllerType>(
|
|
|
|
ReadIntegerSetting(std::string(player_prefix).append("type"),
|
|
|
|
static_cast<u8>(Settings::ControllerType::ProController)));
|
|
|
|
|
|
|
|
if (controller == Settings::ControllerType::LeftJoycon ||
|
|
|
|
controller == Settings::ControllerType::RightJoycon) {
|
|
|
|
player.controller_type = controller;
|
|
|
|
}
|
|
|
|
} else {
|
2023-12-16 18:26:26 +01:00
|
|
|
if (global) {
|
|
|
|
auto& player_global = Settings::values.players.GetValue(true)[player_index];
|
|
|
|
player_global.profile_name = profile_name;
|
|
|
|
}
|
2023-11-12 08:03:01 +01:00
|
|
|
std::string connected_key = player_prefix;
|
|
|
|
player.connected = ReadBooleanSetting(connected_key.append("connected"),
|
|
|
|
std::make_optional(player_index == 0));
|
|
|
|
|
|
|
|
player.controller_type = static_cast<Settings::ControllerType>(
|
|
|
|
ReadIntegerSetting(std::string(player_prefix).append("type"),
|
|
|
|
static_cast<u8>(Settings::ControllerType::ProController)));
|
|
|
|
|
|
|
|
player.vibration_enabled = ReadBooleanSetting(
|
|
|
|
std::string(player_prefix).append("vibration_enabled"), std::make_optional(true));
|
|
|
|
|
|
|
|
player.vibration_strength = static_cast<int>(
|
|
|
|
ReadIntegerSetting(std::string(player_prefix).append("vibration_strength"), 100));
|
|
|
|
|
|
|
|
player.body_color_left = static_cast<u32>(ReadIntegerSetting(
|
|
|
|
std::string(player_prefix).append("body_color_left"), Settings::JOYCON_BODY_NEON_BLUE));
|
|
|
|
player.body_color_right = static_cast<u32>(ReadIntegerSetting(
|
|
|
|
std::string(player_prefix).append("body_color_right"), Settings::JOYCON_BODY_NEON_RED));
|
|
|
|
player.button_color_left = static_cast<u32>(
|
|
|
|
ReadIntegerSetting(std::string(player_prefix).append("button_color_left"),
|
|
|
|
Settings::JOYCON_BUTTONS_NEON_BLUE));
|
|
|
|
player.button_color_right = static_cast<u32>(
|
|
|
|
ReadIntegerSetting(std::string(player_prefix).append("button_color_right"),
|
|
|
|
Settings::JOYCON_BUTTONS_NEON_RED));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadTouchscreenValues() {
|
|
|
|
Settings::values.touchscreen.enabled =
|
|
|
|
ReadBooleanSetting(std::string("touchscreen_enabled"), std::make_optional(true));
|
|
|
|
Settings::values.touchscreen.rotation_angle =
|
|
|
|
static_cast<u32>(ReadIntegerSetting(std::string("touchscreen_angle"), 0));
|
|
|
|
Settings::values.touchscreen.diameter_x =
|
2024-01-16 19:17:18 +01:00
|
|
|
static_cast<u32>(ReadIntegerSetting(std::string("touchscreen_diameter_x"), 90));
|
2023-11-12 08:03:01 +01:00
|
|
|
Settings::values.touchscreen.diameter_y =
|
2024-01-16 19:17:18 +01:00
|
|
|
static_cast<u32>(ReadIntegerSetting(std::string("touchscreen_diameter_y"), 90));
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadAudioValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Audio));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Audio);
|
|
|
|
ReadCategory(Settings::Category::UiAudio);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadControlValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Controls));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Controls);
|
|
|
|
|
|
|
|
Settings::values.players.SetGlobal(!IsCustomConfig());
|
|
|
|
for (std::size_t p = 0; p < Settings::values.players.GetValue().size(); ++p) {
|
|
|
|
ReadPlayerValues(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disable docked mode if handheld is selected
|
|
|
|
const auto controller_type = Settings::values.players.GetValue()[0].controller_type;
|
|
|
|
if (controller_type == Settings::ControllerType::Handheld) {
|
|
|
|
Settings::values.use_docked_mode.SetGlobal(!IsCustomConfig());
|
|
|
|
Settings::values.use_docked_mode.SetValue(Settings::ConsoleMode::Handheld);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsCustomConfig()) {
|
|
|
|
EndGroup();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ReadTouchscreenValues();
|
|
|
|
ReadMotionTouchValues();
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadMotionTouchValues() {
|
2023-12-11 02:12:05 +01:00
|
|
|
Settings::values.touch_from_button_maps.clear();
|
2023-11-12 08:03:01 +01:00
|
|
|
int num_touch_from_button_maps = BeginArray(std::string("touch_from_button_maps"));
|
|
|
|
|
|
|
|
if (num_touch_from_button_maps > 0) {
|
|
|
|
for (int i = 0; i < num_touch_from_button_maps; ++i) {
|
|
|
|
SetArrayIndex(i);
|
|
|
|
|
|
|
|
Settings::TouchFromButtonMap map;
|
|
|
|
map.name = ReadStringSetting(std::string("name"), std::string("default"));
|
|
|
|
|
|
|
|
const int num_touch_maps = BeginArray(std::string("entries"));
|
|
|
|
map.buttons.reserve(num_touch_maps);
|
|
|
|
for (int j = 0; j < num_touch_maps; j++) {
|
|
|
|
SetArrayIndex(j);
|
|
|
|
std::string touch_mapping = ReadStringSetting(std::string("bind"));
|
|
|
|
map.buttons.emplace_back(std::move(touch_mapping));
|
|
|
|
}
|
|
|
|
EndArray(); // entries
|
|
|
|
Settings::values.touch_from_button_maps.emplace_back(std::move(map));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Settings::values.touch_from_button_maps.emplace_back(
|
|
|
|
Settings::TouchFromButtonMap{"default", {}});
|
|
|
|
num_touch_from_button_maps = 1;
|
|
|
|
}
|
|
|
|
EndArray(); // touch_from_button_maps
|
|
|
|
|
|
|
|
Settings::values.touch_from_button_map_index = std::clamp(
|
|
|
|
Settings::values.touch_from_button_map_index.GetValue(), 0, num_touch_from_button_maps - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadCoreValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Core));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Core);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadDataStorageValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::DataStorage));
|
|
|
|
|
|
|
|
FS::SetYuzuPath(FS::YuzuPath::NANDDir, ReadStringSetting(std::string("nand_directory")));
|
|
|
|
FS::SetYuzuPath(FS::YuzuPath::SDMCDir, ReadStringSetting(std::string("sdmc_directory")));
|
|
|
|
FS::SetYuzuPath(FS::YuzuPath::LoadDir, ReadStringSetting(std::string("load_directory")));
|
|
|
|
FS::SetYuzuPath(FS::YuzuPath::DumpDir, ReadStringSetting(std::string("dump_directory")));
|
|
|
|
FS::SetYuzuPath(FS::YuzuPath::TASDir, ReadStringSetting(std::string("tas_directory")));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::DataStorage);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadDebuggingValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Debugging));
|
|
|
|
|
|
|
|
// Intentionally not using the QT default setting as this is intended to be changed in the ini
|
|
|
|
Settings::values.record_frame_times =
|
|
|
|
ReadBooleanSetting(std::string("record_frame_times"), std::make_optional(false));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Debugging);
|
|
|
|
ReadCategory(Settings::Category::DebuggingGraphics);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
2024-01-02 19:58:25 +01:00
|
|
|
#ifdef __unix__
|
|
|
|
void Config::ReadLinuxValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Linux));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Linux);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-11-12 08:03:01 +01:00
|
|
|
void Config::ReadServiceValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Services));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Services);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadDisabledAddOnValues() {
|
|
|
|
// Custom config section
|
|
|
|
BeginGroup(std::string("DisabledAddOns"));
|
|
|
|
|
|
|
|
const int size = BeginArray(std::string(""));
|
|
|
|
for (int i = 0; i < size; ++i) {
|
|
|
|
SetArrayIndex(i);
|
2023-11-22 02:46:27 +01:00
|
|
|
const auto title_id = ReadUnsignedIntegerSetting(std::string("title_id"), 0);
|
2023-11-12 08:03:01 +01:00
|
|
|
std::vector<std::string> out;
|
|
|
|
const int d_size = BeginArray("disabled");
|
|
|
|
for (int j = 0; j < d_size; ++j) {
|
|
|
|
SetArrayIndex(j);
|
|
|
|
out.push_back(ReadStringSetting(std::string("d"), std::string("")));
|
|
|
|
}
|
|
|
|
EndArray(); // d
|
|
|
|
Settings::values.disabled_addons.insert_or_assign(title_id, out);
|
|
|
|
}
|
|
|
|
EndArray(); // Base disabled addons array - Has no base key
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadMiscellaneousValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Miscellaneous));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Miscellaneous);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadCpuValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Cpu));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Cpu);
|
|
|
|
ReadCategory(Settings::Category::CpuDebug);
|
|
|
|
ReadCategory(Settings::Category::CpuUnsafe);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadRendererValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Renderer));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Renderer);
|
|
|
|
ReadCategory(Settings::Category::RendererAdvanced);
|
|
|
|
ReadCategory(Settings::Category::RendererDebug);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadScreenshotValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Screenshots));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Screenshots);
|
|
|
|
FS::SetYuzuPath(FS::YuzuPath::ScreenshotsDir,
|
2023-11-23 06:36:45 +01:00
|
|
|
ReadStringSetting(std::string("screenshot_path")));
|
2023-11-12 08:03:01 +01:00
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadSystemValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::System));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::System);
|
|
|
|
ReadCategory(Settings::Category::SystemAudio);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadWebServiceValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::WebService));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::WebService);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadNetworkValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Services));
|
|
|
|
|
|
|
|
ReadCategory(Settings::Category::Network);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadValues() {
|
|
|
|
if (global) {
|
|
|
|
ReadDataStorageValues();
|
|
|
|
ReadDebuggingValues();
|
|
|
|
ReadDisabledAddOnValues();
|
|
|
|
ReadNetworkValues();
|
|
|
|
ReadServiceValues();
|
|
|
|
ReadWebServiceValues();
|
|
|
|
ReadMiscellaneousValues();
|
|
|
|
}
|
|
|
|
ReadControlValues();
|
|
|
|
ReadCoreValues();
|
|
|
|
ReadCpuValues();
|
2024-01-02 19:58:25 +01:00
|
|
|
#ifdef __unix__
|
|
|
|
ReadLinuxValues();
|
|
|
|
#endif
|
2023-11-12 08:03:01 +01:00
|
|
|
ReadRendererValues();
|
|
|
|
ReadAudioValues();
|
|
|
|
ReadSystemValues();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SavePlayerValues(const std::size_t player_index) {
|
|
|
|
std::string player_prefix;
|
|
|
|
if (type != ConfigType::InputProfile) {
|
|
|
|
player_prefix = std::string("player_").append(ToString(player_index)).append("_");
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto& player = Settings::values.players.GetValue()[player_index];
|
|
|
|
if (IsCustomConfig()) {
|
|
|
|
if (player.profile_name.empty()) {
|
|
|
|
// No custom profile selected
|
|
|
|
return;
|
|
|
|
}
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteStringSetting(std::string(player_prefix).append("profile_name"), player.profile_name,
|
|
|
|
std::make_optional(std::string("")));
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteIntegerSetting(
|
|
|
|
std::string(player_prefix).append("type"), static_cast<u8>(player.controller_type),
|
|
|
|
std::make_optional(static_cast<u8>(Settings::ControllerType::ProController)));
|
2023-11-12 08:03:01 +01:00
|
|
|
|
|
|
|
if (!player_prefix.empty() || !Settings::IsConfiguringGlobal()) {
|
2023-12-16 18:26:26 +01:00
|
|
|
if (global) {
|
|
|
|
const auto& player_global = Settings::values.players.GetValue(true)[player_index];
|
|
|
|
WriteStringSetting(std::string(player_prefix).append("profile_name"),
|
|
|
|
player_global.profile_name, std::make_optional(std::string("")));
|
|
|
|
}
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteBooleanSetting(std::string(player_prefix).append("connected"), player.connected,
|
|
|
|
std::make_optional(player_index == 0));
|
|
|
|
WriteIntegerSetting(std::string(player_prefix).append("vibration_enabled"),
|
|
|
|
player.vibration_enabled, std::make_optional(true));
|
|
|
|
WriteIntegerSetting(std::string(player_prefix).append("vibration_strength"),
|
|
|
|
player.vibration_strength, std::make_optional(100));
|
|
|
|
WriteIntegerSetting(std::string(player_prefix).append("body_color_left"),
|
|
|
|
player.body_color_left,
|
|
|
|
std::make_optional(Settings::JOYCON_BODY_NEON_BLUE));
|
|
|
|
WriteIntegerSetting(std::string(player_prefix).append("body_color_right"),
|
|
|
|
player.body_color_right,
|
|
|
|
std::make_optional(Settings::JOYCON_BODY_NEON_RED));
|
|
|
|
WriteIntegerSetting(std::string(player_prefix).append("button_color_left"),
|
|
|
|
player.button_color_left,
|
|
|
|
std::make_optional(Settings::JOYCON_BUTTONS_NEON_BLUE));
|
|
|
|
WriteIntegerSetting(std::string(player_prefix).append("button_color_right"),
|
|
|
|
player.button_color_right,
|
|
|
|
std::make_optional(Settings::JOYCON_BUTTONS_NEON_RED));
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveTouchscreenValues() {
|
|
|
|
const auto& touchscreen = Settings::values.touchscreen;
|
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteBooleanSetting(std::string("touchscreen_enabled"), touchscreen.enabled,
|
|
|
|
std::make_optional(true));
|
2023-11-12 08:03:01 +01:00
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteIntegerSetting(std::string("touchscreen_angle"), touchscreen.rotation_angle,
|
|
|
|
std::make_optional(static_cast<u32>(0)));
|
|
|
|
WriteIntegerSetting(std::string("touchscreen_diameter_x"), touchscreen.diameter_x,
|
2024-01-16 19:17:18 +01:00
|
|
|
std::make_optional(static_cast<u32>(90)));
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteIntegerSetting(std::string("touchscreen_diameter_y"), touchscreen.diameter_y,
|
2024-01-16 19:17:18 +01:00
|
|
|
std::make_optional(static_cast<u32>(90)));
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveMotionTouchValues() {
|
|
|
|
BeginArray(std::string("touch_from_button_maps"));
|
|
|
|
for (std::size_t p = 0; p < Settings::values.touch_from_button_maps.size(); ++p) {
|
|
|
|
SetArrayIndex(static_cast<int>(p));
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteStringSetting(std::string("name"), Settings::values.touch_from_button_maps[p].name,
|
|
|
|
std::make_optional(std::string("default")));
|
2023-11-12 08:03:01 +01:00
|
|
|
|
|
|
|
BeginArray(std::string("entries"));
|
|
|
|
for (std::size_t q = 0; q < Settings::values.touch_from_button_maps[p].buttons.size();
|
|
|
|
++q) {
|
|
|
|
SetArrayIndex(static_cast<int>(q));
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteStringSetting(std::string("bind"),
|
|
|
|
Settings::values.touch_from_button_maps[p].buttons[q]);
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
EndArray(); // entries
|
|
|
|
}
|
|
|
|
EndArray(); // touch_from_button_maps
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveValues() {
|
|
|
|
if (global) {
|
2023-12-16 18:26:26 +01:00
|
|
|
LOG_DEBUG(Config, "Saving global generic configuration values");
|
2023-11-12 08:03:01 +01:00
|
|
|
SaveDataStorageValues();
|
|
|
|
SaveDebuggingValues();
|
|
|
|
SaveDisabledAddOnValues();
|
|
|
|
SaveNetworkValues();
|
|
|
|
SaveWebServiceValues();
|
|
|
|
SaveMiscellaneousValues();
|
2023-12-16 18:26:26 +01:00
|
|
|
} else {
|
|
|
|
LOG_DEBUG(Config, "Saving only generic configuration values");
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
SaveControlValues();
|
|
|
|
SaveCoreValues();
|
|
|
|
SaveCpuValues();
|
2024-01-02 19:58:25 +01:00
|
|
|
#ifdef __unix__
|
|
|
|
SaveLinuxValues();
|
|
|
|
#endif
|
2023-11-12 08:03:01 +01:00
|
|
|
SaveRendererValues();
|
|
|
|
SaveAudioValues();
|
|
|
|
SaveSystemValues();
|
|
|
|
|
|
|
|
WriteToIni();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveAudioValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Audio));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Audio);
|
|
|
|
WriteCategory(Settings::Category::UiAudio);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveControlValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Controls));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Controls);
|
|
|
|
|
|
|
|
Settings::values.players.SetGlobal(!IsCustomConfig());
|
|
|
|
for (std::size_t p = 0; p < Settings::values.players.GetValue().size(); ++p) {
|
|
|
|
SavePlayerValues(p);
|
|
|
|
}
|
|
|
|
if (IsCustomConfig()) {
|
|
|
|
EndGroup();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SaveTouchscreenValues();
|
|
|
|
SaveMotionTouchValues();
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveCoreValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Core));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Core);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveDataStorageValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::DataStorage));
|
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteStringSetting(std::string("nand_directory"), FS::GetYuzuPathString(FS::YuzuPath::NANDDir),
|
|
|
|
std::make_optional(FS::GetYuzuPathString(FS::YuzuPath::NANDDir)));
|
|
|
|
WriteStringSetting(std::string("sdmc_directory"), FS::GetYuzuPathString(FS::YuzuPath::SDMCDir),
|
|
|
|
std::make_optional(FS::GetYuzuPathString(FS::YuzuPath::SDMCDir)));
|
|
|
|
WriteStringSetting(std::string("load_directory"), FS::GetYuzuPathString(FS::YuzuPath::LoadDir),
|
|
|
|
std::make_optional(FS::GetYuzuPathString(FS::YuzuPath::LoadDir)));
|
|
|
|
WriteStringSetting(std::string("dump_directory"), FS::GetYuzuPathString(FS::YuzuPath::DumpDir),
|
|
|
|
std::make_optional(FS::GetYuzuPathString(FS::YuzuPath::DumpDir)));
|
|
|
|
WriteStringSetting(std::string("tas_directory"), FS::GetYuzuPathString(FS::YuzuPath::TASDir),
|
|
|
|
std::make_optional(FS::GetYuzuPathString(FS::YuzuPath::TASDir)));
|
2023-11-12 08:03:01 +01:00
|
|
|
|
|
|
|
WriteCategory(Settings::Category::DataStorage);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveDebuggingValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Debugging));
|
|
|
|
|
|
|
|
// Intentionally not using the QT default setting as this is intended to be changed in the ini
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteBooleanSetting(std::string("record_frame_times"), Settings::values.record_frame_times);
|
2023-11-12 08:03:01 +01:00
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Debugging);
|
|
|
|
WriteCategory(Settings::Category::DebuggingGraphics);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
2024-01-02 19:58:25 +01:00
|
|
|
#ifdef __unix__
|
|
|
|
void Config::SaveLinuxValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Linux));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Linux);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-11-12 08:03:01 +01:00
|
|
|
void Config::SaveNetworkValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Services));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Network);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveDisabledAddOnValues() {
|
|
|
|
// Custom config section
|
|
|
|
BeginGroup(std::string("DisabledAddOns"));
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
BeginArray(std::string(""));
|
|
|
|
for (const auto& elem : Settings::values.disabled_addons) {
|
|
|
|
SetArrayIndex(i);
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteIntegerSetting(std::string("title_id"), elem.first,
|
|
|
|
std::make_optional(static_cast<u64>(0)));
|
2023-11-12 08:03:01 +01:00
|
|
|
BeginArray(std::string("disabled"));
|
|
|
|
for (std::size_t j = 0; j < elem.second.size(); ++j) {
|
|
|
|
SetArrayIndex(static_cast<int>(j));
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteStringSetting(std::string("d"), elem.second[j],
|
|
|
|
std::make_optional(std::string("")));
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
EndArray(); // disabled
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
EndArray(); // Base disabled addons array - Has no base key
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveMiscellaneousValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Miscellaneous));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Miscellaneous);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveCpuValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Cpu));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Cpu);
|
|
|
|
WriteCategory(Settings::Category::CpuDebug);
|
|
|
|
WriteCategory(Settings::Category::CpuUnsafe);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveRendererValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Renderer));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::Renderer);
|
|
|
|
WriteCategory(Settings::Category::RendererAdvanced);
|
|
|
|
WriteCategory(Settings::Category::RendererDebug);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveScreenshotValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::Screenshots));
|
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteStringSetting(std::string("screenshot_path"),
|
|
|
|
FS::GetYuzuPathString(FS::YuzuPath::ScreenshotsDir));
|
2023-11-12 08:03:01 +01:00
|
|
|
WriteCategory(Settings::Category::Screenshots);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveSystemValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::System));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::System);
|
|
|
|
WriteCategory(Settings::Category::SystemAudio);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SaveWebServiceValues() {
|
|
|
|
BeginGroup(Settings::TranslateCategory(Settings::Category::WebService));
|
|
|
|
|
|
|
|
WriteCategory(Settings::Category::WebService);
|
|
|
|
|
|
|
|
EndGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Config::ReadBooleanSetting(const std::string& key, const std::optional<bool> default_value) {
|
|
|
|
std::string full_key = GetFullKey(key, false);
|
|
|
|
if (!default_value.has_value()) {
|
|
|
|
return config->GetBoolValue(GetSection().c_str(), full_key.c_str(), false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->GetBoolValue(GetSection().c_str(),
|
|
|
|
std::string(full_key).append("\\default").c_str(), false)) {
|
|
|
|
return static_cast<bool>(default_value.value());
|
|
|
|
} else {
|
|
|
|
return config->GetBoolValue(GetSection().c_str(), full_key.c_str(),
|
|
|
|
static_cast<bool>(default_value.value()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s64 Config::ReadIntegerSetting(const std::string& key, const std::optional<s64> default_value) {
|
|
|
|
std::string full_key = GetFullKey(key, false);
|
|
|
|
if (!default_value.has_value()) {
|
|
|
|
try {
|
|
|
|
return std::stoll(
|
|
|
|
std::string(config->GetValue(GetSection().c_str(), full_key.c_str(), "0")));
|
|
|
|
} catch (...) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s64 result = 0;
|
|
|
|
if (config->GetBoolValue(GetSection().c_str(),
|
|
|
|
std::string(full_key).append("\\default").c_str(), true)) {
|
|
|
|
result = default_value.value();
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
result = std::stoll(std::string(config->GetValue(
|
|
|
|
GetSection().c_str(), full_key.c_str(), ToString(default_value.value()).c_str())));
|
|
|
|
} catch (...) {
|
|
|
|
result = default_value.value();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-11-22 02:46:27 +01:00
|
|
|
u64 Config::ReadUnsignedIntegerSetting(const std::string& key,
|
|
|
|
const std::optional<u64> default_value) {
|
|
|
|
std::string full_key = GetFullKey(key, false);
|
|
|
|
if (!default_value.has_value()) {
|
|
|
|
try {
|
|
|
|
return std::stoull(
|
|
|
|
std::string(config->GetValue(GetSection().c_str(), full_key.c_str(), "0")));
|
|
|
|
} catch (...) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 result = 0;
|
|
|
|
if (config->GetBoolValue(GetSection().c_str(),
|
|
|
|
std::string(full_key).append("\\default").c_str(), true)) {
|
|
|
|
result = default_value.value();
|
|
|
|
} else {
|
|
|
|
try {
|
|
|
|
result = std::stoull(std::string(config->GetValue(
|
|
|
|
GetSection().c_str(), full_key.c_str(), ToString(default_value.value()).c_str())));
|
|
|
|
} catch (...) {
|
|
|
|
result = default_value.value();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-11-12 08:03:01 +01:00
|
|
|
double Config::ReadDoubleSetting(const std::string& key,
|
|
|
|
const std::optional<double> default_value) {
|
|
|
|
std::string full_key = GetFullKey(key, false);
|
|
|
|
if (!default_value.has_value()) {
|
|
|
|
return config->GetDoubleValue(GetSection().c_str(), full_key.c_str(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
double result;
|
|
|
|
if (config->GetBoolValue(GetSection().c_str(),
|
|
|
|
std::string(full_key).append("\\default").c_str(), true)) {
|
|
|
|
result = default_value.value();
|
|
|
|
} else {
|
|
|
|
result =
|
|
|
|
config->GetDoubleValue(GetSection().c_str(), full_key.c_str(), default_value.value());
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Config::ReadStringSetting(const std::string& key,
|
|
|
|
const std::optional<std::string> default_value) {
|
|
|
|
std::string result;
|
|
|
|
std::string full_key = GetFullKey(key, false);
|
|
|
|
if (!default_value.has_value()) {
|
|
|
|
result = config->GetValue(GetSection().c_str(), full_key.c_str(), "");
|
|
|
|
boost::replace_all(result, "\"", "");
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->GetBoolValue(GetSection().c_str(),
|
|
|
|
std::string(full_key).append("\\default").c_str(), true)) {
|
|
|
|
result = default_value.value();
|
|
|
|
} else {
|
|
|
|
result =
|
|
|
|
config->GetValue(GetSection().c_str(), full_key.c_str(), default_value.value().c_str());
|
|
|
|
}
|
|
|
|
boost::replace_all(result, "\"", "");
|
|
|
|
boost::replace_all(result, "//", "/");
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Config::Exists(const std::string& section, const std::string& key) const {
|
|
|
|
const std::string value = config->GetValue(section.c_str(), key.c_str(), "");
|
|
|
|
return !value.empty();
|
|
|
|
}
|
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
void Config::WriteBooleanSetting(const std::string& key, const bool& value,
|
|
|
|
const std::optional<bool>& default_value,
|
|
|
|
const std::optional<bool>& use_global) {
|
|
|
|
std::optional<std::string> string_default = std::nullopt;
|
|
|
|
if (default_value.has_value()) {
|
|
|
|
string_default = std::make_optional(ToString(default_value.value()));
|
|
|
|
}
|
|
|
|
WritePreparedSetting(key, AdjustOutputString(ToString(value)), string_default, use_global);
|
|
|
|
}
|
2023-11-12 08:03:01 +01:00
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
void Config::WriteDoubleSetting(const std::string& key, const double& value,
|
|
|
|
const std::optional<double>& default_value,
|
|
|
|
const std::optional<bool>& use_global) {
|
|
|
|
std::optional<std::string> string_default = std::nullopt;
|
|
|
|
if (default_value.has_value()) {
|
|
|
|
string_default = std::make_optional(ToString(default_value.value()));
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
2023-12-29 05:24:23 +01:00
|
|
|
WritePreparedSetting(key, AdjustOutputString(ToString(value)), string_default, use_global);
|
|
|
|
}
|
2023-11-12 08:03:01 +01:00
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
void Config::WriteStringSetting(const std::string& key, const std::string& value,
|
|
|
|
const std::optional<std::string>& default_value,
|
|
|
|
const std::optional<bool>& use_global) {
|
|
|
|
std::optional string_default = default_value;
|
|
|
|
if (default_value.has_value()) {
|
|
|
|
string_default.value().append(AdjustOutputString(default_value.value()));
|
|
|
|
}
|
|
|
|
WritePreparedSetting(key, AdjustOutputString(value), string_default, use_global);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::WritePreparedSetting(const std::string& key, const std::string& adjusted_value,
|
|
|
|
const std::optional<std::string>& adjusted_default_value,
|
|
|
|
const std::optional<bool>& use_global) {
|
|
|
|
std::string full_key = GetFullKey(key, false);
|
|
|
|
if (adjusted_default_value.has_value() && use_global.has_value()) {
|
2023-11-12 08:03:01 +01:00
|
|
|
if (!global) {
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteString(std::string(full_key).append("\\global"), ToString(use_global.value()));
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
if (global || use_global.value() == false) {
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteString(std::string(full_key).append("\\default"),
|
|
|
|
ToString(adjusted_default_value == adjusted_value));
|
|
|
|
WriteString(full_key, adjusted_value);
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
2023-12-29 05:24:23 +01:00
|
|
|
} else if (adjusted_default_value.has_value() && !use_global.has_value()) {
|
|
|
|
WriteString(std::string(full_key).append("\\default"),
|
|
|
|
ToString(adjusted_default_value == adjusted_value));
|
|
|
|
WriteString(full_key, adjusted_value);
|
2023-11-12 08:03:01 +01:00
|
|
|
} else {
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteString(full_key, adjusted_value);
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-29 05:24:23 +01:00
|
|
|
void Config::WriteString(const std::string& key, const std::string& value) {
|
2023-11-12 08:03:01 +01:00
|
|
|
config->SetValue(GetSection().c_str(), key.c_str(), value.c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::Reload() {
|
|
|
|
ReadValues();
|
|
|
|
// To apply default value changes
|
|
|
|
SaveValues();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ClearControlPlayerValues() const {
|
|
|
|
// If key is an empty string, all keys in the current group() are removed.
|
|
|
|
const char* section = Settings::TranslateCategory(Settings::Category::Controls);
|
|
|
|
CSimpleIniA::TNamesDepend keys;
|
|
|
|
config->GetAllKeys(section, keys);
|
|
|
|
for (const auto& key : keys) {
|
|
|
|
if (std::string(config->GetValue(section, key.pItem)).empty()) {
|
|
|
|
config->Delete(section, key.pItem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& Config::GetConfigFilePath() const {
|
|
|
|
return config_loc;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadCategory(const Settings::Category category) {
|
|
|
|
const auto& settings = FindRelevantList(category);
|
|
|
|
std::ranges::for_each(settings, [&](const auto& setting) { ReadSettingGeneric(setting); });
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::WriteCategory(const Settings::Category category) {
|
|
|
|
const auto& settings = FindRelevantList(category);
|
|
|
|
std::ranges::for_each(settings, [&](const auto& setting) { WriteSettingGeneric(setting); });
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::ReadSettingGeneric(Settings::BasicSetting* const setting) {
|
|
|
|
if (!setting->Save() || (!setting->Switchable() && !global)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string key = AdjustKey(setting->GetLabel());
|
|
|
|
const std::string default_value(setting->DefaultToString());
|
|
|
|
|
|
|
|
bool use_global = true;
|
|
|
|
if (setting->Switchable() && !global) {
|
|
|
|
use_global =
|
|
|
|
ReadBooleanSetting(std::string(key).append("\\use_global"), std::make_optional(true));
|
|
|
|
setting->SetGlobal(use_global);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (global || !use_global) {
|
|
|
|
const bool is_default =
|
|
|
|
ReadBooleanSetting(std::string(key).append("\\default"), std::make_optional(true));
|
|
|
|
if (!is_default) {
|
|
|
|
const std::string setting_string = ReadStringSetting(key, default_value);
|
|
|
|
setting->LoadString(setting_string);
|
|
|
|
} else {
|
|
|
|
// Empty string resets the Setting to default
|
|
|
|
setting->LoadString("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::WriteSettingGeneric(const Settings::BasicSetting* const setting) {
|
|
|
|
if (!setting->Save()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string key = AdjustKey(setting->GetLabel());
|
|
|
|
if (setting->Switchable()) {
|
|
|
|
if (!global) {
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteBooleanSetting(std::string(key).append("\\use_global"), setting->UsingGlobal());
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
if (global || !setting->UsingGlobal()) {
|
2024-01-04 04:16:54 +01:00
|
|
|
auto value = global ? setting->ToStringGlobal() : setting->ToString();
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteBooleanSetting(std::string(key).append("\\default"),
|
2024-01-04 04:16:54 +01:00
|
|
|
value == setting->DefaultToString());
|
|
|
|
WriteStringSetting(key, value);
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
} else if (global) {
|
2023-12-29 05:24:23 +01:00
|
|
|
WriteBooleanSetting(std::string(key).append("\\default"),
|
|
|
|
setting->ToString() == setting->DefaultToString());
|
|
|
|
WriteStringSetting(key, setting->ToString());
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::BeginGroup(const std::string& group) {
|
|
|
|
// You can't begin a group while reading/writing from a config array
|
|
|
|
ASSERT(array_stack.empty());
|
|
|
|
|
|
|
|
key_stack.push_back(AdjustKey(group));
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::EndGroup() {
|
|
|
|
// You can't end a group if you haven't started one yet
|
|
|
|
ASSERT(!key_stack.empty());
|
|
|
|
|
|
|
|
// You can't end a group when reading/writing from a config array
|
|
|
|
ASSERT(array_stack.empty());
|
|
|
|
|
|
|
|
key_stack.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Config::GetSection() {
|
|
|
|
if (key_stack.empty()) {
|
|
|
|
return std::string{""};
|
|
|
|
}
|
|
|
|
|
|
|
|
return key_stack.front();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Config::GetGroup() const {
|
|
|
|
if (key_stack.size() <= 1) {
|
|
|
|
return std::string{""};
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string key;
|
|
|
|
for (size_t i = 1; i < key_stack.size(); ++i) {
|
|
|
|
key.append(key_stack[i]).append("\\");
|
|
|
|
}
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Config::AdjustKey(const std::string& key) {
|
|
|
|
std::string adjusted_key(key);
|
|
|
|
boost::replace_all(adjusted_key, "/", "\\");
|
|
|
|
boost::replace_all(adjusted_key, " ", "%20");
|
|
|
|
return adjusted_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Config::AdjustOutputString(const std::string& string) {
|
|
|
|
std::string adjusted_string(string);
|
|
|
|
boost::replace_all(adjusted_string, "\\", "/");
|
2023-11-19 18:24:43 +01:00
|
|
|
|
|
|
|
// Windows requires that two forward slashes are used at the start of a path for unmapped
|
|
|
|
// network drives so we have to watch for that here
|
2023-11-27 20:56:25 +01:00
|
|
|
#ifndef ANDROID
|
2023-11-19 18:24:43 +01:00
|
|
|
if (string.substr(0, 2) == "//") {
|
|
|
|
boost::replace_all(adjusted_string, "//", "/");
|
|
|
|
adjusted_string.insert(0, "/");
|
|
|
|
} else {
|
|
|
|
boost::replace_all(adjusted_string, "//", "/");
|
|
|
|
}
|
2023-11-27 20:56:25 +01:00
|
|
|
#endif
|
2023-11-12 08:03:01 +01:00
|
|
|
|
|
|
|
// Needed for backwards compatibility with QSettings deserialization
|
|
|
|
for (const auto& special_character : special_characters) {
|
|
|
|
if (adjusted_string.find(special_character) != std::string::npos) {
|
|
|
|
adjusted_string.insert(0, "\"");
|
|
|
|
adjusted_string.append("\"");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return adjusted_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Config::GetFullKey(const std::string& key, bool skipArrayIndex) {
|
|
|
|
if (array_stack.empty()) {
|
|
|
|
return std::string(GetGroup()).append(AdjustKey(key));
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string array_key;
|
|
|
|
for (size_t i = 0; i < array_stack.size(); ++i) {
|
|
|
|
if (!array_stack[i].name.empty()) {
|
|
|
|
array_key.append(array_stack[i].name).append("\\");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!skipArrayIndex || (array_stack.size() - 1 != i && array_stack.size() > 1)) {
|
|
|
|
array_key.append(ToString(array_stack[i].index)).append("\\");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::string final_key = std::string(GetGroup()).append(array_key).append(AdjustKey(key));
|
|
|
|
return final_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
int Config::BeginArray(const std::string& array) {
|
|
|
|
array_stack.push_back(ConfigArray{AdjustKey(array), 0, 0});
|
|
|
|
const int size = config->GetLongValue(GetSection().c_str(),
|
|
|
|
GetFullKey(std::string("size"), true).c_str(), 0);
|
|
|
|
array_stack.back().size = size;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::EndArray() {
|
|
|
|
// You can't end a config array before starting one
|
|
|
|
ASSERT(!array_stack.empty());
|
|
|
|
|
2023-11-21 21:14:41 +01:00
|
|
|
// Set the array size to 0 if the array is ended without changing the index
|
|
|
|
int size = 0;
|
|
|
|
if (array_stack.back().index != 0) {
|
|
|
|
size = array_stack.back().size;
|
|
|
|
}
|
|
|
|
|
2023-11-12 08:03:01 +01:00
|
|
|
// Write out the size to config
|
|
|
|
if (key_stack.size() == 1 && array_stack.back().name.empty()) {
|
|
|
|
// Edge-case where the first array created doesn't have a name
|
2023-11-21 21:14:41 +01:00
|
|
|
config->SetValue(GetSection().c_str(), std::string("size").c_str(), ToString(size).c_str());
|
2023-11-12 08:03:01 +01:00
|
|
|
} else {
|
|
|
|
const auto key = GetFullKey(std::string("size"), true);
|
2023-11-21 21:14:41 +01:00
|
|
|
config->SetValue(GetSection().c_str(), key.c_str(), ToString(size).c_str());
|
2023-11-12 08:03:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
array_stack.pop_back();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Config::SetArrayIndex(const int index) {
|
|
|
|
// You can't set the array index if you haven't started one yet
|
|
|
|
ASSERT(!array_stack.empty());
|
|
|
|
|
|
|
|
const int array_index = index + 1;
|
|
|
|
|
|
|
|
// You can't exceed the known max size of the array by more than 1
|
|
|
|
ASSERT(array_stack.front().size + 1 >= array_index);
|
|
|
|
|
|
|
|
// Change the config array size to the current index since you may want
|
|
|
|
// to reduce the number of elements that you read back from the config
|
|
|
|
// in the future.
|
|
|
|
array_stack.back().size = array_index;
|
|
|
|
array_stack.back().index = array_index;
|
|
|
|
}
|