Files
eden/src/yuzu/main.h
T

427 lines
13 KiB
C++
Raw Normal View History

2015-01-04 09:36:57 -08:00
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
2018-03-26 21:27:10 +02:00
#pragma once
2014-03-31 22:26:50 -04:00
2016-09-18 09:38:01 +09:00
#include <memory>
#include <optional>
2018-09-02 10:53:06 -04:00
2016-09-21 00:21:23 +09:00
#include <QMainWindow>
2017-04-30 04:04:39 +02:00
#include <QTimer>
2020-01-26 00:26:07 +01:00
#include <QTranslator>
2018-09-02 10:53:06 -04:00
#include "common/common_types.h"
#include "yuzu/compatibility_list.h"
#include "yuzu/hotkeys.h"
2014-03-31 22:26:50 -04:00
2021-12-21 02:47:24 -07:00
#ifdef __linux__
#include <QVariant>
#include <QtDBus/QDBusInterface>
#include <QtDBus/QtDBus>
#endif
2016-01-24 21:23:55 +01:00
class Config;
class EmuThread;
2015-08-31 21:35:33 -07:00
class GameList;
2014-03-31 22:26:50 -04:00
class GImageInfo;
class GRenderWindow;
class LoadingScreen;
class MicroProfileDialog;
class ProfilerWidget;
class ControllerDialog;
class QLabel;
class QPushButton;
2020-04-16 23:27:38 -04:00
class QProgressDialog;
2016-04-08 19:28:54 +03:00
class WaitTreeWidget;
enum class GameListOpenTarget;
enum class GameListRemoveTarget;
enum class DumpRomFSTarget;
enum class InstalledEntryType;
class GameListPlaceholder;
2014-03-31 22:26:50 -04:00
class QtSoftwareKeyboardDialog;
2021-06-07 20:22:39 -04:00
enum class StartGameType {
Normal, // Can use custom configuration
Global, // Only uses global configuration
};
2021-10-14 14:32:19 -04:00
namespace Core {
enum class SystemResultStatus : u32;
class System;
} // namespace Core
2018-11-11 16:39:25 -05:00
namespace Core::Frontend {
struct ControllerParameters;
struct InlineAppearParameters;
struct InlineTextParameters;
struct KeyboardInitializeParameters;
2018-11-11 16:39:25 -05:00
} // namespace Core::Frontend
2020-08-27 15:16:47 -04:00
namespace DiscordRPC {
class DiscordInterface;
}
namespace FileSys {
class ContentProvider;
class ManualContentProvider;
class VfsFilesystem;
} // namespace FileSys
2020-08-27 15:16:47 -04:00
namespace InputCommon {
class InputSubsystem;
}
namespace Service::AM::Applets {
enum class SwkbdResult : u32;
enum class SwkbdTextCheckResult : u32;
enum class SwkbdReplyType : u32;
enum class WebExitReason : u32;
} // namespace Service::AM::Applets
2021-10-15 15:27:18 -04:00
namespace Ui {
class MainWindow;
}
enum class EmulatedDirectoryTarget {
NAND,
SDMC,
};
2020-07-01 16:15:57 -04:00
enum class InstallResult {
Success,
Overwrite,
Failure,
BaseInstallAttempted,
2020-07-01 16:15:57 -04:00
};
enum class ReinitializeKeyBehavior {
NoWarning,
Warning,
};
2016-09-18 09:38:01 +09:00
class GMainWindow : public QMainWindow {
2014-03-31 22:26:50 -04:00
Q_OBJECT
/// Max number of recently loaded items to keep track of
static const int max_recent_files_item = 10;
2014-03-31 22:26:50 -04:00
// TODO: Make use of this!
enum {
UI_IDLE,
UI_EMU_BOOTING,
UI_EMU_RUNNING,
UI_EMU_STOPPING,
};
public:
2017-04-30 04:04:39 +02:00
void filterBarSetChecked(bool state);
void UpdateUITheme();
2021-10-14 14:32:19 -04:00
explicit GMainWindow();
~GMainWindow() override;
2014-03-31 22:26:50 -04:00
bool DropAction(QDropEvent* event);
void AcceptDropEvent(QDropEvent* event);
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();
2018-03-30 17:38:34 +02:00
// Signal that tells widgets to update icons to use the current theme
void UpdateThemedIcons();
2020-07-05 09:29:39 -04:00
void UpdateInstallProgress();
void ControllerSelectorReconfigureFinished();
void ErrorDisplayFinished();
void ProfileSelectorFinishedSelection(std::optional<Common::UUID> uuid);
void SoftwareKeyboardSubmitNormalText(Service::AM::Applets::SwkbdResult result,
std::u16string submitted_text, bool confirmed);
void SoftwareKeyboardSubmitInlineText(Service::AM::Applets::SwkbdReplyType reply_type,
std::u16string submitted_text, s32 cursor_position);
void WebBrowserExtractOfflineRomFS();
void WebBrowserClosed(Service::AM::Applets::WebExitReason exit_reason, std::string last_url);
2018-11-11 16:39:25 -05:00
public slots:
void OnLoadComplete();
void OnExecuteProgram(std::size_t program_index);
2021-09-25 23:18:14 -04:00
void OnExit();
void ControllerSelectorReconfigureControllers(
const Core::Frontend::ControllerParameters& parameters);
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();
void ErrorDisplayDisplayError(QString error_code, QString error_text);
void ProfileSelectorSelectProfile();
void WebBrowserOpenWebPage(const std::string& main_url, const std::string& additional_args,
bool is_local);
2019-09-26 14:54:31 +02:00
void OnAppFocusStateChanged(Qt::ApplicationState state);
2021-11-21 17:28:47 -08:00
void OnTasStateChanged();
2014-03-31 22:26:50 -04:00
private:
2021-11-15 17:57:41 -06:00
/// Updates an action's shortcut and text to reflect an updated hotkey from the hotkey registry.
void LinkActionShortcut(QAction* action, const QString& action_name);
void RegisterMetaTypes();
void InitializeWidgets();
2017-02-18 02:16:24 -08:00
void InitializeDebugWidgets();
void InitializeRecentFileMenuActions();
void SetDefaultUIGeometry();
void RestoreUIState();
void ConnectWidgetEvents();
2017-02-18 02:26:57 -08:00
void ConnectMenuEvents();
void UpdateMenuState();
2019-09-03 23:00:34 +02:00
void PreventOSSleep();
void AllowOSSleep();
bool LoadROM(const QString& filename, u64 program_id, std::size_t program_index);
void BootGame(const QString& filename, u64 program_id = 0, std::size_t program_index = 0,
2021-06-07 20:22:39 -04:00
StartGameType with_config = StartGameType::Normal);
void ShutdownGame();
2014-03-31 22:26:50 -04:00
2018-09-16 20:05:51 +02:00
void ShowTelemetryCallout();
void SetDiscordEnabled(bool state);
2019-11-02 19:22:36 +01:00
void LoadAmiibo(const QString& filename);
void SelectAndSetCurrentUser();
2015-08-17 22:50:52 +02: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-16 22:32:22 -08:00
void StoreRecentFile(const QString& filename);
2015-08-17 22:50:52 +02: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.
*/
void UpdateRecentFiles();
/**
* 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-15 21:23:30 -06:00
bool ConfirmChangeGame();
bool ConfirmForceLockedExit();
void RequestGameExit();
2022-07-14 18:42:56 -07:00
void RequestGameResume();
2014-10-26 02:56:13 -02:00
void closeEvent(QCloseEvent* event) override;
2014-03-31 22:26:50 -04:00
private slots:
2014-04-30 23:46:57 -04:00
void OnStartGame();
void OnRestartGame();
2014-04-30 23:46:57 -04:00
void OnPauseGame();
void OnPauseContinueGame();
2014-04-30 23:46:57 -04:00
void OnStopGame();
2018-09-16 20:05:51 +02:00
void OnMenuReportCompatibility();
2020-06-21 18:09:14 +02:00
void OnOpenModsPage();
2020-06-26 18:49:57 +02:00
void OnOpenQuickstartGuide();
2020-06-27 02:13:34 +02:00
void OnOpenFAQ();
2015-08-31 21:35:33 -07:00
/// Called whenever a user selects a game in the game list widget.
void OnGameListLoadFile(QString game_path, u64 program_id);
void OnGameListOpenFolder(u64 program_id, GameListOpenTarget target,
const std::string& game_path);
void OnTransferableShaderCacheOpenFile(u64 program_id);
void OnGameListRemoveInstalledEntry(u64 program_id, InstalledEntryType type);
void OnGameListRemoveFile(u64 program_id, GameListRemoveTarget target,
2021-06-02 15:05:45 -04:00
const std::string& game_path);
void OnGameListDumpRomFS(u64 program_id, const std::string& game_path, DumpRomFSTarget target);
void OnGameListCopyTID(u64 program_id);
void OnGameListNavigateToGamedbEntry(u64 program_id,
const CompatibilityList& compatibility_list);
2019-05-03 19:21:57 +02:00
void OnGameListOpenDirectory(const QString& directory);
void OnGameListAddDirectory();
void OnGameListShowList(bool show);
void OnGameListOpenPerGameProperties(const std::string& file);
2014-04-30 23:46:57 -04:00
void OnMenuLoadFile();
2018-06-14 12:27:29 -04:00
void OnMenuLoadFolder();
2020-07-05 09:29:39 -04:00
void IncrementInstallProgress();
2018-08-09 21:33:13 -04:00
void OnMenuInstallToNAND();
void OnMenuRecentFile();
2014-03-31 22:26:50 -04:00
void OnConfigure();
2021-06-19 14:38:49 -05:00
void OnConfigureTas();
2021-11-21 17:28:47 -08:00
void OnTasStartStop();
void OnTasRecord();
void OnTasReset();
void OnToggleDockedMode();
void OnToggleGpuAccuracy();
void OnToggleAdaptingFilter();
void OnConfigurePerGame();
2018-10-24 10:28:17 +11:00
void OnLoadAmiibo();
2018-11-01 22:05:44 -04:00
void OnOpenYuzuFolder();
2018-01-14 19:15:45 +01:00
void OnAbout();
2017-04-30 04:04:39 +02:00
void OnToggleFilterBar();
2021-11-15 17:57:41 -06:00
void OnToggleStatusBar();
void OnDisplayTitleBars(bool);
2019-02-16 16:19:29 +01:00
void InitializeHotkeys();
void ToggleFullscreen();
void ShowFullscreen();
void HideFullscreen();
void ToggleWindowMode();
void ResetWindowSize(u32 width, u32 height);
2020-12-09 12:53:43 -06:00
void ResetWindowSize720();
void ResetWindowSize900();
2020-12-09 12:53:43 -06:00
void ResetWindowSize1080();
2018-08-31 14:16:16 +08:00
void OnCaptureScreenshot();
2021-10-14 18:14:40 -04:00
void OnCoreError(Core::SystemResultStatus, std::string);
void OnReinitializeKeys(ReinitializeKeyBehavior behavior);
2020-01-26 00:26:07 +01:00
void OnLanguageChanged(const QString& locale);
void OnMouseActivity();
2014-03-31 22:26:50 -04:00
private:
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);
2021-07-11 14:39:13 -04:00
void RemoveTransferableShaderCache(u64 program_id, GameListRemoveTarget target);
void RemoveAllTransferableShaderCaches(u64 program_id);
2021-06-02 15:05:45 -04:00
void RemoveCustomConfiguration(u64 program_id, const std::string& game_path);
std::optional<u64> SelectRomFSDumpTarget(const FileSys::ContentProvider&, u64 program_id);
2020-07-05 09:29:39 -04:00
InstallResult InstallNSPXCI(const QString& filename);
InstallResult InstallNCA(const QString& filename);
void MigrateConfigFiles();
void UpdateWindowTitle(std::string_view title_name = {}, std::string_view title_version = {},
std::string_view gpu_vendor = {});
void UpdateDockedButton();
2021-10-21 02:05:16 +02:00
void UpdateFilterText();
2021-10-22 22:56:08 +02:00
void UpdateAAText();
2017-02-19 14:34:47 -08:00
void UpdateStatusBar();
void UpdateGPUAccuracyButton();
void UpdateStatusButtons();
void UpdateUISettings();
2020-04-11 04:22:50 +02:00
void HideMouseCursor();
void ShowMouseCursor();
void CenterMouseCursor();
2020-06-25 23:28:38 +02:00
void OpenURL(const QUrl& url);
2020-01-26 00:26:07 +01:00
void LoadTranslation();
void OpenPerGameConfiguration(u64 title_id, const std::string& file_name);
2021-11-21 17:28:47 -08:00
2021-06-20 00:04:34 +02:00
QString GetTasStateDescription() const;
2017-02-19 14:34:47 -08:00
2021-10-15 15:27:18 -04:00
std::unique_ptr<Ui::MainWindow> ui;
2014-03-31 22:26:50 -04:00
2021-10-14 14:32:19 -04:00
std::unique_ptr<Core::System> system;
2020-08-27 15:16:47 -04:00
std::unique_ptr<DiscordRPC::DiscordInterface> discord_rpc;
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem;
2020-08-27 15:16:47 -04:00
2014-03-31 22:26:50 -04:00
GRenderWindow* render_window;
2015-08-31 21:35:33 -07:00
GameList* game_list;
LoadingScreen* loading_screen;
GameListPlaceholder* game_list_placeholder;
2017-02-18 12:09:14 -08:00
// Status bar elements
QLabel* message_label = nullptr;
2020-07-10 13:36:38 +10:00
QLabel* shader_building_label = nullptr;
QLabel* res_scale_label = nullptr;
2017-02-18 12:09:14 -08:00
QLabel* emu_speed_label = nullptr;
QLabel* game_fps_label = nullptr;
QLabel* emu_frametime_label = nullptr;
QLabel* tas_label = nullptr;
QPushButton* gpu_accuracy_button = nullptr;
QPushButton* renderer_status_button = nullptr;
QPushButton* dock_status_button = nullptr;
2021-10-21 02:05:16 +02:00
QPushButton* filter_status_button = nullptr;
2021-10-22 22:56:08 +02:00
QPushButton* aa_status_button = nullptr;
2017-02-19 14:34:47 -08:00
QTimer status_bar_update_timer;
2017-02-18 12:09:14 -08:00
2016-01-24 21:23:55 +01:00
std::unique_ptr<Config> config;
2018-03-26 21:27:10 +02:00
// Whether emulation is currently running in yuzu.
bool emulation_running = false;
std::unique_ptr<EmuThread> emu_thread;
// The path to the game currently running
2022-05-26 19:57:35 -04:00
QString current_game_path;
2014-04-18 18:30:53 -04:00
2019-09-26 14:54:31 +02:00
bool auto_paused = false;
2022-02-06 20:46:22 -06:00
bool auto_muted = false;
2020-04-11 04:22:50 +02:00
QTimer mouse_hide_timer;
QTimer mouse_center_timer;
2019-09-26 14:54:31 +02:00
// FS
std::shared_ptr<FileSys::VfsFilesystem> vfs;
std::unique_ptr<FileSys::ManualContentProvider> provider;
2017-02-18 12:09:14 -08:00
// Debugger panes
2015-02-05 14:53:25 -02:00
ProfilerWidget* profilerWidget;
MicroProfileDialog* microProfileDialog;
2016-04-08 19:28:54 +03:00
WaitTreeWidget* waitTreeWidget;
2021-02-04 08:54:27 -06:00
ControllerDialog* controller_dialog;
QAction* actions_recent_files[max_recent_files_item];
2017-02-15 21:23:30 -06:00
2018-03-30 11:50:10 +02:00
// stores default icon theme search paths for the platform
QStringList default_theme_paths;
HotkeyRegistry hotkey_registry;
2020-01-26 00:26:07 +01:00
QTranslator translator;
2020-07-05 09:29:39 -04:00
// Install progress dialog
QProgressDialog* install_progress;
// Last game booted, used for multi-process apps
QString last_filename_booted;
// Applets
QtSoftwareKeyboardDialog* software_keyboard = nullptr;
2021-11-15 17:57:41 -06:00
// True if amiibo file select is visible
bool is_amiibo_file_select_active{};
// True if load file select is visible
bool is_load_file_select_active{};
// True if TAS recording dialog is visible
bool is_tas_recording_dialog_active{};
2021-12-21 02:47:24 -07:00
#ifdef __linux__
QDBusObjectPath wake_lock{};
#endif
2017-02-15 21:23:30 -06:00
protected:
void dropEvent(QDropEvent* event) override;
void dragEnterEvent(QDragEnterEvent* event) override;
void dragMoveEvent(QDragMoveEvent* event) override;
void leaveEvent(QEvent* event) override;
2014-03-31 22:26:50 -04:00
};