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