2015-11-27 09:33:07 +01:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-11-27 09:33:07 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2018-11-05 19:20:45 +01:00
|
|
|
#include <QStringList>
|
2015-11-27 09:33:07 +01:00
|
|
|
|
2020-08-19 08:25:57 +02:00
|
|
|
#include <array>
|
2017-08-24 16:35:47 +02:00
|
|
|
#include <memory>
|
2017-12-25 18:07:29 +01:00
|
|
|
#include <optional>
|
2017-12-31 20:33:36 +01:00
|
|
|
#include <string>
|
2017-08-24 16:35:47 +02:00
|
|
|
|
2022-07-28 22:06:47 +02:00
|
|
|
#include "Core/Boot/Boot.h"
|
|
|
|
|
2023-07-24 00:13:47 +02:00
|
|
|
class QMenu;
|
2018-07-15 05:20:59 +02:00
|
|
|
class QStackedWidget;
|
|
|
|
class QString;
|
2018-03-24 02:13:56 +01:00
|
|
|
|
2023-05-26 15:35:50 +02:00
|
|
|
class AchievementsWindow;
|
2022-12-18 09:43:28 +01:00
|
|
|
class AssemblerWidget;
|
2017-10-03 18:43:44 +02:00
|
|
|
class BreakpointWidget;
|
2017-08-24 16:35:47 +02:00
|
|
|
struct BootParameters;
|
2018-03-26 04:17:47 +02:00
|
|
|
class CheatsManager;
|
2018-02-14 23:25:01 +01:00
|
|
|
class CodeWidget;
|
2018-03-24 02:13:56 +01:00
|
|
|
class ControllersWindow;
|
2018-07-03 23:50:08 +02:00
|
|
|
class DiscordHandler;
|
2018-03-24 02:13:56 +01:00
|
|
|
class DragEnterEvent;
|
2017-08-30 16:44:28 +02:00
|
|
|
class FIFOPlayerWindow;
|
2020-06-12 07:27:34 +02:00
|
|
|
class FreeLookWindow;
|
2018-07-15 05:20:59 +02:00
|
|
|
class GameList;
|
2022-11-19 11:16:10 +01:00
|
|
|
class GBATASInputWindow;
|
2018-03-24 02:13:56 +01:00
|
|
|
class GCTASInputWindow;
|
|
|
|
class GraphicsWindow;
|
2017-06-06 13:49:49 +02:00
|
|
|
class HotkeyScheduler;
|
2023-01-24 22:51:02 +01:00
|
|
|
class InfinityBaseWindow;
|
2018-04-09 15:31:20 +02:00
|
|
|
class JITWidget;
|
2017-08-28 00:10:06 +02:00
|
|
|
class LogConfigWidget;
|
|
|
|
class LogWidget;
|
2018-10-14 14:15:26 +02:00
|
|
|
class MappingWindow;
|
2018-03-16 12:39:53 +01:00
|
|
|
class MemoryWidget;
|
2018-07-15 05:20:59 +02:00
|
|
|
class MenuBar;
|
2017-07-21 22:48:21 +02:00
|
|
|
class NetPlayDialog;
|
|
|
|
class NetPlaySetupDialog;
|
2020-04-19 21:30:50 +02:00
|
|
|
class NetworkWidget;
|
2018-03-24 02:13:56 +01:00
|
|
|
class RegisterWidget;
|
2018-07-15 05:20:59 +02:00
|
|
|
class RenderWidget;
|
2018-03-21 11:13:53 +01:00
|
|
|
class SearchBar;
|
2016-05-09 15:34:07 +02:00
|
|
|
class SettingsWindow;
|
2023-01-07 23:54:36 +01:00
|
|
|
class SkylanderPortalWindow;
|
2020-03-21 08:48:49 +01:00
|
|
|
class ThreadWidget;
|
2018-07-15 05:20:59 +02:00
|
|
|
class ToolBar;
|
2017-09-27 08:53:05 +02:00
|
|
|
class WatchWidget;
|
2018-01-31 12:35:09 +01:00
|
|
|
class WiiTASInputWindow;
|
2023-03-26 01:16:53 +01:00
|
|
|
struct WindowSystemInfo;
|
2016-02-10 05:42:06 +01:00
|
|
|
|
2018-07-15 05:20:59 +02:00
|
|
|
namespace DiscIO
|
|
|
|
{
|
|
|
|
enum class Region;
|
|
|
|
}
|
|
|
|
|
2018-11-05 19:20:45 +01:00
|
|
|
namespace UICommon
|
|
|
|
{
|
|
|
|
class GameFile;
|
|
|
|
}
|
|
|
|
|
2018-04-05 15:03:12 +02:00
|
|
|
namespace X11Utils
|
|
|
|
{
|
|
|
|
class XRRConfiguration;
|
|
|
|
}
|
|
|
|
|
2015-11-27 09:33:07 +01:00
|
|
|
class MainWindow final : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-03-27 14:26:17 +01:00
|
|
|
explicit MainWindow(std::unique_ptr<BootParameters> boot_parameters,
|
|
|
|
const std::string& movie_path);
|
2016-02-15 02:04:16 +01:00
|
|
|
~MainWindow();
|
2015-11-27 09:33:07 +01:00
|
|
|
|
2023-03-26 01:16:53 +01:00
|
|
|
WindowSystemInfo GetWindowSystemInfo() const;
|
2018-05-13 15:03:48 +02:00
|
|
|
|
2017-06-24 17:00:37 +02:00
|
|
|
bool eventFilter(QObject* object, QEvent* event) override;
|
2023-07-24 00:13:47 +02:00
|
|
|
QMenu* createPopupMenu() override;
|
2017-06-24 17:00:37 +02:00
|
|
|
|
2015-11-27 09:33:07 +01:00
|
|
|
signals:
|
2017-08-27 13:55:05 +02:00
|
|
|
void ReadOnlyModeChanged(bool read_only);
|
|
|
|
void RecordingStatusChanged(bool recording);
|
2015-11-27 09:33:07 +01:00
|
|
|
|
2017-06-30 11:24:26 +02:00
|
|
|
private:
|
2015-11-27 09:33:07 +01:00
|
|
|
void Open();
|
2018-06-04 21:44:46 +02:00
|
|
|
void RefreshGameList();
|
2017-12-25 18:07:29 +01:00
|
|
|
void Play(const std::optional<std::string>& savestate_path = {});
|
2015-11-27 09:33:07 +01:00
|
|
|
void Pause();
|
2018-02-09 12:54:35 +01:00
|
|
|
void TogglePause();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2015-12-22 04:46:03 +01:00
|
|
|
// May ask for confirmation. Returns whether or not it actually stopped.
|
2017-07-03 16:04:24 +02:00
|
|
|
bool RequestStop();
|
2015-11-27 09:33:07 +01:00
|
|
|
void ForceStop();
|
2016-02-15 02:56:40 +01:00
|
|
|
void Reset();
|
|
|
|
void FrameAdvance();
|
|
|
|
void StateLoad();
|
|
|
|
void StateSave();
|
|
|
|
void StateLoadSlot();
|
|
|
|
void StateSaveSlot();
|
|
|
|
void StateLoadSlotAt(int slot);
|
|
|
|
void StateSaveSlotAt(int slot);
|
2018-05-17 20:27:14 +02:00
|
|
|
void StateLoadLastSavedAt(int slot);
|
2016-02-15 02:56:40 +01:00
|
|
|
void StateLoadUndo();
|
|
|
|
void StateSaveUndo();
|
|
|
|
void StateSaveOldest();
|
|
|
|
void SetStateSlot(int slot);
|
2022-08-07 19:20:09 +02:00
|
|
|
void IncrementSelectedStateSlot();
|
|
|
|
void DecrementSelectedStateSlot();
|
2017-07-06 11:01:32 +02:00
|
|
|
void BootWiiSystemMenu();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2017-06-14 11:58:11 +02:00
|
|
|
void PerformOnlineUpdate(const std::string& region);
|
|
|
|
|
2018-05-07 18:38:59 +02:00
|
|
|
void SetFullScreenResolution(bool fullscreen);
|
|
|
|
|
2015-11-27 09:33:07 +01:00
|
|
|
void FullScreen();
|
2021-05-09 12:28:04 +02:00
|
|
|
void UnlockCursor();
|
2015-11-27 09:33:07 +01:00
|
|
|
void ScreenShot();
|
|
|
|
|
2016-02-10 05:42:06 +01:00
|
|
|
void CreateComponents();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2016-02-10 05:42:06 +01:00
|
|
|
void ConnectGameList();
|
2018-03-24 02:13:56 +01:00
|
|
|
void ConnectHost();
|
2017-06-06 13:49:49 +02:00
|
|
|
void ConnectHotkeys();
|
2016-02-10 05:42:06 +01:00
|
|
|
void ConnectMenuBar();
|
|
|
|
void ConnectRenderWidget();
|
|
|
|
void ConnectStack();
|
|
|
|
void ConnectToolBar();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2017-05-23 22:12:01 +02:00
|
|
|
void InitControllers();
|
2017-06-01 06:11:54 +02:00
|
|
|
void ShutdownControllers();
|
2017-05-23 22:12:01 +02:00
|
|
|
|
2017-06-16 15:27:00 +02:00
|
|
|
void InitCoreCallbacks();
|
|
|
|
|
2018-11-05 19:20:45 +01:00
|
|
|
enum class ScanForSecondDisc
|
|
|
|
{
|
|
|
|
Yes,
|
|
|
|
No,
|
|
|
|
};
|
|
|
|
|
|
|
|
void ScanForSecondDiscAndStartGame(const UICommon::GameFile& game,
|
2021-11-20 19:38:09 +01:00
|
|
|
std::unique_ptr<BootSessionData> boot_session_data = nullptr);
|
2018-11-05 19:20:45 +01:00
|
|
|
void StartGame(const QString& path, ScanForSecondDisc scan,
|
2021-11-20 19:38:09 +01:00
|
|
|
std::unique_ptr<BootSessionData> boot_session_data = nullptr);
|
2018-11-05 19:20:45 +01:00
|
|
|
void StartGame(const std::string& path, ScanForSecondDisc scan,
|
2021-11-20 19:38:09 +01:00
|
|
|
std::unique_ptr<BootSessionData> boot_session_data = nullptr);
|
2018-11-05 19:20:45 +01:00
|
|
|
void StartGame(const std::vector<std::string>& paths,
|
2021-11-20 19:38:09 +01:00
|
|
|
std::unique_ptr<BootSessionData> boot_session_data = nullptr);
|
2017-08-24 16:35:47 +02:00
|
|
|
void StartGame(std::unique_ptr<BootParameters>&& parameters);
|
2015-11-27 09:33:07 +01:00
|
|
|
void ShowRenderWidget();
|
2021-05-21 00:33:38 +02:00
|
|
|
void HideRenderWidget(bool reinit = true, bool is_exit = false);
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2016-05-09 15:34:07 +02:00
|
|
|
void ShowSettingsWindow();
|
2017-09-10 19:10:45 +02:00
|
|
|
void ShowGeneralWindow();
|
2017-07-16 23:11:11 +02:00
|
|
|
void ShowAudioWindow();
|
2017-05-09 18:49:10 +02:00
|
|
|
void ShowControllersWindow();
|
2017-06-16 01:42:12 +02:00
|
|
|
void ShowGraphicsWindow();
|
2020-06-12 07:27:34 +02:00
|
|
|
void ShowFreeLookWindow();
|
2016-02-11 12:59:44 +01:00
|
|
|
void ShowAboutDialog();
|
2017-06-06 13:49:49 +02:00
|
|
|
void ShowHotkeyDialog();
|
2017-07-21 22:48:21 +02:00
|
|
|
void ShowNetPlaySetupDialog();
|
2019-03-30 14:50:57 +01:00
|
|
|
void ShowNetPlayBrowser();
|
2017-08-30 16:44:28 +02:00
|
|
|
void ShowFIFOPlayer();
|
2023-01-07 23:54:36 +01:00
|
|
|
void ShowSkylanderPortal();
|
2023-01-24 22:51:02 +01:00
|
|
|
void ShowInfinityBase();
|
2018-01-25 19:54:50 +01:00
|
|
|
void ShowMemcardManager();
|
2018-11-17 16:36:28 +01:00
|
|
|
void ShowResourcePackManager();
|
2018-03-26 04:17:47 +02:00
|
|
|
void ShowCheatsManager();
|
2021-09-26 06:17:51 +02:00
|
|
|
void ShowRiivolutionBootWidget(const UICommon::GameFile& game);
|
2017-07-21 22:48:21 +02:00
|
|
|
|
2023-05-26 15:35:50 +02:00
|
|
|
#ifdef USE_RETRO_ACHIEVEMENTS
|
|
|
|
void ShowAchievementsWindow();
|
2023-11-15 16:56:15 +01:00
|
|
|
void ShowAchievementSettings();
|
2023-05-26 15:35:50 +02:00
|
|
|
#endif // USE_RETRO_ACHIEVEMENTS
|
|
|
|
|
2017-07-21 22:48:21 +02:00
|
|
|
void NetPlayInit();
|
|
|
|
bool NetPlayJoin();
|
2020-06-07 22:58:03 +02:00
|
|
|
bool NetPlayHost(const UICommon::GameFile& game);
|
2017-07-21 22:48:21 +02:00
|
|
|
void NetPlayQuit();
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2017-08-24 16:35:47 +02:00
|
|
|
void OnBootGameCubeIPL(DiscIO::Region region);
|
2017-08-24 17:38:31 +02:00
|
|
|
void OnImportNANDBackup();
|
2018-01-24 15:25:35 +01:00
|
|
|
void OnConnectWiiRemote(int id);
|
2020-01-27 21:26:39 +01:00
|
|
|
|
|
|
|
#if defined(__unix__) || defined(__unix) || defined(__APPLE__)
|
2018-05-22 21:30:54 +02:00
|
|
|
void OnSignal();
|
2020-01-27 21:26:39 +01:00
|
|
|
#endif
|
2017-08-27 13:55:05 +02:00
|
|
|
|
|
|
|
void OnPlayRecording();
|
|
|
|
void OnStartRecording();
|
|
|
|
void OnStopRecording();
|
|
|
|
void OnExportRecording();
|
2019-03-24 15:57:36 +01:00
|
|
|
void OnActivateChat();
|
2019-04-02 14:08:27 +02:00
|
|
|
void OnRequestGolfControl();
|
2018-01-27 14:35:02 +01:00
|
|
|
void ShowTASInput();
|
2017-08-27 13:55:05 +02:00
|
|
|
|
2018-03-23 01:18:53 +01:00
|
|
|
void ChangeDisc();
|
|
|
|
void EjectDisc();
|
|
|
|
|
2023-01-16 09:36:24 +01:00
|
|
|
void OpenUserFolder();
|
|
|
|
|
2018-11-05 19:20:45 +01:00
|
|
|
QStringList PromptFileNames();
|
2018-03-23 01:18:53 +01:00
|
|
|
|
2020-10-18 20:06:11 +02:00
|
|
|
void UpdateScreenSaverInhibition();
|
2018-01-01 22:15:26 +01:00
|
|
|
|
2017-07-03 16:04:24 +02:00
|
|
|
void OnStopComplete();
|
2017-06-26 23:22:40 +02:00
|
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
|
|
void dropEvent(QDropEvent* event) override;
|
2017-05-27 03:24:07 +02:00
|
|
|
QSize sizeHint() const override;
|
2017-06-26 23:22:40 +02:00
|
|
|
|
2021-02-22 14:32:53 +01:00
|
|
|
#ifdef HAVE_XRANDR
|
2018-04-05 15:03:12 +02:00
|
|
|
std::unique_ptr<X11Utils::XRRConfiguration> m_xrr_config;
|
|
|
|
#endif
|
|
|
|
|
2015-11-27 09:33:07 +01:00
|
|
|
QStackedWidget* m_stack;
|
2015-12-04 05:41:17 +01:00
|
|
|
ToolBar* m_tool_bar;
|
2015-12-20 06:24:48 +01:00
|
|
|
MenuBar* m_menu_bar;
|
2018-03-21 11:13:53 +01:00
|
|
|
SearchBar* m_search_bar;
|
2015-11-27 09:33:07 +01:00
|
|
|
GameList* m_game_list;
|
2018-10-03 09:34:27 +02:00
|
|
|
RenderWidget* m_render_widget = nullptr;
|
2015-11-27 09:33:07 +01:00
|
|
|
bool m_rendering_to_main;
|
2019-11-10 23:58:39 +01:00
|
|
|
bool m_stop_confirm_showing = false;
|
2017-06-24 17:00:37 +02:00
|
|
|
bool m_stop_requested = false;
|
2017-07-03 16:04:24 +02:00
|
|
|
bool m_exit_requested = false;
|
2018-06-08 19:59:24 +02:00
|
|
|
bool m_fullscreen_requested = false;
|
2020-10-22 20:19:01 +02:00
|
|
|
bool m_is_screensaver_inhibited = false;
|
2023-01-29 02:54:41 +01:00
|
|
|
u32 m_state_slot = 1;
|
2017-08-24 16:35:47 +02:00
|
|
|
std::unique_ptr<BootParameters> m_pending_boot;
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2018-10-14 13:46:54 +02:00
|
|
|
ControllersWindow* m_controllers_window = nullptr;
|
|
|
|
SettingsWindow* m_settings_window = nullptr;
|
|
|
|
GraphicsWindow* m_graphics_window = nullptr;
|
|
|
|
FIFOPlayerWindow* m_fifo_window = nullptr;
|
2023-01-07 23:54:36 +01:00
|
|
|
SkylanderPortalWindow* m_skylander_window = nullptr;
|
2023-01-24 22:51:02 +01:00
|
|
|
InfinityBaseWindow* m_infinity_window = nullptr;
|
2018-10-14 14:15:26 +02:00
|
|
|
MappingWindow* m_hotkey_window = nullptr;
|
2020-06-12 07:27:34 +02:00
|
|
|
FreeLookWindow* m_freelook_window = nullptr;
|
2018-10-14 13:46:54 +02:00
|
|
|
|
2017-06-06 13:49:49 +02:00
|
|
|
HotkeyScheduler* m_hotkey_scheduler;
|
2017-07-21 22:48:21 +02:00
|
|
|
NetPlayDialog* m_netplay_dialog;
|
2018-07-03 23:50:08 +02:00
|
|
|
DiscordHandler* m_netplay_discord;
|
2017-07-21 22:48:21 +02:00
|
|
|
NetPlaySetupDialog* m_netplay_setup_dialog;
|
2018-01-31 12:35:09 +01:00
|
|
|
static constexpr int num_gc_controllers = 4;
|
|
|
|
std::array<GCTASInputWindow*, num_gc_controllers> m_gc_tas_input_windows{};
|
2022-11-19 11:16:10 +01:00
|
|
|
std::array<GBATASInputWindow*, num_gc_controllers> m_gba_tas_input_windows{};
|
2018-01-31 12:35:09 +01:00
|
|
|
static constexpr int num_wii_controllers = 4;
|
|
|
|
std::array<WiiTASInputWindow*, num_wii_controllers> m_wii_tas_input_windows{};
|
2017-09-13 19:33:45 +02:00
|
|
|
|
2023-05-26 15:35:50 +02:00
|
|
|
#ifdef USE_RETRO_ACHIEVEMENTS
|
|
|
|
AchievementsWindow* m_achievements_window = nullptr;
|
|
|
|
#endif // USE_RETRO_ACHIEVEMENTS
|
|
|
|
|
2022-12-18 09:43:28 +01:00
|
|
|
AssemblerWidget* m_assembler_widget;
|
2017-10-03 18:43:44 +02:00
|
|
|
BreakpointWidget* m_breakpoint_widget;
|
2018-02-14 23:25:01 +01:00
|
|
|
CodeWidget* m_code_widget;
|
2018-04-09 15:31:20 +02:00
|
|
|
JITWidget* m_jit_widget;
|
2017-08-28 00:10:06 +02:00
|
|
|
LogWidget* m_log_widget;
|
|
|
|
LogConfigWidget* m_log_config_widget;
|
2018-03-16 12:39:53 +01:00
|
|
|
MemoryWidget* m_memory_widget;
|
2020-04-19 21:30:50 +02:00
|
|
|
NetworkWidget* m_network_widget;
|
2017-09-13 19:33:45 +02:00
|
|
|
RegisterWidget* m_register_widget;
|
2020-03-21 08:48:49 +01:00
|
|
|
ThreadWidget* m_thread_widget;
|
2017-09-27 08:53:05 +02:00
|
|
|
WatchWidget* m_watch_widget;
|
2018-03-26 04:17:47 +02:00
|
|
|
CheatsManager* m_cheats_manager;
|
2018-05-13 00:59:09 +02:00
|
|
|
QByteArray m_render_widget_geometry;
|
2015-11-27 09:33:07 +01:00
|
|
|
};
|