2015-01-04 18:36:57 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-04-01 04:26:50 +02:00
|
|
|
#ifndef _CITRA_QT_MAIN_HXX_
|
|
|
|
#define _CITRA_QT_MAIN_HXX_
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
#include <memory>
|
2016-09-20 17:21:23 +02:00
|
|
|
#include <QMainWindow>
|
2014-04-01 04:26:50 +02:00
|
|
|
#include "ui_main.h"
|
|
|
|
|
2016-12-19 20:50:58 +01:00
|
|
|
class CallstackWidget;
|
2016-01-24 21:23:55 +01:00
|
|
|
class Config;
|
2016-12-19 20:50:58 +01:00
|
|
|
class DisassemblerWidget;
|
|
|
|
class EmuThread;
|
2015-09-01 06:35:33 +02:00
|
|
|
class GameList;
|
2014-04-01 04:26:50 +02:00
|
|
|
class GImageInfo;
|
2016-12-19 20:50:58 +01:00
|
|
|
class GPUCommandStreamWidget;
|
|
|
|
class GPUCommandListWidget;
|
|
|
|
class GraphicsBreakPointsWidget;
|
|
|
|
class GraphicsTracingWidget;
|
|
|
|
class GraphicsVertexShaderWidget;
|
2014-04-01 04:26:50 +02:00
|
|
|
class GRenderWindow;
|
2015-08-17 23:25:21 +02:00
|
|
|
class MicroProfileDialog;
|
2016-12-19 20:50:58 +01:00
|
|
|
class ProfilerWidget;
|
2014-04-19 00:30:53 +02:00
|
|
|
class RegistersWidget;
|
2016-04-08 18:28:54 +02:00
|
|
|
class WaitTreeWidget;
|
2014-04-01 04:26:50 +02:00
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
class GMainWindow : public QMainWindow {
|
2014-04-01 04:26:50 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2016-09-19 03:01:46 +02: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-04-01 04:26:50 +02:00
|
|
|
// TODO: Make use of this!
|
|
|
|
enum {
|
|
|
|
UI_IDLE,
|
|
|
|
UI_EMU_BOOTING,
|
|
|
|
UI_EMU_RUNNING,
|
|
|
|
UI_EMU_STOPPING,
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
GMainWindow();
|
|
|
|
~GMainWindow();
|
|
|
|
|
2015-04-29 06:01:41 +02: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-17 00:35:09 +02:00
|
|
|
|
2014-04-01 04:26:50 +02:00
|
|
|
private:
|
2016-12-19 20:50:58 +01:00
|
|
|
void InitializeWidgets();
|
2017-02-18 11:16:24 +01:00
|
|
|
void InitializeDebugWidgets();
|
2016-12-19 20:50:58 +01:00
|
|
|
void InitializeRecentFileMenuActions();
|
|
|
|
void InitializeHotkeys();
|
|
|
|
|
|
|
|
void SetDefaultUIGeometry();
|
|
|
|
void RestoreUIState();
|
|
|
|
|
|
|
|
void ConnectWidgetEvents();
|
2017-02-18 11:26:57 +01:00
|
|
|
void ConnectMenuEvents();
|
2016-12-19 20:50:58 +01:00
|
|
|
|
2017-02-17 07:32:22 +01:00
|
|
|
bool LoadROM(const QString& filename);
|
|
|
|
void BootGame(const QString& filename);
|
2015-04-28 05:13:57 +02:00
|
|
|
void ShutdownGame();
|
2014-04-01 04:26:50 +02: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-17 07:32:22 +01: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-16 04:23:30 +01:00
|
|
|
bool ConfirmChangeGame();
|
2014-10-26 05:56:13 +01:00
|
|
|
void closeEvent(QCloseEvent* event) override;
|
2014-04-01 04:26:50 +02:00
|
|
|
|
|
|
|
private slots:
|
2014-05-01 05:46:57 +02:00
|
|
|
void OnStartGame();
|
|
|
|
void OnPauseGame();
|
|
|
|
void OnStopGame();
|
2015-09-01 06:35:33 +02:00
|
|
|
/// Called whenever a user selects a game in the game list widget.
|
|
|
|
void OnGameListLoadFile(QString game_path);
|
2016-12-15 10:56:32 +01:00
|
|
|
void OnGameListOpenSaveFolder(u64 program_id);
|
2014-05-01 05:46:57 +02:00
|
|
|
void OnMenuLoadFile();
|
|
|
|
void OnMenuLoadSymbolMap();
|
2015-09-07 00:33:57 +02:00
|
|
|
/// Called whenever a user selects the "File->Select Game List Root" menu item
|
|
|
|
void OnMenuSelectGameListRoot();
|
2015-07-28 18:43:18 +02:00
|
|
|
void OnMenuRecentFile();
|
2016-11-05 09:58:11 +01:00
|
|
|
void OnSwapScreens();
|
2014-04-01 04:26:50 +02:00
|
|
|
void OnConfigure();
|
2015-01-06 16:09:30 +01:00
|
|
|
void OnDisplayTitleBars(bool);
|
2014-04-13 01:01:33 +02:00
|
|
|
void ToggleWindowMode();
|
2016-04-09 18:23:15 +02:00
|
|
|
void OnCreateGraphicsSurfaceViewer();
|
2014-04-01 04:26:50 +02:00
|
|
|
|
|
|
|
private:
|
2017-02-19 23:34:47 +01:00
|
|
|
void UpdateStatusBar();
|
|
|
|
|
2014-04-01 04:26:50 +02:00
|
|
|
Ui::MainWindow ui;
|
|
|
|
|
|
|
|
GRenderWindow* render_window;
|
2015-09-01 06:35:33 +02:00
|
|
|
GameList* game_list;
|
2015-04-29 06:01:41 +02:00
|
|
|
|
2017-02-18 21:09:14 +01:00
|
|
|
// Status bar elements
|
|
|
|
QLabel* emu_speed_label = nullptr;
|
|
|
|
QLabel* game_fps_label = nullptr;
|
|
|
|
QLabel* emu_frametime_label = nullptr;
|
2017-02-19 23:34:47 +01:00
|
|
|
QTimer status_bar_update_timer;
|
2017-02-18 21:09:14 +01:00
|
|
|
|
2016-01-24 21:23:55 +01:00
|
|
|
std::unique_ptr<Config> config;
|
|
|
|
|
2015-09-01 03:30:06 +02:00
|
|
|
// Whether emulation is currently running in Citra.
|
|
|
|
bool emulation_running = false;
|
2015-04-29 06:01:41 +02:00
|
|
|
std::unique_ptr<EmuThread> emu_thread;
|
2014-04-19 00:30:53 +02:00
|
|
|
|
2017-02-18 21:09:14 +01:00
|
|
|
// Debugger panes
|
2015-02-05 17:53:25 +01:00
|
|
|
ProfilerWidget* profilerWidget;
|
2015-08-17 23:25:21 +02:00
|
|
|
MicroProfileDialog* microProfileDialog;
|
2014-04-19 00:30:53 +02:00
|
|
|
DisassemblerWidget* disasmWidget;
|
|
|
|
RegistersWidget* registersWidget;
|
|
|
|
CallstackWidget* callstackWidget;
|
2014-05-17 22:38:10 +02:00
|
|
|
GPUCommandStreamWidget* graphicsWidget;
|
2014-05-18 17:52:22 +02:00
|
|
|
GPUCommandListWidget* graphicsCommandsWidget;
|
2016-12-19 20:50:58 +01:00
|
|
|
GraphicsBreakPointsWidget* graphicsBreakpointsWidget;
|
|
|
|
GraphicsVertexShaderWidget* graphicsVertexShaderWidget;
|
|
|
|
GraphicsTracingWidget* graphicsTracingWidget;
|
2016-04-08 18:28:54 +02:00
|
|
|
WaitTreeWidget* waitTreeWidget;
|
2015-07-28 18:43:18 +02:00
|
|
|
|
|
|
|
QAction* actions_recent_files[max_recent_files_item];
|
2017-02-16 04:23:30 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void dropEvent(QDropEvent* event) override;
|
|
|
|
void dragEnterEvent(QDragEnterEvent* event) override;
|
|
|
|
void dragMoveEvent(QDragMoveEvent* event) override;
|
2014-04-01 04:26:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CITRA_QT_MAIN_HXX_
|