2015-01-04 23:06:57 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2017-08-19 10:35:49 +05:30
|
|
|
#pragma once
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
#include <memory>
|
2018-01-19 19:12:21 +05:30
|
|
|
#include <QLabel>
|
2016-09-20 20:51:23 +05:30
|
|
|
#include <QMainWindow>
|
2017-04-30 07:34:39 +05:30
|
|
|
#include <QTimer>
|
2017-09-23 18:43:59 +05:30
|
|
|
#include <QTranslator>
|
2018-09-10 04:39:37 +05:30
|
|
|
#include "citra_qt/compatibility_list.h"
|
2018-08-07 10:13:07 +05:30
|
|
|
#include "citra_qt/hotkeys.h"
|
2018-01-19 19:12:21 +05:30
|
|
|
#include "common/announce_multiplayer_room.h"
|
2017-04-13 10:48:54 +05:30
|
|
|
#include "core/core.h"
|
2017-12-03 03:05:20 +05:30
|
|
|
#include "core/hle/service/am/am.h"
|
2014-04-01 07:56:50 +05:30
|
|
|
#include "ui_main.h"
|
|
|
|
|
2017-12-03 03:05:20 +05:30
|
|
|
class AboutDialog;
|
2016-01-25 01:53:55 +05:30
|
|
|
class Config;
|
2018-01-19 19:12:21 +05:30
|
|
|
class ClickableLabel;
|
2016-12-20 01:20:58 +05:30
|
|
|
class EmuThread;
|
2015-09-01 10:05:33 +05:30
|
|
|
class GameList;
|
2018-02-03 01:48:19 +05:30
|
|
|
enum class GameListOpenTarget;
|
2018-04-20 06:26:24 +05:30
|
|
|
class GameListPlaceholder;
|
2014-04-01 07:56:50 +05:30
|
|
|
class GImageInfo;
|
2016-12-20 01:20:58 +05:30
|
|
|
class GPUCommandListWidget;
|
2017-12-03 03:05:20 +05:30
|
|
|
class GPUCommandStreamWidget;
|
2016-12-20 01:20:58 +05:30
|
|
|
class GraphicsBreakPointsWidget;
|
|
|
|
class GraphicsTracingWidget;
|
|
|
|
class GraphicsVertexShaderWidget;
|
2014-04-01 07:56:50 +05:30
|
|
|
class GRenderWindow;
|
2019-07-22 18:19:39 +05:30
|
|
|
class IPCRecorderWidget;
|
2018-08-10 00:40:11 +05:30
|
|
|
class LLEServiceModulesWidget;
|
2015-08-18 02:55:21 +05:30
|
|
|
class MicroProfileDialog;
|
2018-04-01 11:36:48 +05:30
|
|
|
class MultiplayerState;
|
2016-12-20 01:20:58 +05:30
|
|
|
class ProfilerWidget;
|
2017-12-03 03:05:20 +05:30
|
|
|
template <typename>
|
|
|
|
class QFutureWatcher;
|
|
|
|
class QProgressBar;
|
2014-04-19 04:00:53 +05:30
|
|
|
class RegistersWidget;
|
2017-08-19 10:35:49 +05:30
|
|
|
class Updater;
|
2016-04-08 21:58:54 +05:30
|
|
|
class WaitTreeWidget;
|
2019-11-28 23:26:58 +05:30
|
|
|
|
2018-08-20 14:50:33 +05:30
|
|
|
namespace DiscordRPC {
|
|
|
|
class DiscordInterface;
|
|
|
|
}
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2016-09-18 06:08:01 +05:30
|
|
|
class GMainWindow : public QMainWindow {
|
2014-04-01 07:56:50 +05:30
|
|
|
Q_OBJECT
|
|
|
|
|
2016-09-19 06:31:46 +05:30
|
|
|
/// Max number of recently loaded items to keep track of
|
|
|
|
static const int max_recent_files_item = 10;
|
2015-07-28 22:13:18 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
// TODO: Make use of this!
|
|
|
|
enum {
|
|
|
|
UI_IDLE,
|
|
|
|
UI_EMU_BOOTING,
|
|
|
|
UI_EMU_RUNNING,
|
|
|
|
UI_EMU_STOPPING,
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2017-04-30 07:34:39 +05:30
|
|
|
void filterBarSetChecked(bool state);
|
2017-06-24 06:11:11 +05:30
|
|
|
void UpdateUITheme();
|
2018-01-19 19:12:21 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
GMainWindow();
|
|
|
|
~GMainWindow();
|
|
|
|
|
2018-04-18 10:36:02 +05:30
|
|
|
GameList* game_list;
|
2018-08-20 14:50:33 +05:30
|
|
|
std::unique_ptr<DiscordRPC::DiscordInterface> discord_rpc;
|
2018-04-18 10:36:02 +05:30
|
|
|
|
2019-11-28 23:26:58 +05:30
|
|
|
bool DropAction(QDropEvent* event);
|
|
|
|
void AcceptDropEvent(QDropEvent* event);
|
|
|
|
|
2019-09-11 06:22:17 +05:30
|
|
|
public slots:
|
2019-09-15 02:44:23 +05:30
|
|
|
void OnAppFocusStateChanged(Qt::ApplicationState state);
|
2019-11-28 23:26:58 +05:30
|
|
|
|
2015-04-29 09:31:41 +05:30
|
|
|
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.
|
|
|
|
*
|
2019-11-28 23:26:58 +05:30
|
|
|
* @param emu_thread Pointer to the newly created EmuThread (to be used by widgets that need
|
|
|
|
* to access/change emulation state).
|
2015-04-29 09:31:41 +05:30
|
|
|
*/
|
|
|
|
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-02-14 05:46:26 +05:30
|
|
|
|
2018-09-07 01:33:28 +05:30
|
|
|
void UpdateProgress(std::size_t written, std::size_t total);
|
2018-02-14 05:46:26 +05:30
|
|
|
void CIAInstallReport(Service::AM::InstallStatus status, QString filepath);
|
|
|
|
void CIAInstallFinished();
|
2018-03-30 20:50:21 +05:30
|
|
|
// Signal that tells widgets to update icons to use the current theme
|
|
|
|
void UpdateThemedIcons();
|
2015-04-17 04:05:09 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
private:
|
2016-12-20 01:20:58 +05:30
|
|
|
void InitializeWidgets();
|
2017-02-18 15:46:24 +05:30
|
|
|
void InitializeDebugWidgets();
|
2016-12-20 01:20:58 +05:30
|
|
|
void InitializeRecentFileMenuActions();
|
|
|
|
|
|
|
|
void SetDefaultUIGeometry();
|
2018-02-03 01:49:49 +05:30
|
|
|
void SyncMenuUISettings();
|
2016-12-20 01:20:58 +05:30
|
|
|
void RestoreUIState();
|
|
|
|
|
|
|
|
void ConnectWidgetEvents();
|
2017-02-18 15:56:57 +05:30
|
|
|
void ConnectMenuEvents();
|
2016-12-20 01:20:58 +05:30
|
|
|
|
2019-09-04 00:43:14 +05:30
|
|
|
void PreventOSSleep();
|
|
|
|
void AllowOSSleep();
|
|
|
|
|
2017-02-17 12:02:22 +05:30
|
|
|
bool LoadROM(const QString& filename);
|
|
|
|
void BootGame(const QString& filename);
|
2015-04-28 08:43:57 +05:30
|
|
|
void ShutdownGame();
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2018-07-27 20:23:06 +05:30
|
|
|
void ShowTelemetryCallout();
|
2017-08-19 10:35:49 +05:30
|
|
|
void ShowUpdaterWidgets();
|
2017-10-14 13:05:45 +05:30
|
|
|
void ShowUpdatePrompt();
|
|
|
|
void ShowNoUpdatePrompt();
|
2017-08-19 10:35:49 +05:30
|
|
|
void CheckForUpdates();
|
2018-08-20 14:50:33 +05:30
|
|
|
void SetDiscordEnabled(bool state);
|
2019-09-22 03:32:42 +05:30
|
|
|
void LoadAmiibo(const QString& filename);
|
2017-08-09 05:36:25 +05:30
|
|
|
|
2015-08-18 02:20:52 +05:30
|
|
|
/**
|
|
|
|
* 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 12:02:22 +05:30
|
|
|
void StoreRecentFile(const QString& filename);
|
2015-08-18 02:20:52 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 22:13:18 +05:30
|
|
|
void UpdateRecentFiles();
|
|
|
|
|
2016-01-10 18:01:20 +05:30
|
|
|
/**
|
|
|
|
* 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 08:53:30 +05:30
|
|
|
bool ConfirmChangeGame();
|
2014-10-26 10:26:13 +05:30
|
|
|
void closeEvent(QCloseEvent* event) override;
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
private slots:
|
2014-05-01 09:16:57 +05:30
|
|
|
void OnStartGame();
|
|
|
|
void OnPauseGame();
|
|
|
|
void OnStopGame();
|
2018-01-02 06:55:38 +05:30
|
|
|
void OnMenuReportCompatibility();
|
2015-09-01 10:05:33 +05:30
|
|
|
/// Called whenever a user selects a game in the game list widget.
|
|
|
|
void OnGameListLoadFile(QString game_path);
|
2018-02-03 01:48:19 +05:30
|
|
|
void OnGameListOpenFolder(u64 program_id, GameListOpenTarget target);
|
2018-09-10 04:39:37 +05:30
|
|
|
void OnGameListNavigateToGamedbEntry(u64 program_id,
|
|
|
|
const CompatibilityList& compatibility_list);
|
2019-09-22 20:57:01 +05:30
|
|
|
void OnGameListOpenDirectory(const QString& directory);
|
2018-04-20 06:26:24 +05:30
|
|
|
void OnGameListAddDirectory();
|
|
|
|
void OnGameListShowList(bool show);
|
2014-05-01 09:16:57 +05:30
|
|
|
void OnMenuLoadFile();
|
2017-12-03 03:05:20 +05:30
|
|
|
void OnMenuInstallCIA();
|
2018-09-07 01:33:28 +05:30
|
|
|
void OnUpdateProgress(std::size_t written, std::size_t total);
|
2018-02-14 05:46:26 +05:30
|
|
|
void OnCIAInstallReport(Service::AM::InstallStatus status, QString filepath);
|
2017-12-03 03:05:20 +05:30
|
|
|
void OnCIAInstallFinished();
|
2015-07-28 22:13:18 +05:30
|
|
|
void OnMenuRecentFile();
|
2014-04-01 07:56:50 +05:30
|
|
|
void OnConfigure();
|
2018-10-25 06:31:38 +05:30
|
|
|
void OnLoadAmiibo();
|
|
|
|
void OnRemoveAmiibo();
|
2018-11-02 07:35:44 +05:30
|
|
|
void OnOpenCitraFolder();
|
2017-04-30 07:34:39 +05:30
|
|
|
void OnToggleFilterBar();
|
2015-01-06 20:39:30 +05:30
|
|
|
void OnDisplayTitleBars(bool);
|
2018-05-23 01:00:36 +05:30
|
|
|
void InitializeHotkeys();
|
2017-10-11 23:51:09 +05:30
|
|
|
void ToggleFullscreen();
|
2018-02-03 01:49:49 +05:30
|
|
|
void ChangeScreenLayout();
|
|
|
|
void ToggleScreenLayout();
|
|
|
|
void OnSwapScreens();
|
2019-10-26 04:51:10 +05:30
|
|
|
void OnRotateScreens();
|
2018-11-17 06:31:10 +05:30
|
|
|
void OnCheats();
|
2017-12-04 22:12:23 +05:30
|
|
|
void ShowFullscreen();
|
|
|
|
void HideFullscreen();
|
2014-04-13 04:31:33 +05:30
|
|
|
void ToggleWindowMode();
|
2016-04-09 21:53:15 +05:30
|
|
|
void OnCreateGraphicsSurfaceViewer();
|
2018-07-08 11:25:32 +05:30
|
|
|
void OnRecordMovie();
|
|
|
|
void OnPlayMovie();
|
|
|
|
void OnStopRecordingPlayback();
|
2018-08-31 11:46:16 +05:30
|
|
|
void OnCaptureScreenshot();
|
2019-01-26 20:14:42 +05:30
|
|
|
void OnStartVideoDumping();
|
|
|
|
void OnStopVideoDumping();
|
2017-04-13 10:48:54 +05:30
|
|
|
void OnCoreError(Core::System::ResultStatus, std::string);
|
2017-11-04 23:29:27 +05:30
|
|
|
/// Called whenever a user selects Help->About Citra
|
|
|
|
void OnMenuAboutCitra();
|
2017-08-19 10:35:49 +05:30
|
|
|
void OnUpdateFound(bool found, bool error);
|
|
|
|
void OnCheckForUpdates();
|
|
|
|
void OnOpenUpdater();
|
2017-09-23 18:43:59 +05:30
|
|
|
void OnLanguageChanged(const QString& locale);
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
private:
|
2018-08-08 21:12:23 +05:30
|
|
|
bool ValidateMovie(const QString& path, u64 program_id = 0);
|
2018-07-08 11:25:32 +05:30
|
|
|
Q_INVOKABLE void OnMoviePlaybackCompleted();
|
2017-02-20 04:04:47 +05:30
|
|
|
void UpdateStatusBar();
|
2017-09-23 18:43:59 +05:30
|
|
|
void LoadTranslation();
|
2019-08-10 14:31:18 +05:30
|
|
|
void UpdateWindowTitle();
|
2018-07-24 16:27:45 +05:30
|
|
|
void RetranslateStatusBar();
|
2019-02-06 02:01:39 +05:30
|
|
|
void InstallCIA(QStringList filepaths);
|
2017-02-20 04:04:47 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
Ui::MainWindow ui;
|
|
|
|
|
|
|
|
GRenderWindow* render_window;
|
2018-01-19 19:12:21 +05:30
|
|
|
|
2018-04-20 06:26:24 +05:30
|
|
|
GameListPlaceholder* game_list_placeholder;
|
|
|
|
|
2017-02-19 01:39:14 +05:30
|
|
|
// Status bar elements
|
2017-12-03 03:05:20 +05:30
|
|
|
QProgressBar* progress_bar = nullptr;
|
2017-04-13 10:40:19 +05:30
|
|
|
QLabel* message_label = nullptr;
|
2017-02-19 01:39:14 +05:30
|
|
|
QLabel* emu_speed_label = nullptr;
|
|
|
|
QLabel* game_fps_label = nullptr;
|
|
|
|
QLabel* emu_frametime_label = nullptr;
|
2017-02-20 04:04:47 +05:30
|
|
|
QTimer status_bar_update_timer;
|
2017-02-19 01:39:14 +05:30
|
|
|
|
2018-04-01 11:36:48 +05:30
|
|
|
MultiplayerState* multiplayer_state = nullptr;
|
2016-01-25 01:53:55 +05:30
|
|
|
std::unique_ptr<Config> config;
|
|
|
|
|
2015-09-01 07:00:06 +05:30
|
|
|
// Whether emulation is currently running in Citra.
|
|
|
|
bool emulation_running = false;
|
2015-04-29 09:31:41 +05:30
|
|
|
std::unique_ptr<EmuThread> emu_thread;
|
2018-06-02 08:57:09 +05:30
|
|
|
// The title of the game currently running
|
|
|
|
QString game_title;
|
2018-08-06 06:49:35 +05:30
|
|
|
// The path to the game currently running
|
|
|
|
QString game_path;
|
2014-04-19 04:00:53 +05:30
|
|
|
|
2019-09-12 06:23:26 +05:30
|
|
|
bool auto_paused = false;
|
|
|
|
|
2018-08-08 21:12:23 +05:30
|
|
|
// Movie
|
|
|
|
bool movie_record_on_start = false;
|
|
|
|
QString movie_record_path;
|
|
|
|
|
2019-01-26 20:14:42 +05:30
|
|
|
// Video dumping
|
|
|
|
bool video_dumping_on_start = false;
|
|
|
|
QString video_dumping_path;
|
|
|
|
// Whether game shutdown is delayed due to video dumping
|
|
|
|
bool game_shutdown_delayed = false;
|
|
|
|
|
2017-02-19 01:39:14 +05:30
|
|
|
// Debugger panes
|
2015-02-05 22:23:25 +05:30
|
|
|
ProfilerWidget* profilerWidget;
|
2015-08-18 02:55:21 +05:30
|
|
|
MicroProfileDialog* microProfileDialog;
|
2014-04-19 04:00:53 +05:30
|
|
|
RegistersWidget* registersWidget;
|
2014-05-18 02:08:10 +05:30
|
|
|
GPUCommandStreamWidget* graphicsWidget;
|
2014-05-18 21:22:22 +05:30
|
|
|
GPUCommandListWidget* graphicsCommandsWidget;
|
2016-12-20 01:20:58 +05:30
|
|
|
GraphicsBreakPointsWidget* graphicsBreakpointsWidget;
|
|
|
|
GraphicsVertexShaderWidget* graphicsVertexShaderWidget;
|
|
|
|
GraphicsTracingWidget* graphicsTracingWidget;
|
2019-07-22 18:19:39 +05:30
|
|
|
IPCRecorderWidget* ipcRecorderWidget;
|
2018-08-10 00:40:11 +05:30
|
|
|
LLEServiceModulesWidget* lleServiceModulesWidget;
|
2016-04-08 21:58:54 +05:30
|
|
|
WaitTreeWidget* waitTreeWidget;
|
2017-08-19 10:35:49 +05:30
|
|
|
Updater* updater;
|
2015-07-28 22:13:18 +05:30
|
|
|
|
2017-10-14 13:05:45 +05:30
|
|
|
bool explicit_update_check = false;
|
|
|
|
bool defer_update_prompt = false;
|
|
|
|
|
2015-07-28 22:13:18 +05:30
|
|
|
QAction* actions_recent_files[max_recent_files_item];
|
2017-02-16 08:53:30 +05:30
|
|
|
|
2017-09-23 18:43:59 +05:30
|
|
|
QTranslator translator;
|
|
|
|
|
2018-03-27 16:41:04 +05:30
|
|
|
// stores default icon theme search paths for the platform
|
|
|
|
QStringList default_theme_paths;
|
|
|
|
|
2018-08-07 10:13:07 +05:30
|
|
|
HotkeyRegistry hotkey_registry;
|
|
|
|
|
2017-02-16 08:53:30 +05:30
|
|
|
protected:
|
|
|
|
void dropEvent(QDropEvent* event) override;
|
|
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
|
|
void dragMoveEvent(QDragMoveEvent* event) override;
|
2014-04-01 07:56:50 +05:30
|
|
|
};
|
2017-12-03 03:05:20 +05:30
|
|
|
|
2018-09-07 01:33:28 +05:30
|
|
|
Q_DECLARE_METATYPE(std::size_t);
|
2018-02-14 05:46:26 +05:30
|
|
|
Q_DECLARE_METATYPE(Service::AM::InstallStatus);
|