chore: make yuzu REUSE compliant
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.
Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.
The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.
Following REUSE has a few advantages over the current approach:
- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
`.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
files like binary assets / images is always accurate and up to date
To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.
[REUSE]: https://reuse.software
Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
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>
|
2018-11-04 01:38:39 +01:00
|
|
|
#include <atomic>
|
2016-09-20 17:21:23 +02:00
|
|
|
#include <vector>
|
2016-01-24 21:23:55 +01:00
|
|
|
#include <QByteArray>
|
2019-05-01 23:21:04 +02:00
|
|
|
#include <QMetaType>
|
2016-01-24 21:23:55 +01:00
|
|
|
#include <QString>
|
2016-09-18 02:38:01 +02:00
|
|
|
#include <QStringList>
|
2019-06-08 00:51:58 +02:00
|
|
|
#include <QVector>
|
2018-08-31 08:16:16 +02:00
|
|
|
#include "common/common_types.h"
|
2021-06-28 23:32:24 +02:00
|
|
|
#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 23:04:50 +02:00
|
|
|
bool IsDarkTheme();
|
|
|
|
|
2021-11-16 00:57:41 +01:00
|
|
|
struct ContextualShortcut {
|
|
|
|
QString keyseq;
|
|
|
|
QString controller_keyseq;
|
|
|
|
int context;
|
2023-01-18 00:39:31 +01:00
|
|
|
bool repeat;
|
2021-11-16 00:57:41 +01:00
|
|
|
};
|
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 08:46:30 +01:00
|
|
|
enum class Theme {
|
|
|
|
Default,
|
|
|
|
DefaultColorful,
|
|
|
|
Dark,
|
|
|
|
DarkColorful,
|
|
|
|
MidnightBlue,
|
|
|
|
MidnightBlueColorful,
|
|
|
|
};
|
|
|
|
|
2020-07-18 15:23:20 +02:00
|
|
|
using Themes = std::array<std::pair<const char*, const char*>, 6>;
|
2018-10-04 12:33:17 +02:00
|
|
|
extern const Themes themes;
|
2018-03-30 11:50:10 +02:00
|
|
|
|
2019-05-01 23:21:04 +02:00
|
|
|
struct GameDir {
|
|
|
|
QString path;
|
2020-08-15 17:14:09 +02:00
|
|
|
bool deep_scan = false;
|
|
|
|
bool expanded = false;
|
2019-05-01 23:21:04 +02:00
|
|
|
bool operator==(const GameDir& rhs) const {
|
|
|
|
return path == rhs.path;
|
2020-08-15 17:14:09 +02:00
|
|
|
}
|
2019-05-01 23:21:04 +02:00
|
|
|
bool operator!=(const GameDir& rhs) const {
|
|
|
|
return !operator==(rhs);
|
2020-08-15 17:14:09 +02:00
|
|
|
}
|
2019-05-01 23:21:04 +02: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;
|
2022-06-30 18:32:03 +02:00
|
|
|
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"};
|
2022-05-30 04:26:27 +02:00
|
|
|
// Set when Vulkan is known to crash the application
|
2022-07-10 22:10:35 +02:00
|
|
|
bool has_broken_vulkan = false;
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2022-06-30 18:32:03 +02:00
|
|
|
Settings::Setting<bool> select_user_on_boot{false, "select_user_on_boot"};
|
2018-12-25 16:42:02 +01:00
|
|
|
|
2018-09-16 20:05:51 +02:00
|
|
|
// Discord RPC
|
2022-06-30 18:32:03 +02:00
|
|
|
Settings::Setting<bool> enable_discord_presence{true, "enable_discord_presence"};
|
2018-09-16 20:05:51 +02:00
|
|
|
|
2022-06-30 18:32:03 +02:00
|
|
|
Settings::Setting<bool> enable_screenshot_save_as{true, "enable_screenshot_save_as"};
|
2018-08-31 08:16:16 +02:00
|
|
|
|
2016-01-24 21:23:55 +01:00
|
|
|
QString roms_path;
|
|
|
|
QString symbols_path;
|
2019-05-01 23:21:04 +02:00
|
|
|
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;
|
2017-08-09 02:06:25 +02:00
|
|
|
|
2022-06-30 18:32:03 +02:00
|
|
|
Settings::Setting<uint32_t> callout_flags{0, "calloutFlags"};
|
2018-07-02 19:10:41 +02:00
|
|
|
|
2021-12-25 20:27:52 +01:00
|
|
|
// multiplayer settings
|
2022-09-09 22:29:22 +02:00
|
|
|
Settings::Setting<QString> multiplayer_nickname{{}, "nickname"};
|
2022-07-15 19:45:35 +02:00
|
|
|
Settings::Setting<QString> multiplayer_ip{{}, "ip"};
|
2022-08-01 22:47:39 +02:00
|
|
|
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-18 05:53:44 +02:00
|
|
|
Settings::SwitchableSetting<uint, true> multiplayer_max_player{8, 0, 8, "max_player"};
|
2022-08-01 22:47:39 +02:00
|
|
|
Settings::SwitchableSetting<uint, true> multiplayer_room_port{24872, 0, UINT16_MAX,
|
|
|
|
"room_port"};
|
2022-07-18 05:53:44 +02: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 19:10:41 +02:00
|
|
|
// logging
|
2022-06-30 18:32:03 +02:00
|
|
|
Settings::Setting<bool> show_console{false, "showConsole"};
|
2018-07-28 18:32:16 +02:00
|
|
|
|
|
|
|
// Game List
|
2022-06-30 18:32:03 +02:00
|
|
|
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"};
|
2018-11-04 01:38:39 +01:00
|
|
|
std::atomic_bool is_game_list_reload_pending{false};
|
2022-06-30 18:32:03 +02:00
|
|
|
Settings::Setting<bool> cache_game_list{true, "cache_game_list"};
|
|
|
|
Settings::Setting<bool> favorites_expanded{true, "favorites_expanded"};
|
2021-12-12 21:46:42 +01:00
|
|
|
QVector<u64> favorited_ids;
|
2021-05-17 22:13:39 +02:00
|
|
|
|
2022-10-19 12:51:51 +02:00
|
|
|
// Compatibility List
|
|
|
|
Settings::Setting<bool> show_compat{false, "show_compat"};
|
|
|
|
|
2022-11-04 07:30:39 +01:00
|
|
|
// Size & File Types Column
|
|
|
|
Settings::Setting<bool> show_size{true, "show_size"};
|
|
|
|
Settings::Setting<bool> show_types{true, "show_types"};
|
|
|
|
|
2021-05-17 22:13:39 +02:00
|
|
|
bool configuration_applied;
|
2021-05-26 02:49:42 +02:00
|
|
|
bool reset_to_defaults;
|
2021-07-29 05:02:29 +02:00
|
|
|
bool shortcut_already_warned{false};
|
2022-06-30 18:32:03 +02:00
|
|
|
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 16:39:53 +02:00
|
|
|
|
2018-01-20 08:48:02 +01:00
|
|
|
} // namespace UISettings
|
2019-05-01 23:21:04 +02:00
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(UISettings::GameDir*);
|