pineapple-src/src/common/settings.h

271 lines
6.5 KiB
C
Raw Normal View History

2021-04-15 02:05:28 +00:00
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <array>
#include <atomic>
#include <chrono>
#include <map>
#include <optional>
#include <string>
#include <vector>
#include "common/common_types.h"
#include "common/settings_input.h"
namespace Settings {
enum class RendererBackend : u32 {
OpenGL = 0,
Vulkan = 1,
};
enum class GPUAccuracy : u32 {
Normal = 0,
High = 1,
Extreme = 2,
};
enum class CPUAccuracy : u32 {
Accurate = 0,
Unsafe = 1,
DebugMode = 2,
};
template <typename Type>
2021-07-01 12:23:06 +00:00
class Setting final {
2021-04-15 02:05:28 +00:00
public:
2021-07-01 12:23:06 +00:00
Setting() = default;
explicit Setting(Type val) : global{val} {}
2021-04-15 02:05:28 +00:00
~Setting() = default;
void SetGlobal(bool to_global) {
use_global = to_global;
}
2021-07-01 12:23:06 +00:00
bool UsingGlobal() const {
2021-04-15 02:05:28 +00:00
return use_global;
}
2021-07-01 12:23:06 +00:00
Type GetValue(bool need_global = false) const {
2021-04-15 02:05:28 +00:00
if (use_global || need_global) {
2021-07-01 12:23:06 +00:00
return global;
2021-04-15 02:05:28 +00:00
}
2021-07-01 12:23:06 +00:00
return local;
2021-04-15 02:05:28 +00:00
}
void SetValue(const Type& value) {
if (use_global) {
2021-07-01 12:23:06 +00:00
global = value;
2021-04-15 02:05:28 +00:00
} else {
2021-07-01 12:23:06 +00:00
local = value;
2021-04-15 02:05:28 +00:00
}
}
private:
2021-07-01 12:23:06 +00:00
bool use_global = true;
Type global{};
Type local{};
2021-04-15 02:05:28 +00:00
};
/**
2021-07-01 12:23:06 +00:00
* The InputSetting class allows for getting a reference to either the global or local members.
2021-04-15 02:05:28 +00:00
* This is required as we cannot easily modify the values of user-defined types within containers
* using the SetValue() member function found in the Setting class. The primary purpose of this
2021-07-01 12:23:06 +00:00
* class is to store an array of 10 PlayerInput structs for both the global and local (per-game)
* setting and allows for easily accessing and modifying both settings.
2021-04-15 02:05:28 +00:00
*/
template <typename Type>
class InputSetting final {
public:
InputSetting() = default;
2021-07-01 12:23:06 +00:00
explicit InputSetting(Type val) : global{val} {}
2021-04-15 02:05:28 +00:00
~InputSetting() = default;
void SetGlobal(bool to_global) {
use_global = to_global;
}
2021-07-01 12:23:06 +00:00
bool UsingGlobal() const {
2021-04-15 02:05:28 +00:00
return use_global;
}
2021-07-01 12:23:06 +00:00
Type& GetValue(bool need_global = false) {
2021-04-15 02:05:28 +00:00
if (use_global || need_global) {
return global;
}
2021-07-01 12:23:06 +00:00
return local;
2021-04-15 02:05:28 +00:00
}
private:
2021-07-01 12:23:06 +00:00
bool use_global = true;
Type global{};
Type local{};
2021-04-15 02:05:28 +00:00
};
struct TouchFromButtonMap {
std::string name;
std::vector<std::string> buttons;
};
struct Values {
// Audio
2021-07-01 12:23:06 +00:00
std::string audio_device_id;
std::string sink_id;
bool audio_muted;
Setting<bool> enable_audio_stretching;
Setting<float> volume;
2021-04-15 02:05:28 +00:00
// Core
2021-07-01 12:23:06 +00:00
Setting<bool> use_multi_core;
2021-04-15 02:05:28 +00:00
// Cpu
2021-07-01 12:23:06 +00:00
Setting<CPUAccuracy> cpu_accuracy;
bool cpuopt_page_tables;
bool cpuopt_block_linking;
bool cpuopt_return_stack_buffer;
bool cpuopt_fast_dispatcher;
bool cpuopt_context_elimination;
bool cpuopt_const_prop;
bool cpuopt_misc_ir;
bool cpuopt_reduce_misalign_checks;
bool cpuopt_fastmem;
Setting<bool> cpuopt_unsafe_unfuse_fma;
Setting<bool> cpuopt_unsafe_reduce_fp_error;
Setting<bool> cpuopt_unsafe_ignore_standard_fpcr;
Setting<bool> cpuopt_unsafe_inaccurate_nan;
Setting<bool> cpuopt_unsafe_fastmem_check;
2021-04-15 02:05:28 +00:00
// Renderer
2021-07-01 12:23:06 +00:00
Setting<RendererBackend> renderer_backend;
bool renderer_debug;
Setting<int> vulkan_device;
Setting<u16> resolution_factor{1};
Setting<int> fullscreen_mode;
Setting<int> aspect_ratio;
Setting<int> max_anisotropy;
Setting<bool> use_frame_limit;
Setting<u16> frame_limit;
Setting<bool> use_disk_shader_cache;
Setting<GPUAccuracy> gpu_accuracy;
Setting<bool> use_asynchronous_gpu_emulation;
Setting<bool> use_nvdec_emulation;
Setting<bool> accelerate_astc;
Setting<bool> use_vsync;
Setting<bool> disable_fps_limit;
Setting<bool> use_assembly_shaders;
Setting<bool> use_asynchronous_shaders;
Setting<bool> use_fast_gpu_time;
Setting<bool> use_caches_gc;
Setting<float> bg_red;
Setting<float> bg_green;
Setting<float> bg_blue;
2021-04-15 02:05:28 +00:00
// System
2021-07-01 12:23:06 +00:00
Setting<std::optional<u32>> rng_seed;
2021-04-15 02:05:28 +00:00
// Measured in seconds since epoch
2021-05-17 00:21:13 +00:00
std::optional<std::chrono::seconds> custom_rtc;
2021-04-15 02:05:28 +00:00
// Set on game boot, reset on stop. Seconds difference between current time and `custom_rtc`
std::chrono::seconds custom_rtc_differential;
2021-07-01 12:23:06 +00:00
s32 current_user;
Setting<s32> language_index;
Setting<s32> region_index;
Setting<s32> time_zone_index;
Setting<s32> sound_index;
2021-04-15 02:05:28 +00:00
// Controls
InputSetting<std::array<PlayerInput, 10>> players;
2021-07-01 12:23:06 +00:00
Setting<bool> use_docked_mode;
2021-04-15 02:05:28 +00:00
2021-07-01 12:23:06 +00:00
Setting<bool> vibration_enabled;
Setting<bool> enable_accurate_vibrations;
2021-04-15 02:05:28 +00:00
2021-07-01 12:23:06 +00:00
Setting<bool> motion_enabled;
std::string motion_device;
std::string udp_input_servers;
2021-04-15 02:05:28 +00:00
2021-07-01 12:23:06 +00:00
bool mouse_panning;
float mouse_panning_sensitivity;
bool mouse_enabled;
2021-04-15 02:05:28 +00:00
std::string mouse_device;
MouseButtonsRaw mouse_buttons;
2021-07-01 12:23:06 +00:00
bool emulate_analog_keyboard;
bool keyboard_enabled;
2021-04-15 02:05:28 +00:00
KeyboardKeysRaw keyboard_keys;
KeyboardModsRaw keyboard_mods;
2021-07-01 12:23:06 +00:00
bool debug_pad_enabled;
2021-04-15 02:05:28 +00:00
ButtonsRaw debug_pad_buttons;
AnalogsRaw debug_pad_analogs;
TouchscreenInput touchscreen;
2021-07-01 12:23:06 +00:00
bool use_touch_from_button;
std::string touch_device;
int touch_from_button_map_index;
2021-04-15 02:05:28 +00:00
std::vector<TouchFromButtonMap> touch_from_button_maps;
std::atomic_bool is_device_reload_pending{true};
// Data Storage
2021-07-01 12:23:06 +00:00
bool use_virtual_sd;
bool gamecard_inserted;
bool gamecard_current_game;
std::string gamecard_path;
2021-04-15 02:05:28 +00:00
// Debugging
bool record_frame_times;
2021-07-01 12:23:06 +00:00
bool use_gdbstub;
u16 gdbstub_port;
std::string program_args;
bool dump_exefs;
bool dump_nso;
bool enable_fs_access_log;
bool reporting_services;
bool quest_flag;
bool disable_macro_jit;
bool extended_logging;
bool use_debug_asserts;
bool use_auto_stub;
2021-04-15 02:05:28 +00:00
// Miscellaneous
2021-07-01 12:23:06 +00:00
std::string log_filter;
bool use_dev_keys;
2021-04-15 02:05:28 +00:00
// Services
2021-07-01 12:23:06 +00:00
std::string bcat_backend;
bool bcat_boxcat_local;
2021-04-15 02:05:28 +00:00
// WebService
2021-07-01 12:23:06 +00:00
bool enable_telemetry;
std::string web_api_url;
std::string yuzu_username;
std::string yuzu_token;
2021-04-15 02:05:28 +00:00
// Add-Ons
std::map<u64, std::vector<std::string>> disabled_addons;
};
extern Values values;
bool IsConfiguringGlobal();
void SetConfiguringGlobal(bool is_global);
bool IsGPULevelExtreme();
bool IsGPULevelHigh();
2021-06-07 01:57:28 +00:00
bool IsFastmemEnabled();
2021-04-15 02:05:28 +00:00
float Volume();
std::string GetTimeZoneString();
void LogSettings();
// Restore the global state of all applicable settings in the Values struct
void RestoreGlobalState(bool is_powered_on);
} // namespace Settings