2021-04-15 06:05:28 +04:00
|
|
|
// Copyright 2021 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <string_view>
|
|
|
|
|
|
|
|
#include "common/assert.h"
|
2021-05-08 11:49:31 +04:00
|
|
|
#include "common/fs/path_util.h"
|
2021-04-15 06:05:28 +04:00
|
|
|
#include "common/logging/log.h"
|
|
|
|
#include "common/settings.h"
|
|
|
|
|
|
|
|
namespace Settings {
|
|
|
|
|
|
|
|
Values values = {};
|
|
|
|
static bool configuring_global = true;
|
|
|
|
|
|
|
|
std::string GetTimeZoneString() {
|
|
|
|
static constexpr std::array timezones{
|
|
|
|
"auto", "default", "CET", "CST6CDT", "Cuba", "EET", "Egypt", "Eire",
|
|
|
|
"EST", "EST5EDT", "GB", "GB-Eire", "GMT", "GMT+0", "GMT-0", "GMT0",
|
|
|
|
"Greenwich", "Hongkong", "HST", "Iceland", "Iran", "Israel", "Jamaica", "Japan",
|
|
|
|
"Kwajalein", "Libya", "MET", "MST", "MST7MDT", "Navajo", "NZ", "NZ-CHAT",
|
|
|
|
"Poland", "Portugal", "PRC", "PST8PDT", "ROC", "ROK", "Singapore", "Turkey",
|
|
|
|
"UCT", "Universal", "UTC", "W-SU", "WET", "Zulu",
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto time_zone_index = static_cast<std::size_t>(values.time_zone_index.GetValue());
|
|
|
|
ASSERT(time_zone_index < timezones.size());
|
|
|
|
return timezones[time_zone_index];
|
|
|
|
}
|
|
|
|
|
|
|
|
void LogSettings() {
|
|
|
|
const auto log_setting = [](std::string_view name, const auto& value) {
|
|
|
|
LOG_INFO(Config, "{}: {}", name, value);
|
|
|
|
};
|
|
|
|
|
2021-05-08 11:49:31 +04:00
|
|
|
const auto log_path = [](std::string_view name, const std::filesystem::path& path) {
|
|
|
|
LOG_INFO(Config, "{}: {}", name, Common::FS::PathToUTF8String(path));
|
|
|
|
};
|
|
|
|
|
2021-04-15 06:05:28 +04:00
|
|
|
LOG_INFO(Config, "yuzu Configuration:");
|
|
|
|
log_setting("Controls_UseDockedMode", values.use_docked_mode.GetValue());
|
|
|
|
log_setting("System_RngSeed", values.rng_seed.GetValue().value_or(0));
|
2021-07-03 13:00:06 +04:00
|
|
|
log_setting("System_CurrentUser", values.current_user.GetValue());
|
2021-04-15 06:05:28 +04:00
|
|
|
log_setting("System_LanguageIndex", values.language_index.GetValue());
|
|
|
|
log_setting("System_RegionIndex", values.region_index.GetValue());
|
|
|
|
log_setting("System_TimeZoneIndex", values.time_zone_index.GetValue());
|
|
|
|
log_setting("Core_UseMultiCore", values.use_multi_core.GetValue());
|
2021-05-17 04:21:13 +04:00
|
|
|
log_setting("CPU_Accuracy", values.cpu_accuracy.GetValue());
|
2021-04-15 06:05:28 +04:00
|
|
|
log_setting("Renderer_UseResolutionFactor", values.resolution_factor.GetValue());
|
2021-07-27 07:04:12 +04:00
|
|
|
log_setting("Renderer_UseSpeedLimit", values.use_speed_limit.GetValue());
|
|
|
|
log_setting("Renderer_SpeedLimit", values.speed_limit.GetValue());
|
2021-04-15 06:05:28 +04:00
|
|
|
log_setting("Renderer_UseDiskShaderCache", values.use_disk_shader_cache.GetValue());
|
|
|
|
log_setting("Renderer_GPUAccuracyLevel", values.gpu_accuracy.GetValue());
|
|
|
|
log_setting("Renderer_UseAsynchronousGpuEmulation",
|
|
|
|
values.use_asynchronous_gpu_emulation.GetValue());
|
2021-08-12 03:07:27 +04:00
|
|
|
log_setting("Renderer_NvdecEmulation", values.nvdec_emulation.GetValue());
|
2021-06-14 18:57:42 +04:00
|
|
|
log_setting("Renderer_AccelerateASTC", values.accelerate_astc.GetValue());
|
2021-04-15 06:05:28 +04:00
|
|
|
log_setting("Renderer_UseVsync", values.use_vsync.GetValue());
|
2021-07-10 01:54:15 +04:00
|
|
|
log_setting("Renderer_ShaderBackend", values.shader_backend.GetValue());
|
2021-04-15 06:05:28 +04:00
|
|
|
log_setting("Renderer_UseAsynchronousShaders", values.use_asynchronous_shaders.GetValue());
|
2021-08-10 05:07:42 +04:00
|
|
|
log_setting("Renderer_UseGarbageCollection", values.use_caches_gc.GetValue());
|
2021-04-15 06:05:28 +04:00
|
|
|
log_setting("Renderer_AnisotropicFilteringLevel", values.max_anisotropy.GetValue());
|
2021-07-03 13:00:06 +04:00
|
|
|
log_setting("Audio_OutputEngine", values.sink_id.GetValue());
|
2021-04-15 06:05:28 +04:00
|
|
|
log_setting("Audio_EnableAudioStretching", values.enable_audio_stretching.GetValue());
|
2021-07-03 13:00:06 +04:00
|
|
|
log_setting("Audio_OutputDevice", values.audio_device_id.GetValue());
|
|
|
|
log_setting("DataStorage_UseVirtualSd", values.use_virtual_sd.GetValue());
|
2021-05-08 11:49:31 +04:00
|
|
|
log_path("DataStorage_CacheDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::CacheDir));
|
|
|
|
log_path("DataStorage_ConfigDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::ConfigDir));
|
|
|
|
log_path("DataStorage_LoadDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::LoadDir));
|
|
|
|
log_path("DataStorage_NANDDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::NANDDir));
|
|
|
|
log_path("DataStorage_SDMCDir", Common::FS::GetYuzuPath(Common::FS::YuzuPath::SDMCDir));
|
2021-07-03 13:00:06 +04:00
|
|
|
log_setting("Debugging_ProgramArgs", values.program_args.GetValue());
|
|
|
|
log_setting("Services_BCATBackend", values.bcat_backend.GetValue());
|
|
|
|
log_setting("Services_BCATBoxcatLocal", values.bcat_boxcat_local.GetValue());
|
2021-04-15 06:05:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool IsConfiguringGlobal() {
|
|
|
|
return configuring_global;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SetConfiguringGlobal(bool is_global) {
|
|
|
|
configuring_global = is_global;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsGPULevelExtreme() {
|
|
|
|
return values.gpu_accuracy.GetValue() == GPUAccuracy::Extreme;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsGPULevelHigh() {
|
|
|
|
return values.gpu_accuracy.GetValue() == GPUAccuracy::Extreme ||
|
|
|
|
values.gpu_accuracy.GetValue() == GPUAccuracy::High;
|
|
|
|
}
|
|
|
|
|
2021-06-07 05:57:28 +04:00
|
|
|
bool IsFastmemEnabled() {
|
2021-07-09 05:27:40 +04:00
|
|
|
if (values.cpu_debug_mode) {
|
2021-07-03 13:00:06 +04:00
|
|
|
return static_cast<bool>(values.cpuopt_fastmem);
|
2021-06-07 05:57:28 +04:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-04-15 06:05:28 +04:00
|
|
|
float Volume() {
|
|
|
|
if (values.audio_muted) {
|
|
|
|
return 0.0f;
|
|
|
|
}
|
2021-07-17 00:17:21 +04:00
|
|
|
return values.volume.GetValue() / 100.0f;
|
2021-04-15 06:05:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void RestoreGlobalState(bool is_powered_on) {
|
|
|
|
// If a game is running, DO NOT restore the global settings state
|
|
|
|
if (is_powered_on) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Audio
|
|
|
|
values.enable_audio_stretching.SetGlobal(true);
|
|
|
|
values.volume.SetGlobal(true);
|
|
|
|
|
|
|
|
// Core
|
|
|
|
values.use_multi_core.SetGlobal(true);
|
|
|
|
|
2021-05-17 04:21:13 +04:00
|
|
|
// CPU
|
|
|
|
values.cpu_accuracy.SetGlobal(true);
|
|
|
|
values.cpuopt_unsafe_unfuse_fma.SetGlobal(true);
|
|
|
|
values.cpuopt_unsafe_reduce_fp_error.SetGlobal(true);
|
2021-06-22 03:03:38 +04:00
|
|
|
values.cpuopt_unsafe_ignore_standard_fpcr.SetGlobal(true);
|
2021-05-17 04:21:13 +04:00
|
|
|
values.cpuopt_unsafe_inaccurate_nan.SetGlobal(true);
|
2021-06-07 05:57:28 +04:00
|
|
|
values.cpuopt_unsafe_fastmem_check.SetGlobal(true);
|
2021-05-17 04:21:13 +04:00
|
|
|
|
2021-04-15 06:05:28 +04:00
|
|
|
// Renderer
|
|
|
|
values.renderer_backend.SetGlobal(true);
|
|
|
|
values.vulkan_device.SetGlobal(true);
|
|
|
|
values.aspect_ratio.SetGlobal(true);
|
|
|
|
values.max_anisotropy.SetGlobal(true);
|
2021-07-27 07:04:12 +04:00
|
|
|
values.use_speed_limit.SetGlobal(true);
|
|
|
|
values.speed_limit.SetGlobal(true);
|
2021-04-15 06:05:28 +04:00
|
|
|
values.use_disk_shader_cache.SetGlobal(true);
|
|
|
|
values.gpu_accuracy.SetGlobal(true);
|
|
|
|
values.use_asynchronous_gpu_emulation.SetGlobal(true);
|
2021-08-12 03:07:27 +04:00
|
|
|
values.nvdec_emulation.SetGlobal(true);
|
2021-06-14 18:57:42 +04:00
|
|
|
values.accelerate_astc.SetGlobal(true);
|
2021-04-15 06:05:28 +04:00
|
|
|
values.use_vsync.SetGlobal(true);
|
2021-07-10 01:54:15 +04:00
|
|
|
values.shader_backend.SetGlobal(true);
|
2021-04-15 06:05:28 +04:00
|
|
|
values.use_asynchronous_shaders.SetGlobal(true);
|
|
|
|
values.use_fast_gpu_time.SetGlobal(true);
|
2021-08-10 05:07:42 +04:00
|
|
|
values.use_caches_gc.SetGlobal(true);
|
2021-04-15 06:05:28 +04:00
|
|
|
values.bg_red.SetGlobal(true);
|
|
|
|
values.bg_green.SetGlobal(true);
|
|
|
|
values.bg_blue.SetGlobal(true);
|
|
|
|
|
|
|
|
// System
|
|
|
|
values.language_index.SetGlobal(true);
|
|
|
|
values.region_index.SetGlobal(true);
|
|
|
|
values.time_zone_index.SetGlobal(true);
|
|
|
|
values.rng_seed.SetGlobal(true);
|
|
|
|
values.sound_index.SetGlobal(true);
|
|
|
|
|
|
|
|
// Controls
|
|
|
|
values.players.SetGlobal(true);
|
|
|
|
values.use_docked_mode.SetGlobal(true);
|
|
|
|
values.vibration_enabled.SetGlobal(true);
|
|
|
|
values.motion_enabled.SetGlobal(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Settings
|