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.
|
|
|
|
|
2014-10-12 21:44:57 +05:30
|
|
|
#include <atomic>
|
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
#include <QThread>
|
|
|
|
#include <QGLWidget>
|
2014-10-12 21:44:57 +05:30
|
|
|
|
2014-04-11 06:20:10 +05:30
|
|
|
#include "common/common.h"
|
|
|
|
#include "common/emu_window.h"
|
2015-04-17 09:01:14 +05:30
|
|
|
#include "common/thread.h"
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-10-12 21:44:57 +05:30
|
|
|
class QScreen;
|
2014-04-01 07:56:50 +05:30
|
|
|
class QKeyEvent;
|
|
|
|
|
2014-10-12 21:44:57 +05:30
|
|
|
class GRenderWindow;
|
2015-04-17 04:05:09 +05:30
|
|
|
class GMainWindow;
|
2014-10-12 21:44:57 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
class EmuThread : public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start emulation (on new thread)
|
|
|
|
* @warning Only call when not running!
|
|
|
|
*/
|
2014-10-26 10:26:13 +05:30
|
|
|
void run() override;
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
/**
|
2015-04-29 04:33:01 +05:30
|
|
|
* Steps the emulation thread by a single CPU instruction (if the CPU is not already running)
|
2014-04-01 07:56:50 +05:30
|
|
|
* @note This function is thread-safe
|
|
|
|
*/
|
2015-04-29 04:33:01 +05:30
|
|
|
void ExecStep() { exec_step = true; }
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
/**
|
2015-04-29 04:33:01 +05:30
|
|
|
* Sets whether the emulation thread is running or not
|
|
|
|
* @param running Boolean value, set the emulation thread to running if true
|
2014-04-01 07:56:50 +05:30
|
|
|
* @note This function is thread-safe
|
|
|
|
*/
|
2015-04-29 04:33:01 +05:30
|
|
|
void SetRunning(bool running) { this->running = running; }
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-04-04 06:54:07 +05:30
|
|
|
/**
|
2015-04-29 04:33:01 +05:30
|
|
|
* Check if the emulation thread is running or not
|
|
|
|
* @return True if the emulation thread is running, otherwise false
|
2015-04-17 09:01:14 +05:30
|
|
|
* @note This function is thread-safe
|
|
|
|
*/
|
2015-04-29 04:33:01 +05:30
|
|
|
bool IsRunning() { return running; }
|
2015-04-17 09:01:14 +05:30
|
|
|
|
|
|
|
/**
|
2015-04-29 04:33:01 +05:30
|
|
|
* Shutdown (permanently stops) the emulation thread
|
2015-04-17 09:01:14 +05:30
|
|
|
*/
|
2015-04-29 04:33:01 +05:30
|
|
|
void Shutdown() { stop_run = true; };
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
private:
|
2015-04-17 04:05:09 +05:30
|
|
|
friend class GMainWindow;
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
EmuThread(GRenderWindow* render_window);
|
|
|
|
|
2015-04-29 04:33:01 +05:30
|
|
|
bool exec_step;
|
|
|
|
bool running;
|
2014-08-24 23:12:52 +05:30
|
|
|
std::atomic<bool> stop_run;
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
GRenderWindow* render_window;
|
|
|
|
|
|
|
|
signals:
|
|
|
|
/**
|
2015-01-07 16:44:23 +05:30
|
|
|
* Emitted when the CPU has halted execution
|
2014-10-12 21:44:57 +05:30
|
|
|
*
|
2014-04-01 07:56:50 +05:30
|
|
|
* @warning When connecting to this signal from other threads, make sure to specify either Qt::QueuedConnection (invoke slot within the destination object's message thread) or even Qt::BlockingQueuedConnection (additionally block source thread until slot returns)
|
|
|
|
*/
|
2015-01-07 16:44:23 +05:30
|
|
|
void DebugModeEntered();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emitted right before the CPU continues execution
|
|
|
|
*
|
|
|
|
* @warning When connecting to this signal from other threads, make sure to specify either Qt::QueuedConnection (invoke slot within the destination object's message thread) or even Qt::BlockingQueuedConnection (additionally block source thread until slot returns)
|
|
|
|
*/
|
|
|
|
void DebugModeLeft();
|
2014-04-01 07:56:50 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
class GRenderWindow : public QWidget, public EmuWindow
|
|
|
|
{
|
2014-08-24 20:17:00 +05:30
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
public:
|
2015-04-17 04:05:09 +05:30
|
|
|
GRenderWindow(QWidget* parent, GMainWindow& main_window);
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
// EmuWindow implementation
|
2014-10-26 10:26:13 +05:30
|
|
|
void SwapBuffers() override;
|
|
|
|
void MakeCurrent() override;
|
|
|
|
void DoneCurrent() override;
|
|
|
|
void PollEvents() override;
|
2014-04-01 07:56:50 +05:30
|
|
|
|
|
|
|
void BackupGeometry();
|
|
|
|
void RestoreGeometry();
|
|
|
|
void restoreGeometry(const QByteArray& geometry); // overridden
|
2014-10-12 21:44:57 +05:30
|
|
|
QByteArray saveGeometry(); // overridden
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2014-10-26 10:26:13 +05:30
|
|
|
void keyPressEvent(QKeyEvent* event) override;
|
|
|
|
void keyReleaseEvent(QKeyEvent* event) override;
|
2014-04-01 07:56:50 +05:30
|
|
|
|
2015-03-08 13:12:40 +05:30
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *event) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
|
|
|
2014-09-13 05:36:13 +05:30
|
|
|
void ReloadSetKeymaps() override;
|
|
|
|
|
2014-10-12 21:44:57 +05:30
|
|
|
void OnClientAreaResized(unsigned width, unsigned height);
|
|
|
|
|
|
|
|
void OnFramebufferSizeChanged();
|
|
|
|
|
2014-08-24 21:19:34 +05:30
|
|
|
public slots:
|
2014-10-12 21:44:57 +05:30
|
|
|
void moveContext(); // overridden
|
2014-08-24 20:17:00 +05:30
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
private:
|
2014-10-13 02:16:33 +05:30
|
|
|
void OnMinimalClientAreaChangeRequest(const std::pair<unsigned,unsigned>& minimal_size) override;
|
|
|
|
|
2014-04-01 07:56:50 +05:30
|
|
|
QGLWidget* child;
|
|
|
|
|
|
|
|
QByteArray geometry;
|
2014-09-09 10:16:02 +05:30
|
|
|
|
2015-04-17 04:05:09 +05:30
|
|
|
GMainWindow& main_window;
|
|
|
|
|
2014-09-13 05:36:13 +05:30
|
|
|
/// Device id of keyboard for use with KeyMap
|
2014-09-09 10:16:02 +05:30
|
|
|
int keyboard_id;
|
2014-04-01 07:56:50 +05:30
|
|
|
};
|