Files
eden/src/yuzu/uisettings.h
T

145 lines
4.7 KiB
C++
Raw Normal View History

2022-05-15 02:06:02 +02:00
// SPDX-FileCopyrightText: 2016 Citra Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2016-01-24 18:34:05 +01:00
2016-01-24 21:54:04 +01:00
#pragma once
2016-01-24 18:34:05 +01:00
2017-06-24 02:35:17 +02:00
#include <array>
#include <atomic>
2016-09-21 00:21:23 +09:00
#include <vector>
2016-01-24 21:23:55 +01:00
#include <QByteArray>
#include <QMetaType>
2016-01-24 21:23:55 +01:00
#include <QString>
2016-09-18 09:38:01 +09:00
#include <QStringList>
2019-06-08 00:51:58 +02:00
#include <QVector>
2018-08-31 14:16:16 +08:00
#include "common/common_types.h"
#include "common/settings.h"
2016-01-24 21:23:55 +01:00
2016-01-24 18:34:05 +01:00
namespace UISettings {
2022-04-10 14:04:50 -07:00
bool IsDarkTheme();
2021-11-15 17:57:41 -06:00
struct ContextualShortcut {
QString keyseq;
QString controller_keyseq;
int context;
};
2019-02-16 16:19:29 +01:00
struct Shortcut {
QString name;
QString group;
ContextualShortcut shortcut;
};
2016-01-24 21:23:55 +01:00
2022-01-17 02:46:30 -05:00
enum class Theme {
Default,
DefaultColorful,
Dark,
DarkColorful,
MidnightBlue,
MidnightBlueColorful,
};
using Themes = std::array<std::pair<const char*, const char*>, 6>;
extern const Themes themes;
2018-03-30 11:50:10 +02:00
struct GameDir {
QString path;
2020-08-15 11:14:09 -04:00
bool deep_scan = false;
bool expanded = false;
bool operator==(const GameDir& rhs) const {
return path == rhs.path;
2020-08-15 11:14:09 -04:00
}
bool operator!=(const GameDir& rhs) const {
return !operator==(rhs);
2020-08-15 11:14:09 -04:00
}
};
2016-01-24 18:34:05 +01:00
struct Values {
2016-01-24 21:23:55 +01:00
QByteArray geometry;
QByteArray state;
QByteArray renderwindow_geometry;
QByteArray gamelist_header_state;
QByteArray microprofile_geometry;
Settings::Setting<bool> microprofile_visible{false, "microProfileDialogVisible"};
Settings::Setting<bool> single_window_mode{true, "singleWindowMode"};
Settings::Setting<bool> fullscreen{false, "fullscreen"};
Settings::Setting<bool> display_titlebar{true, "displayTitleBars"};
Settings::Setting<bool> show_filter_bar{true, "showFilterBar"};
Settings::Setting<bool> show_status_bar{true, "showStatusBar"};
Settings::Setting<bool> confirm_before_closing{true, "confirmClose"};
Settings::Setting<bool> first_start{true, "firstStart"};
Settings::Setting<bool> pause_when_in_background{false, "pauseWhenInBackground"};
Settings::Setting<bool> mute_when_in_background{false, "muteWhenInBackground"};
Settings::Setting<bool> hide_mouse{true, "hideInactiveMouse"};
// Set when Vulkan is known to crash the application
2022-07-10 16:10:35 -04:00
bool has_broken_vulkan = false;
2016-01-24 21:23:55 +01:00
Settings::Setting<bool> select_user_on_boot{false, "select_user_on_boot"};
2018-09-16 20:05:51 +02:00
// Discord RPC
Settings::Setting<bool> enable_discord_presence{true, "enable_discord_presence"};
2018-09-16 20:05:51 +02:00
Settings::Setting<bool> enable_screenshot_save_as{true, "enable_screenshot_save_as"};
2018-08-31 14:16:16 +08:00
2016-01-24 21:23:55 +01:00
QString roms_path;
QString symbols_path;
QString game_dir_deprecated;
bool game_dir_deprecated_deepscan;
2019-06-08 00:51:58 +02:00
QVector<UISettings::GameDir> game_dirs;
2016-01-24 21:23:55 +01:00
QStringList recent_files;
2020-01-26 00:26:07 +01:00
QString language;
2016-01-24 21:23:55 +01:00
2017-06-24 02:35:17 +02:00
QString theme;
2016-01-24 21:23:55 +01:00
// Shortcut name <Shortcut, context>
std::vector<Shortcut> shortcuts;
Settings::Setting<uint32_t> callout_flags{0, "calloutFlags"};
2018-07-02 11:10:41 -06:00
2021-12-25 20:27:52 +01:00
// multiplayer settings
2022-09-09 15:29:22 -05:00
Settings::Setting<QString> multiplayer_nickname{{}, "nickname"};
2022-07-15 19:45:35 +02:00
Settings::Setting<QString> multiplayer_ip{{}, "ip"};
Settings::SwitchableSetting<uint, true> multiplayer_port{24872, 0, UINT16_MAX, "port"};
2022-07-15 19:45:35 +02:00
Settings::Setting<QString> multiplayer_room_nickname{{}, "room_nickname"};
Settings::Setting<QString> multiplayer_room_name{{}, "room_name"};
2022-07-17 22:53:44 -05:00
Settings::SwitchableSetting<uint, true> multiplayer_max_player{8, 0, 8, "max_player"};
Settings::SwitchableSetting<uint, true> multiplayer_room_port{24872, 0, UINT16_MAX,
"room_port"};
2022-07-17 22:53:44 -05:00
Settings::SwitchableSetting<uint, true> multiplayer_host_type{0, 0, 1, "host_type"};
2022-07-15 19:45:35 +02:00
Settings::Setting<qulonglong> multiplayer_game_id{{}, "game_id"};
Settings::Setting<QString> multiplayer_room_description{{}, "room_description"};
std::pair<std::vector<std::string>, std::vector<std::string>> multiplayer_ban_list;
2021-12-25 20:27:52 +01:00
2018-07-02 11:10:41 -06:00
// logging
Settings::Setting<bool> show_console{false, "showConsole"};
2018-07-28 12:32:16 -04:00
// Game List
Settings::Setting<bool> show_add_ons{true, "show_add_ons"};
Settings::Setting<uint32_t> game_icon_size{64, "game_icon_size"};
Settings::Setting<uint32_t> folder_icon_size{48, "folder_icon_size"};
Settings::Setting<uint8_t> row_1_text_id{3, "row_1_text_id"};
Settings::Setting<uint8_t> row_2_text_id{2, "row_2_text_id"};
std::atomic_bool is_game_list_reload_pending{false};
Settings::Setting<bool> cache_game_list{true, "cache_game_list"};
Settings::Setting<bool> favorites_expanded{true, "favorites_expanded"};
QVector<u64> favorited_ids;
// Compatibility List
Settings::Setting<bool> show_compat{false, "show_compat"};
bool configuration_applied;
bool reset_to_defaults;
Settings::Setting<bool> disable_web_applet{true, "disable_web_applet"};
2016-01-24 21:54:04 +01:00
};
2016-01-24 18:34:05 +01:00
2016-01-24 21:54:04 +01:00
extern Values values;
2020-07-22 10:39:53 -04:00
} // namespace UISettings
Q_DECLARE_METATYPE(UISettings::GameDir*);