2026-01-19 23:58:14 +01:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
2025-06-27 23:23:25 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2022-05-15 02:06:02 +02:00
|
|
|
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-01-04 09:36:57 -08:00
|
|
|
|
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>
|
2018-10-30 05:03:25 +01:00
|
|
|
#include <optional>
|
2018-09-02 10:53:06 -04:00
|
|
|
|
2023-10-15 02:02:22 -03:00
|
|
|
#include <filesystem>
|
2016-09-21 00:21:23 +09:00
|
|
|
#include <QMainWindow>
|
2023-07-25 22:31:39 +02:00
|
|
|
#include <QMessageBox>
|
2023-10-29 02:46:25 +02:00
|
|
|
#include <QPushButton>
|
2017-04-30 04:04:39 +02:00
|
|
|
#include <QTimer>
|
2020-01-26 00:26:07 +01:00
|
|
|
#include <QTranslator>
|
2026-02-07 22:48:39 +01:00
|
|
|
#include <qaction.h>
|
2018-09-02 10:53:06 -04:00
|
|
|
|
|
|
|
|
#include "common/common_types.h"
|
2026-02-06 19:51:01 +01:00
|
|
|
#include "common/settings_enums.h"
|
2024-01-19 00:56:43 -05:00
|
|
|
#include "frontend_common/content_manager.h"
|
2026-01-31 01:18:36 +01:00
|
|
|
#include "frontend_common/update_checker.h"
|
2022-01-21 19:21:47 +01:00
|
|
|
#include "input_common/drivers/tas_input.h"
|
2025-10-15 05:05:03 +02:00
|
|
|
#include "qt_common/config/qt_config.h"
|
|
|
|
|
#include "qt_common/util/game.h"
|
|
|
|
|
#include "yuzu/user_data_migration.h"
|
2018-09-09 19:09:37 -04:00
|
|
|
#include "yuzu/compatibility_list.h"
|
2018-08-07 00:43:07 -04:00
|
|
|
#include "yuzu/hotkeys.h"
|
2014-03-31 22:26:50 -04:00
|
|
|
|
2022-11-04 12:12:46 +00:00
|
|
|
#ifdef __unix__
|
2025-05-28 02:23:51 +00:00
|
|
|
#include <QDBusObjectPath>
|
2021-12-21 02:47:24 -07:00
|
|
|
#include <QVariant>
|
|
|
|
|
#include <QtDBus/QDBusInterface>
|
2025-11-09 18:07:38 +01:00
|
|
|
#include <QSocketNotifier>
|
2021-12-21 02:47:24 -07:00
|
|
|
#endif
|
|
|
|
|
|
2025-10-21 23:36:35 +02:00
|
|
|
#ifdef ENABLE_UPDATE_CHECKER
|
2025-05-28 02:23:51 +00:00
|
|
|
#include <QFuture>
|
|
|
|
|
#include <QFutureWatcher>
|
|
|
|
|
#endif
|
|
|
|
|
|
2023-11-12 02:03:01 -05:00
|
|
|
class QtConfig;
|
2016-12-19 14:50:58 -05:00
|
|
|
class EmuThread;
|
2015-08-31 21:35:33 -07:00
|
|
|
class GameList;
|
2014-03-31 22:26:50 -04:00
|
|
|
class GImageInfo;
|
|
|
|
|
class GRenderWindow;
|
2019-01-17 00:01:00 -07:00
|
|
|
class LoadingScreen;
|
2022-12-18 23:09:44 -05:00
|
|
|
class OverlayDialog;
|
2021-01-21 18:51:24 -06:00
|
|
|
class ControllerDialog;
|
2018-12-24 16:23:31 -05:00
|
|
|
class QLabel;
|
2021-12-25 20:27:52 +01:00
|
|
|
class MultiplayerState;
|
2020-01-28 23:59:30 +01:00
|
|
|
class QPushButton;
|
2020-04-16 23:27:38 -04:00
|
|
|
class QProgressDialog;
|
2023-01-19 15:13:23 +01:00
|
|
|
class QSlider;
|
|
|
|
|
class QHBoxLayout;
|
2016-04-08 19:28:54 +03:00
|
|
|
class WaitTreeWidget;
|
2026-02-15 19:22:19 +01:00
|
|
|
class PerformanceOverlay;
|
2018-08-20 21:46:40 -07:00
|
|
|
enum class GameListOpenTarget;
|
2021-06-14 17:13:08 -04:00
|
|
|
enum class DumpRomFSTarget;
|
2019-05-01 23:21:04 +02:00
|
|
|
class GameListPlaceholder;
|
2014-03-31 22:26:50 -04:00
|
|
|
|
2023-03-25 13:29:08 -04:00
|
|
|
class QtAmiiboSettingsDialog;
|
|
|
|
|
class QtControllerSelectorDialog;
|
|
|
|
|
class QtProfileSelectionDialog;
|
2021-03-26 05:26:16 -04:00
|
|
|
class QtSoftwareKeyboardDialog;
|
2023-03-25 13:29:08 -04:00
|
|
|
class QtNXWebEngineView;
|
2021-03-26 05:26:16 -04:00
|
|
|
|
2021-06-07 20:22:39 -04:00
|
|
|
enum class StartGameType {
|
|
|
|
|
Normal, // Can use custom configuration
|
|
|
|
|
Global, // Only uses global configuration
|
|
|
|
|
};
|
|
|
|
|
|
2026-02-15 19:22:19 +01:00
|
|
|
namespace VideoCore {
|
|
|
|
|
class ShaderNotify;
|
|
|
|
|
}
|
2021-10-14 14:32:19 -04:00
|
|
|
namespace Core {
|
|
|
|
|
enum class SystemResultStatus : u32;
|
|
|
|
|
} // namespace Core
|
|
|
|
|
|
2018-11-11 16:39:25 -05:00
|
|
|
namespace Core::Frontend {
|
2022-11-13 13:43:03 -06:00
|
|
|
struct CabinetParameters;
|
2020-08-21 07:39:24 -04:00
|
|
|
struct ControllerParameters;
|
2021-03-26 05:26:16 -04:00
|
|
|
struct InlineAppearParameters;
|
|
|
|
|
struct InlineTextParameters;
|
|
|
|
|
struct KeyboardInitializeParameters;
|
2023-03-28 20:55:06 -06:00
|
|
|
struct ProfileSelectParameters;
|
2018-11-11 16:39:25 -05:00
|
|
|
} // namespace Core::Frontend
|
|
|
|
|
|
2020-08-27 15:16:47 -04:00
|
|
|
namespace DiscordRPC {
|
|
|
|
|
class DiscordInterface;
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-26 21:19:00 -04:00
|
|
|
namespace PlayTime {
|
|
|
|
|
class PlayTimeManager;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-31 12:21:34 -04:00
|
|
|
namespace FileSys {
|
2019-03-04 12:40:53 -05:00
|
|
|
class ContentProvider;
|
|
|
|
|
class ManualContentProvider;
|
2018-08-31 12:21:34 -04:00
|
|
|
class VfsFilesystem;
|
2018-10-17 18:27:23 -04:00
|
|
|
} // namespace FileSys
|
2018-08-31 12:21:34 -04:00
|
|
|
|
2020-08-27 15:16:47 -04:00
|
|
|
namespace InputCommon {
|
|
|
|
|
class InputSubsystem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-01-02 18:26:53 -05:00
|
|
|
namespace Service::AM {
|
|
|
|
|
struct FrontendAppletParameters;
|
|
|
|
|
enum class AppletId : u32;
|
2026-01-19 03:26:21 +01:00
|
|
|
// this causes errors on debian -> enum class AppletProgramId : u64;
|
2024-01-02 18:26:53 -05:00
|
|
|
} // namespace Service::AM
|
|
|
|
|
|
2023-12-31 09:40:32 -05:00
|
|
|
namespace Service::AM::Frontend {
|
2021-03-26 05:26:16 -04:00
|
|
|
enum class SwkbdResult : u32;
|
|
|
|
|
enum class SwkbdTextCheckResult : u32;
|
|
|
|
|
enum class SwkbdReplyType : u32;
|
2020-11-30 08:31:26 -05:00
|
|
|
enum class WebExitReason : u32;
|
2023-12-31 09:40:32 -05:00
|
|
|
} // namespace Service::AM::Frontend
|
2020-11-30 08:31:26 -05:00
|
|
|
|
2023-04-19 19:01:23 -06:00
|
|
|
namespace Service::NFC {
|
|
|
|
|
class NfcDevice;
|
|
|
|
|
} // namespace Service::NFC
|
2022-11-13 13:43:03 -06:00
|
|
|
|
2023-09-28 22:35:08 -06:00
|
|
|
namespace Service::NFP {
|
|
|
|
|
enum class CabinetMode : u8;
|
|
|
|
|
} // namespace Service::NFP
|
|
|
|
|
|
2021-10-15 15:27:18 -04:00
|
|
|
namespace Ui {
|
|
|
|
|
class MainWindow;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-03 19:23:10 -04:00
|
|
|
enum class EmulatedDirectoryTarget {
|
|
|
|
|
NAND,
|
|
|
|
|
SDMC,
|
|
|
|
|
};
|
|
|
|
|
|
2023-05-28 21:46:02 +00:00
|
|
|
namespace VkDeviceInfo {
|
|
|
|
|
class Record;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-29 02:46:25 +02:00
|
|
|
class VolumeButton : public QPushButton {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
explicit VolumeButton(QWidget* parent = nullptr) : QPushButton(parent), scroll_multiplier(1) {
|
|
|
|
|
connect(&scroll_timer, &QTimer::timeout, this, &VolumeButton::ResetMultiplier);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void VolumeChanged();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
void wheelEvent(QWheelEvent* event) override;
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void ResetMultiplier();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
int scroll_multiplier;
|
|
|
|
|
QTimer scroll_timer;
|
|
|
|
|
constexpr static int MaxMultiplier = 8;
|
|
|
|
|
};
|
|
|
|
|
|
2025-11-09 18:07:38 +01:00
|
|
|
class MainWindow : public QMainWindow {
|
2014-03-31 22:26:50 -04:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
2016-09-18 18:01:46 -07:00
|
|
|
/// Max number of recently loaded items to keep track of
|
|
|
|
|
static const int max_recent_files_item = 10;
|
2015-07-28 18:43:18 +02:00
|
|
|
|
2014-03-31 22:26:50 -04:00
|
|
|
public:
|
2017-04-30 04:04:39 +02:00
|
|
|
void filterBarSetChecked(bool state);
|
2017-06-24 02:41:11 +02:00
|
|
|
void UpdateUITheme();
|
2025-11-09 18:07:38 +01:00
|
|
|
explicit MainWindow(bool has_broken_vulkan);
|
|
|
|
|
~MainWindow() override;
|
2014-03-31 22:26:50 -04:00
|
|
|
|
2020-02-17 15:49:52 -05:00
|
|
|
bool DropAction(QDropEvent* event);
|
|
|
|
|
void AcceptDropEvent(QDropEvent* event);
|
|
|
|
|
|
2025-09-15 17:21:18 +02:00
|
|
|
std::filesystem::path GetShortcutPath(QtCommon::Game::ShortcutTarget target);
|
2025-05-29 06:35:00 +00:00
|
|
|
|
2015-04-29 00:01:41 -04: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 18:35:09 -04:00
|
|
|
|
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();
|
|
|
|
|
|
2022-11-13 15:14:08 -06:00
|
|
|
void AmiiboSettingsFinished(bool is_success, const std::string& name);
|
2022-11-13 13:43:03 -06:00
|
|
|
|
2023-03-26 21:26:28 -06:00
|
|
|
void ControllerSelectorReconfigureFinished(bool is_success);
|
2020-08-21 07:39:24 -04:00
|
|
|
|
2019-03-11 19:45:22 -04:00
|
|
|
void ErrorDisplayFinished();
|
|
|
|
|
|
2019-01-10 21:53:07 -05:00
|
|
|
void ProfileSelectorFinishedSelection(std::optional<Common::UUID> uuid);
|
2020-08-21 07:39:24 -04:00
|
|
|
|
2023-12-31 09:40:32 -05:00
|
|
|
void SoftwareKeyboardSubmitNormalText(Service::AM::Frontend::SwkbdResult result,
|
2021-11-08 13:05:50 -05:00
|
|
|
std::u16string submitted_text, bool confirmed);
|
2023-12-31 09:40:32 -05:00
|
|
|
void SoftwareKeyboardSubmitInlineText(Service::AM::Frontend::SwkbdReplyType reply_type,
|
2021-03-27 15:15:32 -04:00
|
|
|
std::u16string submitted_text, s32 cursor_position);
|
|
|
|
|
|
2020-11-30 10:15:00 -05:00
|
|
|
void WebBrowserExtractOfflineRomFS();
|
2023-12-31 09:40:32 -05:00
|
|
|
void WebBrowserClosed(Service::AM::Frontend::WebExitReason exit_reason, std::string last_url);
|
2020-11-30 08:31:26 -05:00
|
|
|
|
2022-07-27 12:51:26 -07:00
|
|
|
void SigInterrupt();
|
2026-02-15 19:22:19 +01:00
|
|
|
void sizeChanged(const QSize &size);
|
|
|
|
|
void positionChanged(const QPoint &pos);
|
|
|
|
|
void statsUpdated(const Core::PerfStatsResults &results, const VideoCore::ShaderNotify &shaders);
|
2022-07-27 12:51:26 -07:00
|
|
|
|
2018-11-11 16:39:25 -05:00
|
|
|
public slots:
|
2019-01-17 00:01:00 -07:00
|
|
|
void OnLoadComplete();
|
2020-11-24 15:18:29 -08:00
|
|
|
void OnExecuteProgram(std::size_t program_index);
|
2021-09-25 23:18:14 -04:00
|
|
|
void OnExit();
|
2022-09-09 15:29:22 -05:00
|
|
|
void OnSaveConfig();
|
2022-11-13 15:14:08 -06:00
|
|
|
void AmiiboSettingsShowDialog(const Core::Frontend::CabinetParameters& parameters,
|
2023-04-19 19:01:23 -06:00
|
|
|
std::shared_ptr<Service::NFC::NfcDevice> nfp_device);
|
2023-03-25 13:29:08 -04:00
|
|
|
void AmiiboSettingsRequestExit();
|
2020-08-21 07:39:24 -04:00
|
|
|
void ControllerSelectorReconfigureControllers(
|
|
|
|
|
const Core::Frontend::ControllerParameters& parameters);
|
2023-03-25 13:29:08 -04:00
|
|
|
void ControllerSelectorRequestExit();
|
2021-03-27 15:15:32 -04:00
|
|
|
void SoftwareKeyboardInitialize(
|
|
|
|
|
bool is_inline, Core::Frontend::KeyboardInitializeParameters initialize_parameters);
|
|
|
|
|
void SoftwareKeyboardShowNormal();
|
2023-12-31 09:40:32 -05:00
|
|
|
void SoftwareKeyboardShowTextCheck(
|
|
|
|
|
Service::AM::Frontend::SwkbdTextCheckResult text_check_result,
|
|
|
|
|
std::u16string text_check_message);
|
2021-03-27 15:15:32 -04:00
|
|
|
void SoftwareKeyboardShowInline(Core::Frontend::InlineAppearParameters appear_parameters);
|
|
|
|
|
void SoftwareKeyboardHideInline();
|
|
|
|
|
void SoftwareKeyboardInlineTextChanged(Core::Frontend::InlineTextParameters text_parameters);
|
|
|
|
|
void SoftwareKeyboardExit();
|
2021-03-26 06:07:27 -04:00
|
|
|
void ErrorDisplayDisplayError(QString error_code, QString error_text);
|
2023-03-25 13:29:08 -04:00
|
|
|
void ErrorDisplayRequestExit();
|
2023-03-28 20:55:06 -06:00
|
|
|
void ProfileSelectorSelectProfile(const Core::Frontend::ProfileSelectParameters& parameters);
|
2023-03-25 13:29:08 -04:00
|
|
|
void ProfileSelectorRequestExit();
|
2021-04-28 11:32:44 -04:00
|
|
|
void WebBrowserOpenWebPage(const std::string& main_url, const std::string& additional_args,
|
2020-12-08 06:20:45 -05:00
|
|
|
bool is_local);
|
2023-03-25 13:29:08 -04:00
|
|
|
void WebBrowserRequestExit();
|
2019-09-26 14:54:31 +02:00
|
|
|
void OnAppFocusStateChanged(Qt::ApplicationState state);
|
2021-11-21 17:28:47 -08:00
|
|
|
void OnTasStateChanged();
|
2018-12-24 16:23:31 -05:00
|
|
|
|
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.
|
2023-04-28 17:42:18 +01:00
|
|
|
void LinkActionShortcut(QAction* action, const QString& action_name,
|
|
|
|
|
const bool tas_allowed = false);
|
2021-11-15 17:57:41 -06:00
|
|
|
|
2016-12-19 14:50:58 -05:00
|
|
|
void InitializeWidgets();
|
2017-02-18 02:16:24 -08:00
|
|
|
void InitializeDebugWidgets();
|
2016-12-19 14:50:58 -05:00
|
|
|
void InitializeRecentFileMenuActions();
|
|
|
|
|
|
|
|
|
|
void SetDefaultUIGeometry();
|
|
|
|
|
void RestoreUIState();
|
|
|
|
|
|
|
|
|
|
void ConnectWidgetEvents();
|
2017-02-18 02:26:57 -08:00
|
|
|
void ConnectMenuEvents();
|
2021-11-24 18:27:25 -08:00
|
|
|
void UpdateMenuState();
|
2016-12-19 14:50:58 -05:00
|
|
|
|
2022-07-27 16:46:03 -07:00
|
|
|
void SetupPrepareForSleep();
|
2021-12-25 20:27:52 +01:00
|
|
|
|
2019-09-03 23:00:34 +02:00
|
|
|
void PreventOSSleep();
|
|
|
|
|
void AllowOSSleep();
|
|
|
|
|
|
2024-01-02 18:26:53 -05:00
|
|
|
bool LoadROM(const QString& filename, Service::AM::FrontendAppletParameters params);
|
|
|
|
|
void BootGame(const QString& filename, Service::AM::FrontendAppletParameters params,
|
|
|
|
|
StartGameType with_config = StartGameType::Normal);
|
|
|
|
|
void BootGameFromList(const QString& filename, StartGameType with_config);
|
2015-04-27 23:13:57 -04:00
|
|
|
void ShutdownGame();
|
2014-03-31 22:26:50 -04:00
|
|
|
|
2018-09-16 20:05:51 +02:00
|
|
|
void SetDiscordEnabled(bool state);
|
2019-11-02 19:22:36 +01:00
|
|
|
void LoadAmiibo(const QString& filename);
|
2017-08-08 20:06:25 -04:00
|
|
|
|
2023-03-28 20:55:06 -06:00
|
|
|
bool SelectAndSetCurrentUser(const Core::Frontend::ProfileSelectParameters& parameters);
|
2018-12-25 10:42:02 -05:00
|
|
|
|
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.
|
|
|
|
|
*/
|
2015-07-28 18:43:18 +02:00
|
|
|
void UpdateRecentFiles();
|
|
|
|
|
|
2016-01-10 13:31:20 +01: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-15 21:23:30 -06:00
|
|
|
bool ConfirmChangeGame();
|
2019-09-21 22:46:53 -04:00
|
|
|
bool ConfirmForceLockedExit();
|
|
|
|
|
void RequestGameExit();
|
2022-07-28 07:50:20 -07:00
|
|
|
void changeEvent(QEvent* event) override;
|
2014-10-26 02:56:13 -02:00
|
|
|
void closeEvent(QCloseEvent* event) override;
|
2026-02-15 19:22:19 +01:00
|
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
|
|
|
void moveEvent(QMoveEvent *event) override;
|
2014-03-31 22:26:50 -04:00
|
|
|
|
2022-01-21 19:21:47 +01:00
|
|
|
std::string CreateTASFramesString(
|
|
|
|
|
std::array<size_t, InputCommon::TasInput::PLAYER_NUMBER> frames) const;
|
|
|
|
|
|
2022-11-04 12:12:46 +00:00
|
|
|
#ifdef __unix__
|
2022-07-27 12:51:26 -07:00
|
|
|
void SetupSigInterrupts();
|
|
|
|
|
static void HandleSigInterrupt(int);
|
|
|
|
|
void OnSigInterruptNotifierActivated();
|
|
|
|
|
#endif
|
2025-12-07 07:13:43 +01:00
|
|
|
void SetGamemodeEnabled(bool state);
|
2022-07-27 12:51:26 -07:00
|
|
|
|
2024-01-02 18:26:53 -05:00
|
|
|
Service::AM::FrontendAppletParameters ApplicationAppletParameters();
|
|
|
|
|
Service::AM::FrontendAppletParameters LibraryAppletParameters(u64 program_id,
|
|
|
|
|
Service::AM::AppletId applet_id);
|
|
|
|
|
|
2014-03-31 22:26:50 -04:00
|
|
|
private slots:
|
2014-04-30 23:46:57 -04:00
|
|
|
void OnStartGame();
|
2021-11-24 18:27:25 -08:00
|
|
|
void OnRestartGame();
|
2014-04-30 23:46:57 -04:00
|
|
|
void OnPauseGame();
|
2021-11-24 18:27:25 -08:00
|
|
|
void OnPauseContinueGame();
|
2014-04-30 23:46:57 -04:00
|
|
|
void OnStopGame();
|
2022-07-27 16:46:03 -07:00
|
|
|
void OnPrepareForSleep(bool prepare_sleep);
|
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();
|
2025-08-08 01:56:42 +02:00
|
|
|
|
2015-08-31 21:35:33 -07:00
|
|
|
/// Called whenever a user selects a game in the game list widget.
|
2021-07-20 13:10:05 +08:00
|
|
|
void OnGameListLoadFile(QString game_path, u64 program_id);
|
2020-07-19 07:14:46 -04:00
|
|
|
void OnGameListOpenFolder(u64 program_id, GameListOpenTarget target,
|
|
|
|
|
const std::string& game_path);
|
2025-09-15 17:21:18 +02:00
|
|
|
void OnGameListRemoveInstalledEntry(u64 program_id, QtCommon::Game::InstalledEntryType type);
|
|
|
|
|
void OnGameListRemoveFile(u64 program_id, QtCommon::Game::GameListRemoveTarget target,
|
2021-06-02 15:05:45 -04:00
|
|
|
const std::string& game_path);
|
2023-08-26 21:19:00 -04:00
|
|
|
void OnGameListRemovePlayTimeData(u64 program_id);
|
2025-10-17 22:47:43 +02:00
|
|
|
void OnGameListSetPlayTime(u64 program_id);
|
2021-06-14 17:13:08 -04:00
|
|
|
void OnGameListDumpRomFS(u64 program_id, const std::string& game_path, DumpRomFSTarget target);
|
2023-09-06 01:06:03 -04:00
|
|
|
void OnGameListVerifyIntegrity(const std::string& game_path);
|
2018-09-19 22:09:23 -04:00
|
|
|
void OnGameListCopyTID(u64 program_id);
|
2018-09-09 19:35:05 -04:00
|
|
|
void OnGameListNavigateToGamedbEntry(u64 program_id,
|
|
|
|
|
const CompatibilityList& compatibility_list);
|
2025-09-15 17:21:18 +02:00
|
|
|
void OnGameListCreateShortcut(u64 program_id,
|
|
|
|
|
const std::string& game_path,
|
|
|
|
|
const QtCommon::Game::ShortcutTarget target);
|
2019-05-03 19:21:57 +02:00
|
|
|
void OnGameListOpenDirectory(const QString& directory);
|
2019-05-01 23:21:04 +02:00
|
|
|
void OnGameListAddDirectory();
|
|
|
|
|
void OnGameListShowList(bool show);
|
2018-12-04 13:34:46 -05:00
|
|
|
void OnGameListOpenPerGameProperties(const std::string& file);
|
2025-10-28 03:46:47 +01:00
|
|
|
void OnLinkToRyujinx(const u64& program_id);
|
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();
|
2015-07-28 18:43:18 +02:00
|
|
|
void OnMenuRecentFile();
|
2014-03-31 22:26:50 -04:00
|
|
|
void OnConfigure();
|
2021-06-19 14:38:49 -05:00
|
|
|
void OnConfigureTas();
|
2023-01-19 15:13:23 +01:00
|
|
|
void OnDecreaseVolume();
|
|
|
|
|
void OnIncreaseVolume();
|
|
|
|
|
void OnMute();
|
2021-11-21 17:28:47 -08:00
|
|
|
void OnTasStartStop();
|
|
|
|
|
void OnTasRecord();
|
|
|
|
|
void OnTasReset();
|
2022-11-27 20:37:37 -05:00
|
|
|
void OnToggleGraphicsAPI();
|
2022-02-06 20:27:38 -06:00
|
|
|
void OnToggleDockedMode();
|
|
|
|
|
void OnToggleGpuAccuracy();
|
|
|
|
|
void OnToggleAdaptingFilter();
|
2020-08-11 14:57:29 -04:00
|
|
|
void OnConfigurePerGame();
|
2018-10-24 10:28:17 +11:00
|
|
|
void OnLoadAmiibo();
|
2025-07-13 03:39:01 +02:00
|
|
|
void OnOpenRootDataFolder();
|
|
|
|
|
void OnOpenNANDFolder();
|
|
|
|
|
void OnOpenSDMCFolder();
|
|
|
|
|
void OnOpenModFolder();
|
|
|
|
|
void OnOpenLogFolder();
|
2023-09-11 23:50:36 -04:00
|
|
|
void OnVerifyInstalledContents();
|
2024-02-17 23:33:55 +11:00
|
|
|
void OnInstallFirmware();
|
2025-07-14 01:29:57 +02:00
|
|
|
void OnInstallFirmwareFromZIP();
|
2024-02-20 11:18:13 +11:00
|
|
|
void OnInstallDecryptionKeys();
|
2018-01-14 19:15:45 +01:00
|
|
|
void OnAbout();
|
2025-08-11 22:27:29 +02:00
|
|
|
void OnEdenDependencies();
|
2025-10-15 04:54:41 +02:00
|
|
|
void OnDataDialog();
|
2017-04-30 04:04:39 +02:00
|
|
|
void OnToggleFilterBar();
|
2021-11-15 17:57:41 -06:00
|
|
|
void OnToggleStatusBar();
|
2026-02-15 19:22:19 +01:00
|
|
|
void OnTogglePerfOverlay();
|
2025-05-29 08:20:11 +00:00
|
|
|
void OnGameListRefresh();
|
2019-02-16 16:19:29 +01:00
|
|
|
void InitializeHotkeys();
|
2018-01-16 15:50:33 +01:00
|
|
|
void ToggleFullscreen();
|
2022-12-13 13:17:19 -05:00
|
|
|
bool UsingExclusiveFullscreen();
|
2018-01-16 15:59:30 +01:00
|
|
|
void ShowFullscreen();
|
|
|
|
|
void HideFullscreen();
|
2014-04-12 19:01:33 -04:00
|
|
|
void ToggleWindowMode();
|
2021-10-10 21:04:58 -04:00
|
|
|
void ResetWindowSize(u32 width, u32 height);
|
2020-12-09 12:53:43 -06:00
|
|
|
void ResetWindowSize720();
|
2021-10-10 21:04:58 -04:00
|
|
|
void ResetWindowSize900();
|
2020-12-09 12:53:43 -06:00
|
|
|
void ResetWindowSize1080();
|
2026-02-06 19:51:01 +01:00
|
|
|
|
|
|
|
|
void SetGameListMode(Settings::GameListMode mode);
|
|
|
|
|
void SetGridView();
|
|
|
|
|
void SetTreeView();
|
|
|
|
|
|
2026-02-07 22:48:39 +01:00
|
|
|
void CheckIconSize();
|
|
|
|
|
void ToggleShowGameName();
|
|
|
|
|
|
2026-01-19 03:26:21 +01:00
|
|
|
void LaunchFirmwareApplet(u64 program_id, std::optional<Service::NFP::CabinetMode> mode);
|
2025-05-18 17:47:54 +00:00
|
|
|
void OnCreateHomeMenuDesktopShortcut();
|
|
|
|
|
void OnCreateHomeMenuApplicationMenuShortcut();
|
2018-08-31 14:16:16 +08:00
|
|
|
void OnCaptureScreenshot();
|
2024-01-24 12:33:34 -05:00
|
|
|
void OnCheckFirmwareDecryption();
|
2025-10-29 13:16:57 +01:00
|
|
|
#ifdef __unix__
|
|
|
|
|
void OnCheckGraphicsBackend();
|
|
|
|
|
#endif
|
2020-01-26 00:26:07 +01:00
|
|
|
void OnLanguageChanged(const QString& locale);
|
2020-12-30 21:41:14 +02:00
|
|
|
void OnMouseActivity();
|
2022-12-24 17:31:34 -05:00
|
|
|
bool OnShutdownBegin();
|
2022-12-18 23:09:44 -05:00
|
|
|
void OnShutdownBeginDialog();
|
|
|
|
|
void OnEmulationStopped();
|
|
|
|
|
void OnEmulationStopTimeExpired();
|
2014-03-31 22:26:50 -04:00
|
|
|
|
2025-10-21 23:36:35 +02:00
|
|
|
#ifdef ENABLE_UPDATE_CHECKER
|
2025-05-28 02:23:51 +00:00
|
|
|
void OnEmulatorUpdateAvailable();
|
|
|
|
|
#endif
|
|
|
|
|
|
2014-03-31 22:26:50 -04:00
|
|
|
private:
|
2023-08-26 21:19:00 -04:00
|
|
|
void RemovePlayTimeData(u64 program_id);
|
2023-08-26 00:11:40 -04:00
|
|
|
bool SelectRomFSDumpTarget(const FileSys::ContentProvider&, u64 program_id,
|
|
|
|
|
u64* selected_title_id, u8* selected_content_record_type);
|
2024-01-19 00:56:43 -05:00
|
|
|
ContentManager::InstallResult InstallNCA(const QString& filename);
|
2021-06-20 17:26:55 -04:00
|
|
|
void UpdateWindowTitle(std::string_view title_name = {}, std::string_view title_version = {},
|
|
|
|
|
std::string_view gpu_vendor = {});
|
2022-06-01 00:59:58 -07:00
|
|
|
void UpdateDockedButton();
|
2022-11-27 20:37:37 -05:00
|
|
|
void UpdateAPIText();
|
2021-10-21 02:05:16 +02:00
|
|
|
void UpdateFilterText();
|
2021-10-22 22:56:08 +02:00
|
|
|
void UpdateAAText();
|
2023-01-19 15:13:23 +01:00
|
|
|
void UpdateVolumeUI();
|
2017-02-19 14:34:47 -08:00
|
|
|
void UpdateStatusBar();
|
2021-07-08 23:21:08 +02:00
|
|
|
void UpdateGPUAccuracyButton();
|
2020-07-09 22:42:09 -04:00
|
|
|
void UpdateStatusButtons();
|
2020-12-22 02:29:30 -05:00
|
|
|
void UpdateUISettings();
|
2022-11-26 19:08:44 -06:00
|
|
|
void UpdateInputDrivers();
|
2020-04-11 04:22:50 +02:00
|
|
|
void HideMouseCursor();
|
|
|
|
|
void ShowMouseCursor();
|
2020-06-25 23:28:38 +02:00
|
|
|
void OpenURL(const QUrl& url);
|
2020-01-26 00:26:07 +01:00
|
|
|
void LoadTranslation();
|
2020-08-11 14:57:29 -04:00
|
|
|
void OpenPerGameConfiguration(u64 title_id, const std::string& file_name);
|
2023-09-21 20:55:30 -06:00
|
|
|
bool CheckFirmwarePresence();
|
2023-11-24 11:53:31 -06:00
|
|
|
void SetFirmwareVersion();
|
2026-02-23 02:52:12 +01:00
|
|
|
void SetFPSSuffix();
|
2023-08-24 18:45:57 +02:00
|
|
|
void ConfigureFilesystemProvider(const std::string& filepath);
|
2023-10-12 00:17:06 +02:00
|
|
|
/**
|
2023-10-12 16:06:44 +02:00
|
|
|
* Open (or not) the right confirm dialog based on current setting and game exit lock
|
|
|
|
|
* @returns true if the player confirmed or the settings do no require it
|
|
|
|
|
*/
|
2023-10-12 00:17:06 +02:00
|
|
|
bool ConfirmShutdownGame();
|
2021-11-21 17:28:47 -08:00
|
|
|
|
2021-06-20 00:04:34 +02:00
|
|
|
QString GetTasStateDescription() const;
|
2023-10-16 16:01:46 -03:00
|
|
|
bool CreateShortcutMessagesGUI(QWidget* parent, int imsg, const QString& game_title);
|
2025-09-05 00:04:37 +02:00
|
|
|
|
2023-07-25 22:31:39 +02:00
|
|
|
/**
|
|
|
|
|
* Mimic the behavior of QMessageBox::question but link controller navigation to the dialog
|
|
|
|
|
* The only difference is that it returns a boolean.
|
|
|
|
|
*
|
|
|
|
|
* @returns true if buttons contains QMessageBox::Yes and the user clicks on the "Yes" button.
|
|
|
|
|
*/
|
|
|
|
|
bool question(QWidget* parent, const QString& title, const QString& text,
|
|
|
|
|
QMessageBox::StandardButtons buttons =
|
2025-11-09 18:07:38 +01:00
|
|
|
QMessageBox::StandardButtons(QMessageBox::Yes | QMessageBox::No),
|
2023-07-25 22:31:39 +02:00
|
|
|
QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
|
|
|
|
|
|
2021-10-15 15:27:18 -04:00
|
|
|
std::unique_ptr<Ui::MainWindow> ui;
|
2014-03-31 22:26:50 -04:00
|
|
|
|
2020-08-27 15:16:47 -04:00
|
|
|
std::unique_ptr<DiscordRPC::DiscordInterface> discord_rpc;
|
2023-08-26 21:19:00 -04:00
|
|
|
std::unique_ptr<PlayTime::PlayTimeManager> play_time_manager;
|
2020-08-29 00:44:27 -04:00
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem;
|
2020-08-27 15:16:47 -04:00
|
|
|
|
2025-10-21 23:36:35 +02:00
|
|
|
#ifdef ENABLE_UPDATE_CHECKER
|
2026-02-01 20:38:02 +01:00
|
|
|
QFuture<std::optional<UpdateChecker::Update>> update_future;
|
|
|
|
|
QFutureWatcher<std::optional<UpdateChecker::Update>> update_watcher;
|
2025-05-28 02:23:51 +00:00
|
|
|
#endif
|
|
|
|
|
|
2022-07-27 16:46:03 -07:00
|
|
|
MultiplayerState* multiplayer_state = nullptr;
|
|
|
|
|
|
2025-12-26 02:55:52 +01:00
|
|
|
GRenderWindow* render_window = nullptr;
|
|
|
|
|
GameList* game_list = nullptr;
|
|
|
|
|
LoadingScreen* loading_screen = nullptr;
|
2022-12-18 23:09:44 -05:00
|
|
|
QTimer shutdown_timer;
|
2022-12-23 20:57:36 -05:00
|
|
|
OverlayDialog* shutdown_dialog{};
|
2026-02-15 19:22:19 +01:00
|
|
|
PerformanceOverlay *perf_overlay = nullptr;
|
2015-04-29 00:01:41 -04:00
|
|
|
|
2025-12-26 02:55:52 +01:00
|
|
|
GameListPlaceholder* game_list_placeholder = nullptr;
|
2019-05-01 23:21:04 +02:00
|
|
|
|
2023-05-28 21:46:02 +00:00
|
|
|
std::vector<VkDeviceInfo::Record> vk_device_records;
|
|
|
|
|
|
2017-02-18 12:09:14 -08:00
|
|
|
// Status bar elements
|
2017-04-13 01:10:19 -04:00
|
|
|
QLabel* message_label = nullptr;
|
2020-07-10 13:36:38 +10:00
|
|
|
QLabel* shader_building_label = nullptr;
|
2021-07-26 01:58:02 -04:00
|
|
|
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;
|
2021-07-25 20:52:19 -05:00
|
|
|
QLabel* tas_label = nullptr;
|
2023-11-24 11:53:31 -06:00
|
|
|
QLabel* firmware_label = nullptr;
|
2021-07-08 23:21:08 +02:00
|
|
|
QPushButton* gpu_accuracy_button = nullptr;
|
2020-01-28 23:59:30 +01:00
|
|
|
QPushButton* renderer_status_button = nullptr;
|
2025-05-29 08:20:11 +00:00
|
|
|
QPushButton* refresh_button = nullptr;
|
2020-01-28 23:59:30 +01:00
|
|
|
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;
|
2023-10-29 02:46:25 +02:00
|
|
|
VolumeButton* volume_button = nullptr;
|
2023-01-19 15:13:23 +01:00
|
|
|
QWidget* volume_popup = nullptr;
|
|
|
|
|
QSlider* volume_slider = nullptr;
|
2017-02-19 14:34:47 -08:00
|
|
|
QTimer status_bar_update_timer;
|
2017-02-18 12:09:14 -08:00
|
|
|
|
2026-02-12 01:31:55 +01:00
|
|
|
// Stores what suffix to add to the FPS counter, e.g. Unlocked.
|
|
|
|
|
QString m_fpsSuffix{};
|
|
|
|
|
|
2025-05-08 22:16:07 +00:00
|
|
|
UserDataMigrator user_data_migrator;
|
2023-11-12 02:03:01 -05:00
|
|
|
std::unique_ptr<QtConfig> config;
|
2016-01-24 21:23:55 +01:00
|
|
|
|
2018-03-26 21:27:10 +02:00
|
|
|
// Whether emulation is currently running in yuzu.
|
2015-08-31 18:30:06 -07:00
|
|
|
bool emulation_running = false;
|
2015-04-29 00:01:41 -04:00
|
|
|
std::unique_ptr<EmuThread> emu_thread;
|
2018-08-21 13:12:45 +02:00
|
|
|
// The path to the game currently running
|
2022-05-26 19:57:35 -04:00
|
|
|
QString current_game_path;
|
2024-01-17 09:06:45 -08:00
|
|
|
// Whether a user was set on the command line (skips UserSelector if it's forced to show up)
|
|
|
|
|
bool user_flag_cmd_line = false;
|
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;
|
2022-11-26 19:08:44 -06:00
|
|
|
QTimer update_input_timer;
|
2019-09-26 14:54:31 +02:00
|
|
|
|
2022-07-28 07:50:20 -07:00
|
|
|
QString startup_icon_theme;
|
|
|
|
|
|
2026-02-07 22:48:39 +01:00
|
|
|
QActionGroup *game_size_actions;
|
|
|
|
|
|
2017-02-18 12:09:14 -08:00
|
|
|
// Debugger panes
|
2025-12-26 02:55:52 +01:00
|
|
|
ControllerDialog* controller_dialog = nullptr;
|
2015-07-28 18:43:18 +02:00
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
2018-08-07 00:43:07 -04:00
|
|
|
HotkeyRegistry hotkey_registry;
|
|
|
|
|
|
2020-01-26 00:26:07 +01:00
|
|
|
QTranslator translator;
|
|
|
|
|
|
2020-07-05 09:29:39 -04:00
|
|
|
// Install progress dialog
|
2025-12-26 02:55:52 +01:00
|
|
|
QProgressDialog* install_progress = nullptr;
|
2020-07-05 09:29:39 -04:00
|
|
|
|
2020-11-24 15:18:29 -08:00
|
|
|
// Last game booted, used for multi-process apps
|
|
|
|
|
QString last_filename_booted;
|
|
|
|
|
|
2021-03-26 05:26:16 -04:00
|
|
|
// Applets
|
2023-03-25 13:29:08 -04:00
|
|
|
QtAmiiboSettingsDialog* cabinet_applet = nullptr;
|
|
|
|
|
QtControllerSelectorDialog* controller_applet = nullptr;
|
|
|
|
|
QtProfileSelectionDialog* profile_select_applet = nullptr;
|
|
|
|
|
QDialog* error_applet = nullptr;
|
2021-03-26 05:26:16 -04:00
|
|
|
QtSoftwareKeyboardDialog* software_keyboard = nullptr;
|
2023-03-25 13:29:08 -04:00
|
|
|
QtNXWebEngineView* web_applet = 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{};
|
|
|
|
|
|
2022-11-04 12:12:46 +00:00
|
|
|
#ifdef __unix__
|
2022-07-27 12:51:26 -07:00
|
|
|
QSocketNotifier* sig_interrupt_notifier;
|
|
|
|
|
static std::array<int, 3> sig_interrupt_fds;
|
2021-12-21 02:47:24 -07:00
|
|
|
#endif
|
2021-03-26 05:26:16 -04:00
|
|
|
|
2025-05-29 06:35:00 +00:00
|
|
|
std::filesystem::path GetEdenCommand();
|
|
|
|
|
|
|
|
|
|
void CreateShortcut(const std::string& game_path,
|
|
|
|
|
const u64 program_id,
|
|
|
|
|
const std::string& game_title,
|
2025-09-15 17:21:18 +02:00
|
|
|
QtCommon::Game::ShortcutTarget target,
|
2025-05-29 06:35:00 +00:00
|
|
|
std::string arguments,
|
|
|
|
|
const bool needs_title);
|
|
|
|
|
|
2025-07-14 01:29:57 +02:00
|
|
|
void InstallFirmware(const QString& location, bool recursive = false);
|
|
|
|
|
|
2017-02-15 21:23:30 -06:00
|
|
|
protected:
|
|
|
|
|
void dropEvent(QDropEvent* event) override;
|
|
|
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
|
|
|
void dragMoveEvent(QDragMoveEvent* event) override;
|
2014-03-31 22:26:50 -04:00
|
|
|
};
|