2015-01-04 17:36:57 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-03-26 19:27:10 +00:00
|
|
|
#pragma once
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
#include <memory>
|
2018-10-30 04:03:25 +00:00
|
|
|
#include <optional>
|
2018-08-31 16:21:34 +00:00
|
|
|
#include <unordered_map>
|
2018-09-02 14:53:06 +00:00
|
|
|
|
2016-09-20 15:21:23 +00:00
|
|
|
#include <QMainWindow>
|
2017-04-30 02:04:39 +00:00
|
|
|
#include <QTimer>
|
2020-01-25 23:26:07 +00:00
|
|
|
#include <QTranslator>
|
2018-09-02 14:53:06 +00:00
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2017-04-13 05:18:54 +00:00
|
|
|
#include "core/core.h"
|
2018-12-28 23:20:29 +00:00
|
|
|
#include "core/hle/service/acc/profile_manager.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
#include "ui_main.h"
|
2018-09-09 23:09:37 +00:00
|
|
|
#include "yuzu/compatibility_list.h"
|
2018-08-07 04:43:07 +00:00
|
|
|
#include "yuzu/hotkeys.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2016-01-24 20:23:55 +00:00
|
|
|
class Config;
|
2016-12-19 19:50:58 +00:00
|
|
|
class EmuThread;
|
2015-09-01 04:35:33 +00:00
|
|
|
class GameList;
|
2014-04-01 02:26:50 +00:00
|
|
|
class GImageInfo;
|
|
|
|
class GRenderWindow;
|
2019-01-17 07:01:00 +00:00
|
|
|
class LoadingScreen;
|
2015-08-17 21:25:21 +00:00
|
|
|
class MicroProfileDialog;
|
2016-12-19 19:50:58 +00:00
|
|
|
class ProfilerWidget;
|
2021-01-22 00:51:24 +00:00
|
|
|
class ControllerDialog;
|
2018-12-24 21:23:31 +00:00
|
|
|
class QLabel;
|
2020-01-28 22:59:30 +00:00
|
|
|
class QPushButton;
|
2020-04-17 03:27:38 +00:00
|
|
|
class QProgressDialog;
|
2016-04-08 16:28:54 +00:00
|
|
|
class WaitTreeWidget;
|
2018-08-21 04:46:40 +00:00
|
|
|
enum class GameListOpenTarget;
|
2020-07-17 09:21:26 +00:00
|
|
|
enum class GameListRemoveTarget;
|
|
|
|
enum class InstalledEntryType;
|
2019-05-01 21:21:04 +00:00
|
|
|
class GameListPlaceholder;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2021-03-26 09:26:16 +00:00
|
|
|
class QtSoftwareKeyboardDialog;
|
|
|
|
|
2018-11-11 21:39:25 +00:00
|
|
|
namespace Core::Frontend {
|
2020-08-21 11:39:24 +00:00
|
|
|
struct ControllerParameters;
|
2021-03-26 09:26:16 +00:00
|
|
|
struct InlineAppearParameters;
|
|
|
|
struct InlineTextParameters;
|
|
|
|
struct KeyboardInitializeParameters;
|
2018-11-11 21:39:25 +00:00
|
|
|
} // namespace Core::Frontend
|
|
|
|
|
2020-08-27 19:16:47 +00:00
|
|
|
namespace DiscordRPC {
|
|
|
|
class DiscordInterface;
|
|
|
|
}
|
|
|
|
|
2018-08-31 16:21:34 +00:00
|
|
|
namespace FileSys {
|
2019-03-04 17:40:53 +00:00
|
|
|
class ContentProvider;
|
|
|
|
class ManualContentProvider;
|
2018-08-31 16:21:34 +00:00
|
|
|
class VfsFilesystem;
|
2018-10-17 22:27:23 +00:00
|
|
|
} // namespace FileSys
|
2018-08-31 16:21:34 +00:00
|
|
|
|
2020-08-27 19:16:47 +00:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2020-11-30 13:31:26 +00:00
|
|
|
namespace Service::AM::Applets {
|
2021-03-26 09:26:16 +00:00
|
|
|
enum class SwkbdResult : u32;
|
|
|
|
enum class SwkbdTextCheckResult : u32;
|
|
|
|
enum class SwkbdReplyType : u32;
|
2020-11-30 13:31:26 +00:00
|
|
|
enum class WebExitReason : u32;
|
2021-03-26 09:26:16 +00:00
|
|
|
} // namespace Service::AM::Applets
|
2020-11-30 13:31:26 +00:00
|
|
|
|
2018-09-03 23:23:10 +00:00
|
|
|
enum class EmulatedDirectoryTarget {
|
|
|
|
NAND,
|
|
|
|
SDMC,
|
|
|
|
};
|
|
|
|
|
2020-07-01 20:15:57 +00:00
|
|
|
enum class InstallResult {
|
|
|
|
Success,
|
|
|
|
Overwrite,
|
|
|
|
Failure,
|
|
|
|
};
|
|
|
|
|
2018-09-29 15:48:51 +00:00
|
|
|
enum class ReinitializeKeyBehavior {
|
|
|
|
NoWarning,
|
|
|
|
Warning,
|
|
|
|
};
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
class GMainWindow : public QMainWindow {
|
2014-04-01 02:26:50 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
/// Max number of recently loaded items to keep track of
|
|
|
|
static const int max_recent_files_item = 10;
|
2015-07-28 16:43:18 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
// TODO: Make use of this!
|
|
|
|
enum {
|
|
|
|
UI_IDLE,
|
|
|
|
UI_EMU_BOOTING,
|
|
|
|
UI_EMU_RUNNING,
|
|
|
|
UI_EMU_STOPPING,
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2017-04-30 02:04:39 +00:00
|
|
|
void filterBarSetChecked(bool state);
|
2017-06-24 00:41:11 +00:00
|
|
|
void UpdateUITheme();
|
2014-04-01 02:26:50 +00:00
|
|
|
GMainWindow();
|
2018-08-06 17:12:32 +00:00
|
|
|
~GMainWindow() override;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2020-02-17 20:49:52 +00:00
|
|
|
bool DropAction(QDropEvent* event);
|
|
|
|
void AcceptDropEvent(QDropEvent* event);
|
|
|
|
|
2015-04-29 04:01:41 +00:00
|
|
|
signals:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signal that is emitted when a new EmuThread has been created and an emulation session is
|
|
|
|
* about to start. At this time, the core system emulation has been initialized, and all
|
|
|
|
* emulation handles and memory should be valid.
|
|
|
|
*
|
|
|
|
* @param emu_thread Pointer to the newly created EmuThread (to be used by widgets that need to
|
|
|
|
* access/change emulation state).
|
|
|
|
*/
|
|
|
|
void EmulationStarting(EmuThread* emu_thread);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Signal that is emitted when emulation is about to stop. At this time, the EmuThread and core
|
|
|
|
* system emulation handles and memory are still valid, but are about become invalid.
|
|
|
|
*/
|
|
|
|
void EmulationStopping();
|
2015-04-16 22:35:09 +00:00
|
|
|
|
2018-03-30 15:38:34 +00:00
|
|
|
// Signal that tells widgets to update icons to use the current theme
|
|
|
|
void UpdateThemedIcons();
|
|
|
|
|
2020-07-05 13:29:39 +00:00
|
|
|
void UpdateInstallProgress();
|
|
|
|
|
2020-08-21 11:39:24 +00:00
|
|
|
void ControllerSelectorReconfigureFinished();
|
|
|
|
|
2019-03-11 23:45:22 +00:00
|
|
|
void ErrorDisplayFinished();
|
|
|
|
|
2019-01-11 02:53:07 +00:00
|
|
|
void ProfileSelectorFinishedSelection(std::optional<Common::UUID> uuid);
|
2020-08-21 11:39:24 +00:00
|
|
|
|
2021-03-27 19:15:32 +00:00
|
|
|
void SoftwareKeyboardSubmitNormalText(Service::AM::Applets::SwkbdResult result,
|
|
|
|
std::u16string submitted_text);
|
|
|
|
void SoftwareKeyboardSubmitInlineText(Service::AM::Applets::SwkbdReplyType reply_type,
|
|
|
|
std::u16string submitted_text, s32 cursor_position);
|
|
|
|
|
2020-11-30 15:15:00 +00:00
|
|
|
void WebBrowserExtractOfflineRomFS();
|
2020-11-30 13:31:26 +00:00
|
|
|
void WebBrowserClosed(Service::AM::Applets::WebExitReason exit_reason, std::string last_url);
|
|
|
|
|
2018-11-11 21:39:25 +00:00
|
|
|
public slots:
|
2019-01-17 07:01:00 +00:00
|
|
|
void OnLoadComplete();
|
2020-11-24 23:18:29 +00:00
|
|
|
void OnExecuteProgram(std::size_t program_index);
|
2020-08-21 11:39:24 +00:00
|
|
|
void ControllerSelectorReconfigureControllers(
|
|
|
|
const Core::Frontend::ControllerParameters& parameters);
|
2021-03-27 19:15:32 +00:00
|
|
|
void SoftwareKeyboardInitialize(
|
|
|
|
bool is_inline, Core::Frontend::KeyboardInitializeParameters initialize_parameters);
|
|
|
|
void SoftwareKeyboardShowNormal();
|
|
|
|
void SoftwareKeyboardShowTextCheck(Service::AM::Applets::SwkbdTextCheckResult text_check_result,
|
|
|
|
std::u16string text_check_message);
|
|
|
|
void SoftwareKeyboardShowInline(Core::Frontend::InlineAppearParameters appear_parameters);
|
|
|
|
void SoftwareKeyboardHideInline();
|
|
|
|
void SoftwareKeyboardInlineTextChanged(Core::Frontend::InlineTextParameters text_parameters);
|
|
|
|
void SoftwareKeyboardExit();
|
2021-03-26 10:07:27 +00:00
|
|
|
void ErrorDisplayDisplayError(QString error_code, QString error_text);
|
2018-11-23 02:03:33 +00:00
|
|
|
void ProfileSelectorSelectProfile();
|
2020-12-08 11:20:45 +00:00
|
|
|
void WebBrowserOpenWebPage(std::string_view main_url, std::string_view additional_args,
|
|
|
|
bool is_local);
|
2019-09-26 12:54:31 +00:00
|
|
|
void OnAppFocusStateChanged(Qt::ApplicationState state);
|
2018-12-24 21:23:31 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
private:
|
2021-03-26 09:26:16 +00:00
|
|
|
void RegisterMetaTypes();
|
|
|
|
|
2016-12-19 19:50:58 +00:00
|
|
|
void InitializeWidgets();
|
2017-02-18 10:16:24 +00:00
|
|
|
void InitializeDebugWidgets();
|
2016-12-19 19:50:58 +00:00
|
|
|
void InitializeRecentFileMenuActions();
|
|
|
|
|
|
|
|
void SetDefaultUIGeometry();
|
|
|
|
void RestoreUIState();
|
|
|
|
|
|
|
|
void ConnectWidgetEvents();
|
2017-02-18 10:26:57 +00:00
|
|
|
void ConnectMenuEvents();
|
2016-12-19 19:50:58 +00:00
|
|
|
|
2019-09-03 21:00:34 +00:00
|
|
|
void PreventOSSleep();
|
|
|
|
void AllowOSSleep();
|
|
|
|
|
2020-11-24 23:18:29 +00:00
|
|
|
bool LoadROM(const QString& filename, std::size_t program_index);
|
|
|
|
void BootGame(const QString& filename, std::size_t program_index = 0);
|
2015-04-28 03:13:57 +00:00
|
|
|
void ShutdownGame();
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2018-09-16 18:05:51 +00:00
|
|
|
void ShowTelemetryCallout();
|
|
|
|
void SetDiscordEnabled(bool state);
|
2019-11-02 18:22:36 +00:00
|
|
|
void LoadAmiibo(const QString& filename);
|
2017-08-09 00:06:25 +00:00
|
|
|
|
2018-12-25 15:42:02 +00:00
|
|
|
void SelectAndSetCurrentUser();
|
|
|
|
|
2015-08-17 20:50:52 +00:00
|
|
|
/**
|
|
|
|
* Stores the filename in the recently loaded files list.
|
|
|
|
* The new filename is stored at the beginning of the recently loaded files list.
|
|
|
|
* After inserting the new entry, duplicates are removed meaning that if
|
|
|
|
* this was inserted from \a OnMenuRecentFile(), the entry will be put on top
|
|
|
|
* and remove from its previous position.
|
|
|
|
*
|
|
|
|
* Finally, this function calls \a UpdateRecentFiles() to update the UI.
|
|
|
|
*
|
|
|
|
* @param filename the filename to store
|
|
|
|
*/
|
2017-02-17 06:32:22 +00:00
|
|
|
void StoreRecentFile(const QString& filename);
|
2015-08-17 20:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the recent files menu.
|
|
|
|
* Menu entries are rebuilt from the configuration file.
|
|
|
|
* If there is no entry in the menu, the menu is greyed out.
|
|
|
|
*/
|
2015-07-28 16:43:18 +00:00
|
|
|
void UpdateRecentFiles();
|
|
|
|
|
2016-01-10 12:31:20 +00:00
|
|
|
/**
|
|
|
|
* If the emulation is running,
|
|
|
|
* asks the user if he really want to close the emulator
|
|
|
|
*
|
|
|
|
* @return true if the user confirmed
|
|
|
|
*/
|
|
|
|
bool ConfirmClose();
|
2017-02-16 03:23:30 +00:00
|
|
|
bool ConfirmChangeGame();
|
2019-09-22 02:46:53 +00:00
|
|
|
bool ConfirmForceLockedExit();
|
|
|
|
void RequestGameExit();
|
2014-10-26 04:56:13 +00:00
|
|
|
void closeEvent(QCloseEvent* event) override;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
private slots:
|
2014-05-01 03:46:57 +00:00
|
|
|
void OnStartGame();
|
|
|
|
void OnPauseGame();
|
|
|
|
void OnStopGame();
|
2018-09-16 18:05:51 +00:00
|
|
|
void OnMenuReportCompatibility();
|
2020-06-21 16:09:14 +00:00
|
|
|
void OnOpenModsPage();
|
2020-06-26 16:49:57 +00:00
|
|
|
void OnOpenQuickstartGuide();
|
2020-06-27 00:13:34 +00:00
|
|
|
void OnOpenFAQ();
|
2015-09-01 04:35:33 +00:00
|
|
|
/// Called whenever a user selects a game in the game list widget.
|
|
|
|
void OnGameListLoadFile(QString game_path);
|
2020-07-19 11:14:46 +00:00
|
|
|
void OnGameListOpenFolder(u64 program_id, GameListOpenTarget target,
|
|
|
|
const std::string& game_path);
|
2019-02-08 08:05:51 +00:00
|
|
|
void OnTransferableShaderCacheOpenFile(u64 program_id);
|
2020-07-17 09:21:26 +00:00
|
|
|
void OnGameListRemoveInstalledEntry(u64 program_id, InstalledEntryType type);
|
|
|
|
void OnGameListRemoveFile(u64 program_id, GameListRemoveTarget target);
|
2018-09-20 02:09:23 +00:00
|
|
|
void OnGameListDumpRomFS(u64 program_id, const std::string& game_path);
|
|
|
|
void OnGameListCopyTID(u64 program_id);
|
2018-09-09 23:35:05 +00:00
|
|
|
void OnGameListNavigateToGamedbEntry(u64 program_id,
|
|
|
|
const CompatibilityList& compatibility_list);
|
2019-05-03 17:21:57 +00:00
|
|
|
void OnGameListOpenDirectory(const QString& directory);
|
2019-05-01 21:21:04 +00:00
|
|
|
void OnGameListAddDirectory();
|
|
|
|
void OnGameListShowList(bool show);
|
2018-12-04 18:34:46 +00:00
|
|
|
void OnGameListOpenPerGameProperties(const std::string& file);
|
2014-05-01 03:46:57 +00:00
|
|
|
void OnMenuLoadFile();
|
2018-06-14 16:27:29 +00:00
|
|
|
void OnMenuLoadFolder();
|
2020-07-05 13:29:39 +00:00
|
|
|
void IncrementInstallProgress();
|
2018-08-10 01:33:13 +00:00
|
|
|
void OnMenuInstallToNAND();
|
2015-07-28 16:43:18 +00:00
|
|
|
void OnMenuRecentFile();
|
2014-04-01 02:26:50 +00:00
|
|
|
void OnConfigure();
|
2020-08-11 18:57:29 +00:00
|
|
|
void OnConfigurePerGame();
|
2018-10-23 23:28:17 +00:00
|
|
|
void OnLoadAmiibo();
|
2018-11-02 02:05:44 +00:00
|
|
|
void OnOpenYuzuFolder();
|
2018-01-14 18:15:45 +00:00
|
|
|
void OnAbout();
|
2017-04-30 02:04:39 +00:00
|
|
|
void OnToggleFilterBar();
|
2015-01-06 15:09:30 +00:00
|
|
|
void OnDisplayTitleBars(bool);
|
2019-02-16 15:19:29 +00:00
|
|
|
void InitializeHotkeys();
|
2018-01-16 14:50:33 +00:00
|
|
|
void ToggleFullscreen();
|
2018-01-16 14:59:30 +00:00
|
|
|
void ShowFullscreen();
|
|
|
|
void HideFullscreen();
|
2014-04-12 23:01:33 +00:00
|
|
|
void ToggleWindowMode();
|
2020-12-09 18:53:43 +00:00
|
|
|
void ResetWindowSize720();
|
|
|
|
void ResetWindowSize1080();
|
2018-08-31 06:16:16 +00:00
|
|
|
void OnCaptureScreenshot();
|
2017-04-13 05:18:54 +00:00
|
|
|
void OnCoreError(Core::System::ResultStatus, std::string);
|
2018-09-29 15:48:51 +00:00
|
|
|
void OnReinitializeKeys(ReinitializeKeyBehavior behavior);
|
2020-01-25 23:26:07 +00:00
|
|
|
void OnLanguageChanged(const QString& locale);
|
2020-12-30 19:41:14 +00:00
|
|
|
void OnMouseActivity();
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
private:
|
2020-07-17 10:06:56 +00:00
|
|
|
void RemoveBaseContent(u64 program_id, const QString& entry_type);
|
|
|
|
void RemoveUpdateContent(u64 program_id, const QString& entry_type);
|
|
|
|
void RemoveAddOnContent(u64 program_id, const QString& entry_type);
|
|
|
|
void RemoveTransferableShaderCache(u64 program_id);
|
|
|
|
void RemoveCustomConfiguration(u64 program_id);
|
2019-03-04 17:40:53 +00:00
|
|
|
std::optional<u64> SelectRomFSDumpTarget(const FileSys::ContentProvider&, u64 program_id);
|
2020-07-05 13:29:39 +00:00
|
|
|
InstallResult InstallNSPXCI(const QString& filename);
|
|
|
|
InstallResult InstallNCA(const QString& filename);
|
2020-09-27 18:20:22 +00:00
|
|
|
void MigrateConfigFiles();
|
2020-06-08 21:58:04 +00:00
|
|
|
void UpdateWindowTitle(const std::string& title_name = {},
|
|
|
|
const std::string& title_version = {});
|
2017-02-19 22:34:47 +00:00
|
|
|
void UpdateStatusBar();
|
configuration: implement per-game configurations (#4098)
* Switch game settings to use a pointer
In order to add full per-game settings, we need to be able to tell yuzu to switch
to using either the global or game configuration. Using a pointer makes it easier
to switch.
* configuration: add new UI without changing existing funcitonality
The new UI also adds General, System, Graphics, Advanced Graphics,
and Audio tabs, but as yet they do nothing. This commit keeps yuzu
to the same functionality as originally branched.
* configuration: Rename files
These weren't included in the last commit. Now they are.
* configuration: setup global configuration checkbox
Global config checkbox now enables/disables the appropriate tabs in the game
properties dialog. The use global configuration setting is now saved to the
config, defaulting to true. This also addresses some changes requested in the PR.
* configuration: swap to per-game config memory for properties dialog
Does not set memory going in-game. Swaps to game values when opening the
properties dialog, then swaps back when closing it. Uses a `memcpy` to swap.
Also implements saving config files, limited to certain groups of configurations
so as to not risk setting unsafe configurations.
* configuration: change config interfaces to use config-specific pointers
When a game is booted, we need to be able to open the configuration dialogs
without changing the settings pointer in the game's emualtion. A new pointer
specific to just the configuration dialogs can be used to separate changes
to just those config dialogs without affecting the emulation.
* configuration: boot a game using per-game settings
Swaps values where needed to boot a game.
* configuration: user correct config during emulation
Creates a new pointer specifically for modifying the configuration while
emulation is in progress. Both the regular configuration dialog and the game
properties dialog now use the pointer Settings::config_values to focus edits to
the correct struct.
* settings: split Settings::values into two different structs
By splitting the settings into two mutually exclusive structs, it becomes easier,
as a developer, to determine how to use the Settings structs after per-game
configurations is merged. Other benefits include only duplicating the required
settings in memory.
* settings: move use_docked_mode to Controls group
`use_docked_mode` is set in the input settings and cannot be accessed from the
system settings. Grouping it with system settings causes it to be saved with
per-game settings, which may make transferring configs more difficult later on,
especially since docked mode cannot be set from within the game properties
dialog.
* configuration: Fix the other yuzu executables and a regression
In main.cpp, we have to get the title ID before the ROM is loaded, else the
renderer will reflect only the global settings and now the user's game specific
settings.
* settings: use a template to duplicate memory for each setting
Replaces the type of each variable in the Settings::Values struct with a new
class that allows basic data reading and writing. The new struct
Settings::Setting duplicates the data in memory and can manage global overrides
per each setting.
* configuration: correct add-ons config and swap settings when apropriate
Any add-ons interaction happens directly through the global values struct.
Swapping bewteen structs now also includes copying the necessary global configs
that cannot be changed nor saved in per-game settings. General and System config
menus now update based on whether it is viewing the global or per-game settings.
* settings: restore old values struct
No longer needed with the Settings::Setting class template.
* configuration: implement hierarchical game properties dialog
This sets the apropriate global or local data in each setting.
* clang format
* clang format take 2
can the docker container save this?
* address comments and style issues
* config: read and write settings with global awareness
Adds new functions to read and write settings while keeping the global state in
focus. Files now generated per-game are much smaller since often they only need
address the global state.
* settings: restore global state when necessary
Upon closing a game or the game properties dialog, we need to restore all global
settings to the original global state so that we can properly open the
configuration dialog or boot a different game.
* configuration: guard setting values incorrectly
This disables setting values while a game is running if the setting is
overwritten by a per game setting.
* config: don't write local settings in the global config
Simple guards to prevent writing the wrong settings in the wrong files.
* configuration: add comments, assume less, and clang format
No longer assumes that a disabled UI element means the global state is turned
off, instead opting to directly answer that question. Still however assumes a
game is running if it is in that state.
* configuration: fix a logic error
Should not be negated
* restore settings' global state regardless of accept/cancel
Fixes loading a properties dialog and causing the global config dialog to show
local settings.
* fix more logic errors
Fixed the frame limit would set the global setting from the game properties
dialog. Also strengthened the Settings::Setting member variables and simplified
the logic in config reading (ReadSettingGlobal).
* fix another logic error
In my efforts to guard RestoreGlobalState, I accidentally negated the IsPowered
condition.
* configure_audio: set toggle_stretched_audio to tristate
* fixed custom rtc and rng seed overwriting the global value
* clang format
* rebased
* clang format take 4
* address my own review
Basically revert unintended changes
* settings: literal instead of casting
"No need to cast, use 1U instead"
Thanks, Morph!
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
* Revert "settings: literal instead of casting
"
This reverts commit 95e992a87c898f3e882ffdb415bb0ef9f80f613f.
* main: fix status buttons reporting wrong settings after stop emulation
* settings: Log UseDockedMode in the Controls group
This should have happened when use_docked_mode was moved over to the controls group
internally. This just reflects this in the log.
* main: load settings if the file has a title id
In other words, don't exit if the loader has trouble getting a title id.
* use a zero
* settings: initalize resolution factor with constructor instead of casting
* Revert "settings: initalize resolution factor with constructor instead of casting"
This reverts commit 54c35ecb46a29953842614620f9b7de1aa9d5dc8.
* configure_graphics: guard device selector when Vulkan is global
Prevents the user from editing the device selector if Vulkan is the global
renderer backend. Also resets the vulkan_device variable when the users
switches back-and-forth between global and Vulkan.
* address reviewer concerns
Changes function variables to const wherever they don't need to be changed. Sets Settings::Setting to final as it should not be inherited from. Sets ConfigurationShared::use_global_text to static.
Co-Authored-By: VolcaEM <volcaem@users.noreply.github.com>
* main: load per-game settings after LoadROM
This prevents `Restart Emulation` from restoring the global settings *after* the per-game settings were applied. Thanks to BSoDGamingYT for finding this bug.
* Revert "main: load per-game settings after LoadROM"
This reverts commit 9d0d48c52d2dcf3bfb1806cc8fa7d5a271a8a804.
* main: only restore global settings when necessary
Loading the per-game settings cannot happen after the ROM is loaded, so we have to specify when to restore the global state. Again thanks to BSoD for finding the bug.
* configuration_shared: address reviewer concerns except operator overrides
Dropping operator override usage in next commit.
Co-Authored-By: LC <lioncash@users.noreply.github.com>
* settings: Drop operator overrides from Setting template
Requires using GetValue and SetValue explicitly. Also reverts a change that broke title ID formatting in the game properties dialog.
* complete rebase
* configuration_shared: translate "Use global configuration"
Uses ConfigurePerGame to do so, since its usage, at least as of now, corresponds with ConfigurationShared.
* configure_per_game: address reviewer concern
As far as I understand, it prevents the program from unnecessarily copying strings.
Co-Authored-By: LC <lioncash@users.noreply.github.com>
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
Co-authored-by: VolcaEM <volcaem@users.noreply.github.com>
Co-authored-by: LC <lioncash@users.noreply.github.com>
2020-07-10 02:42:09 +00:00
|
|
|
void UpdateStatusButtons();
|
2020-12-22 07:29:30 +00:00
|
|
|
void UpdateUISettings();
|
2020-04-11 02:22:50 +00:00
|
|
|
void HideMouseCursor();
|
|
|
|
void ShowMouseCursor();
|
2020-06-25 21:28:38 +00:00
|
|
|
void OpenURL(const QUrl& url);
|
2020-01-25 23:26:07 +00:00
|
|
|
void LoadTranslation();
|
2020-08-11 18:57:29 +00:00
|
|
|
void OpenPerGameConfiguration(u64 title_id, const std::string& file_name);
|
2017-02-19 22:34:47 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
Ui::MainWindow ui;
|
|
|
|
|
2020-08-27 19:16:47 +00:00
|
|
|
std::unique_ptr<DiscordRPC::DiscordInterface> discord_rpc;
|
2020-08-29 04:44:27 +00:00
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem;
|
2020-08-27 19:16:47 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
GRenderWindow* render_window;
|
2015-09-01 04:35:33 +00:00
|
|
|
GameList* game_list;
|
2019-01-17 07:01:00 +00:00
|
|
|
LoadingScreen* loading_screen;
|
2015-04-29 04:01:41 +00:00
|
|
|
|
2019-05-01 21:21:04 +00:00
|
|
|
GameListPlaceholder* game_list_placeholder;
|
|
|
|
|
2017-02-18 20:09:14 +00:00
|
|
|
// Status bar elements
|
2017-04-13 05:10:19 +00:00
|
|
|
QLabel* message_label = nullptr;
|
2020-07-10 03:36:38 +00:00
|
|
|
QLabel* shader_building_label = nullptr;
|
2017-02-18 20:09:14 +00:00
|
|
|
QLabel* emu_speed_label = nullptr;
|
|
|
|
QLabel* game_fps_label = nullptr;
|
|
|
|
QLabel* emu_frametime_label = nullptr;
|
2020-01-28 22:59:30 +00:00
|
|
|
QPushButton* async_status_button = nullptr;
|
2020-03-16 01:34:22 +00:00
|
|
|
QPushButton* multicore_status_button = nullptr;
|
2020-01-28 22:59:30 +00:00
|
|
|
QPushButton* renderer_status_button = nullptr;
|
|
|
|
QPushButton* dock_status_button = nullptr;
|
2017-02-19 22:34:47 +00:00
|
|
|
QTimer status_bar_update_timer;
|
2017-02-18 20:09:14 +00:00
|
|
|
|
2016-01-24 20:23:55 +00:00
|
|
|
std::unique_ptr<Config> config;
|
|
|
|
|
2018-03-26 19:27:10 +00:00
|
|
|
// Whether emulation is currently running in yuzu.
|
2015-09-01 01:30:06 +00:00
|
|
|
bool emulation_running = false;
|
2015-04-29 04:01:41 +00:00
|
|
|
std::unique_ptr<EmuThread> emu_thread;
|
2018-08-21 11:12:45 +00:00
|
|
|
// The path to the game currently running
|
|
|
|
QString game_path;
|
2014-04-18 22:30:53 +00:00
|
|
|
|
2019-09-26 12:54:31 +00:00
|
|
|
bool auto_paused = false;
|
2020-04-11 02:22:50 +00:00
|
|
|
QTimer mouse_hide_timer;
|
2019-09-26 12:54:31 +00:00
|
|
|
|
2018-08-03 15:51:48 +00:00
|
|
|
// FS
|
2018-08-31 16:21:34 +00:00
|
|
|
std::shared_ptr<FileSys::VfsFilesystem> vfs;
|
2019-03-04 17:40:53 +00:00
|
|
|
std::unique_ptr<FileSys::ManualContentProvider> provider;
|
2018-08-03 15:51:48 +00:00
|
|
|
|
2017-02-18 20:09:14 +00:00
|
|
|
// Debugger panes
|
2015-02-05 16:53:25 +00:00
|
|
|
ProfilerWidget* profilerWidget;
|
2015-08-17 21:25:21 +00:00
|
|
|
MicroProfileDialog* microProfileDialog;
|
2016-04-08 16:28:54 +00:00
|
|
|
WaitTreeWidget* waitTreeWidget;
|
2021-02-04 14:54:27 +00:00
|
|
|
ControllerDialog* controller_dialog;
|
2015-07-28 16:43:18 +00:00
|
|
|
|
|
|
|
QAction* actions_recent_files[max_recent_files_item];
|
2017-02-16 03:23:30 +00:00
|
|
|
|
2018-03-30 09:50:10 +00:00
|
|
|
// stores default icon theme search paths for the platform
|
|
|
|
QStringList default_theme_paths;
|
|
|
|
|
2018-08-07 04:43:07 +00:00
|
|
|
HotkeyRegistry hotkey_registry;
|
|
|
|
|
2020-01-25 23:26:07 +00:00
|
|
|
QTranslator translator;
|
|
|
|
|
2020-07-05 13:29:39 +00:00
|
|
|
// Install progress dialog
|
|
|
|
QProgressDialog* install_progress;
|
|
|
|
|
2020-11-24 23:18:29 +00:00
|
|
|
// Last game booted, used for multi-process apps
|
|
|
|
QString last_filename_booted;
|
|
|
|
|
2020-11-30 15:34:18 +00:00
|
|
|
// Disables the web applet for the rest of the emulated session
|
|
|
|
bool disable_web_applet{};
|
|
|
|
|
2021-03-26 09:26:16 +00:00
|
|
|
// Applets
|
|
|
|
QtSoftwareKeyboardDialog* software_keyboard = nullptr;
|
|
|
|
|
2017-02-16 03:23:30 +00:00
|
|
|
protected:
|
|
|
|
void dropEvent(QDropEvent* event) override;
|
|
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
|
|
void dragMoveEvent(QDragMoveEvent* event) override;
|
2014-04-01 02:26:50 +00:00
|
|
|
};
|