2015-01-04 17:36:57 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-12-11 11:53:18 +00:00
|
|
|
#pragma once
|
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
#include <atomic>
|
2015-05-16 17:56:00 +00:00
|
|
|
#include <condition_variable>
|
2020-08-29 04:44:27 +00:00
|
|
|
#include <memory>
|
2015-05-16 17:56:00 +00:00
|
|
|
#include <mutex>
|
2020-03-25 04:57:36 +00:00
|
|
|
|
2018-08-31 06:16:16 +00:00
|
|
|
#include <QImage>
|
2015-09-11 04:23:00 +00:00
|
|
|
#include <QThread>
|
2021-01-03 04:04:50 +00:00
|
|
|
#include <QTouchEvent>
|
2019-01-12 04:06:34 +00:00
|
|
|
#include <QWidget>
|
2020-02-17 20:53:21 +00:00
|
|
|
#include <QWindow>
|
2020-03-25 04:57:36 +00:00
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
#include "common/thread.h"
|
2017-03-08 21:28:30 +00:00
|
|
|
#include "core/core.h"
|
2016-12-23 13:37:40 +00:00
|
|
|
#include "core/frontend/emu_window.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2020-02-21 17:40:23 +00:00
|
|
|
class GRenderWindow;
|
2020-03-25 02:58:49 +00:00
|
|
|
class GMainWindow;
|
2014-04-01 02:26:50 +00:00
|
|
|
class QKeyEvent;
|
2020-01-21 19:40:53 +00:00
|
|
|
class QStringList;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2020-08-27 19:16:47 +00:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
|
|
|
}
|
|
|
|
|
2021-02-24 02:39:02 +00:00
|
|
|
namespace MouseInput {
|
|
|
|
enum class MouseButton;
|
|
|
|
}
|
|
|
|
|
2019-01-21 19:38:23 +00:00
|
|
|
namespace VideoCore {
|
|
|
|
enum class LoadCallbackStage;
|
|
|
|
}
|
|
|
|
|
2019-05-29 06:05:06 +00:00
|
|
|
class EmuThread final : public QThread {
|
2014-04-01 02:26:50 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-03-25 02:58:49 +00:00
|
|
|
explicit EmuThread();
|
2019-05-29 06:05:06 +00:00
|
|
|
~EmuThread() override;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Start emulation (on new thread)
|
|
|
|
* @warning Only call when not running!
|
|
|
|
*/
|
2014-10-26 04:56:13 +00:00
|
|
|
void run() override;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
/**
|
2015-04-28 23:03:01 +00:00
|
|
|
* Steps the emulation thread by a single CPU instruction (if the CPU is not already running)
|
2014-04-01 02:26:50 +00:00
|
|
|
* @note This function is thread-safe
|
|
|
|
*/
|
2015-07-13 15:27:12 +00:00
|
|
|
void ExecStep() {
|
|
|
|
exec_step = true;
|
|
|
|
running_cv.notify_all();
|
|
|
|
}
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
/**
|
2015-04-28 23:03:01 +00:00
|
|
|
* Sets whether the emulation thread is running or not
|
|
|
|
* @param running Boolean value, set the emulation thread to running if true
|
2014-04-01 02:26:50 +00:00
|
|
|
* @note This function is thread-safe
|
|
|
|
*/
|
2015-05-16 17:56:00 +00:00
|
|
|
void SetRunning(bool running) {
|
2019-04-01 16:29:59 +00:00
|
|
|
std::unique_lock lock{running_mutex};
|
2015-05-16 17:56:00 +00:00
|
|
|
this->running = running;
|
|
|
|
lock.unlock();
|
|
|
|
running_cv.notify_all();
|
2020-02-25 02:04:12 +00:00
|
|
|
if (!running) {
|
|
|
|
running_wait.Set();
|
|
|
|
/// Wait until effectively paused
|
2020-05-08 22:53:13 +00:00
|
|
|
while (running_guard)
|
|
|
|
;
|
2020-02-25 02:04:12 +00:00
|
|
|
}
|
2015-05-16 17:56:00 +00:00
|
|
|
}
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-04-04 01:24:07 +00:00
|
|
|
/**
|
2015-04-28 23:03:01 +00:00
|
|
|
* Check if the emulation thread is running or not
|
|
|
|
* @return True if the emulation thread is running, otherwise false
|
2015-04-17 03:31:14 +00:00
|
|
|
* @note This function is thread-safe
|
|
|
|
*/
|
2018-01-17 23:34:58 +00:00
|
|
|
bool IsRunning() const {
|
2016-09-18 00:38:01 +00:00
|
|
|
return running;
|
|
|
|
}
|
2015-04-17 03:31:14 +00:00
|
|
|
|
|
|
|
/**
|
2015-04-30 23:46:50 +00:00
|
|
|
* Requests for the emulation thread to stop running
|
2015-04-17 03:31:14 +00:00
|
|
|
*/
|
2015-04-30 23:46:50 +00:00
|
|
|
void RequestStop() {
|
2021-06-22 03:04:55 +00:00
|
|
|
stop_source.request_stop();
|
2015-05-16 17:56:00 +00:00
|
|
|
SetRunning(false);
|
2018-01-17 23:34:58 +00:00
|
|
|
}
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
private:
|
2018-01-17 23:34:58 +00:00
|
|
|
bool exec_step = false;
|
|
|
|
bool running = false;
|
2021-06-22 03:04:55 +00:00
|
|
|
std::stop_source stop_source;
|
2020-03-25 04:57:36 +00:00
|
|
|
std::mutex running_mutex;
|
2021-06-22 03:04:55 +00:00
|
|
|
std::condition_variable_any running_cv;
|
2020-02-25 02:04:12 +00:00
|
|
|
Common::Event running_wait{};
|
|
|
|
std::atomic_bool running_guard{false};
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
/**
|
2015-01-07 11:14:23 +00:00
|
|
|
* Emitted when the CPU has halted execution
|
2014-10-12 16:14:57 +00:00
|
|
|
*
|
2016-09-18 00:38:01 +00:00
|
|
|
* @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)
|
2014-04-01 02:26:50 +00:00
|
|
|
*/
|
2015-01-07 11:14:23 +00:00
|
|
|
void DebugModeEntered();
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2015-01-07 11:14:23 +00:00
|
|
|
/**
|
|
|
|
* Emitted right before the CPU continues execution
|
|
|
|
*
|
2016-09-18 00:38:01 +00:00
|
|
|
* @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 11:14:23 +00:00
|
|
|
*/
|
|
|
|
void DebugModeLeft();
|
2017-03-08 21:28:30 +00:00
|
|
|
|
2017-04-13 05:18:54 +00:00
|
|
|
void ErrorThrown(Core::System::ResultStatus, std::string);
|
2019-01-21 19:38:23 +00:00
|
|
|
|
|
|
|
void LoadProgress(VideoCore::LoadCallbackStage stage, std::size_t value, std::size_t total);
|
2014-04-01 02:26:50 +00:00
|
|
|
};
|
|
|
|
|
2018-08-12 00:20:19 +00:00
|
|
|
class GRenderWindow : public QWidget, public Core::Frontend::EmuWindow {
|
2014-08-24 14:47:00 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
public:
|
2020-08-27 19:16:47 +00:00
|
|
|
explicit GRenderWindow(GMainWindow* parent, EmuThread* emu_thread_,
|
2020-08-29 04:44:27 +00:00
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem_);
|
2018-08-06 17:12:32 +00:00
|
|
|
~GRenderWindow() override;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2020-02-17 20:53:21 +00:00
|
|
|
// EmuWindow implementation.
|
Overhaul EmuWindow::PollEvents to fix yuzu-cmd calling SDL_PollEvents off main thread
EmuWindow::PollEvents was called from the GPU thread (or the CPU thread
in sync-GPU mode) when swapping buffers. It had three implementations:
- In GRenderWindow, it didn't actually poll events, just set a flag and
emit a signal to indicate that a frame was displayed.
- In EmuWindow_SDL2_Hide, it did nothing.
- In EmuWindow_SDL2, it did call SDL_PollEvents, but this is wrong
because SDL_PollEvents is supposed to be called on the thread that set
up video - in this case, the main thread, which was sleeping in a
busyloop (regardless of whether sync-GPU was enabled). On macOS this
causes a crash.
To fix this:
- Rename EmuWindow::PollEvents to OnFrameDisplayed, and give it a
default implementation that does nothing.
- In EmuWindow_SDL2, do not override OnFrameDisplayed, but instead have
the main thread call SDL_WaitEvent in a loop.
2020-11-22 21:05:18 +00:00
|
|
|
void OnFrameDisplayed() override;
|
2020-01-21 19:40:53 +00:00
|
|
|
bool IsShown() const override;
|
2019-01-12 04:06:34 +00:00
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
void BackupGeometry();
|
|
|
|
void RestoreGeometry();
|
|
|
|
void restoreGeometry(const QByteArray& geometry); // overridden
|
2016-09-18 00:38:01 +00:00
|
|
|
QByteArray saveGeometry(); // overridden
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2020-02-17 20:53:21 +00:00
|
|
|
qreal windowPixelRatio() const;
|
2015-09-10 21:42:45 +00:00
|
|
|
|
2015-09-05 10:29:44 +00:00
|
|
|
void closeEvent(QCloseEvent* event) override;
|
2020-02-17 20:53:21 +00:00
|
|
|
|
|
|
|
void resizeEvent(QResizeEvent* event) override;
|
|
|
|
|
|
|
|
void keyPressEvent(QKeyEvent* event) override;
|
|
|
|
void keyReleaseEvent(QKeyEvent* event) override;
|
|
|
|
|
2021-02-24 02:39:02 +00:00
|
|
|
/// Converts a Qt mouse button into MouseInput mouse button
|
|
|
|
static MouseInput::MouseButton QtButtonToMouseButton(Qt::MouseButton button);
|
|
|
|
|
2020-02-17 20:53:21 +00:00
|
|
|
void mousePressEvent(QMouseEvent* event) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent* event) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent* event) override;
|
|
|
|
|
2018-10-01 19:42:49 +00:00
|
|
|
bool event(QEvent* event) override;
|
2017-03-17 19:41:25 +00:00
|
|
|
|
2020-02-17 20:53:21 +00:00
|
|
|
void focusOutEvent(QFocusEvent* event) override;
|
2014-10-12 16:14:57 +00:00
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
bool InitRenderTarget();
|
2016-08-30 01:28:58 +00:00
|
|
|
|
2020-02-17 20:53:21 +00:00
|
|
|
/// Destroy the previous run's child_widget which should also destroy the child_window
|
|
|
|
void ReleaseRenderTarget();
|
|
|
|
|
2020-11-17 05:33:38 +00:00
|
|
|
bool IsLoadingComplete() const;
|
|
|
|
|
2019-05-29 06:14:24 +00:00
|
|
|
void CaptureScreenshot(u32 res_scale, const QString& screenshot_path);
|
2018-08-31 06:16:16 +00:00
|
|
|
|
2020-03-25 04:57:36 +00:00
|
|
|
std::pair<u32, u32> ScaleTouch(const QPointF& pos) const;
|
2020-03-25 02:58:49 +00:00
|
|
|
|
2020-11-24 23:18:29 +00:00
|
|
|
/**
|
|
|
|
* Instructs the window to re-launch the application using the specified program_index.
|
|
|
|
* @param program_index Specifies the index within the application of the program to launch.
|
|
|
|
*/
|
|
|
|
void ExecuteProgram(std::size_t program_index);
|
|
|
|
|
2014-08-24 15:49:34 +00:00
|
|
|
public slots:
|
2015-04-30 23:46:50 +00:00
|
|
|
void OnEmulationStarting(EmuThread* emu_thread);
|
|
|
|
void OnEmulationStopping();
|
2015-09-04 13:55:48 +00:00
|
|
|
void OnFramebufferSizeChanged();
|
2015-04-29 04:01:41 +00:00
|
|
|
|
2015-09-05 10:29:44 +00:00
|
|
|
signals:
|
|
|
|
/// Emitted when the window is closed
|
|
|
|
void Closed();
|
2019-01-17 07:01:00 +00:00
|
|
|
void FirstFrameDisplayed();
|
2020-11-24 23:18:29 +00:00
|
|
|
void ExecuteProgramSignal(std::size_t program_index);
|
2020-12-30 19:41:14 +00:00
|
|
|
void MouseActivity();
|
2015-09-05 10:29:44 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
private:
|
2018-10-01 19:42:49 +00:00
|
|
|
void TouchBeginEvent(const QTouchEvent* event);
|
|
|
|
void TouchUpdateEvent(const QTouchEvent* event);
|
|
|
|
void TouchEndEvent();
|
|
|
|
|
2021-01-03 04:04:50 +00:00
|
|
|
bool TouchStart(const QTouchEvent::TouchPoint& touch_point);
|
|
|
|
bool TouchUpdate(const QTouchEvent::TouchPoint& touch_point);
|
|
|
|
bool TouchExist(std::size_t id, const QList<QTouchEvent::TouchPoint>& touch_points) const;
|
|
|
|
|
2019-05-29 06:02:36 +00:00
|
|
|
void OnMinimalClientAreaChangeRequest(std::pair<u32, u32> minimal_size) override;
|
2014-10-12 20:46:33 +00:00
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
bool InitializeOpenGL();
|
|
|
|
bool InitializeVulkan();
|
|
|
|
bool LoadOpenGL();
|
|
|
|
QStringList GetUnsupportedGLExtensions() const;
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2015-04-29 04:01:41 +00:00
|
|
|
EmuThread* emu_thread;
|
2020-08-29 04:44:27 +00:00
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem;
|
2020-02-17 20:53:21 +00:00
|
|
|
|
2020-03-25 02:58:49 +00:00
|
|
|
// Main context that will be shared with all other contexts that are requested.
|
|
|
|
// If this is used in a shared context setting, then this should not be used directly, but
|
|
|
|
// should instead be shared from
|
|
|
|
std::shared_ptr<Core::Frontend::GraphicsContext> main_context;
|
2015-09-04 13:55:48 +00:00
|
|
|
|
2018-08-31 06:16:16 +00:00
|
|
|
/// Temporary storage of the screenshot taken
|
|
|
|
QImage screenshot_image;
|
|
|
|
|
2020-01-21 19:40:53 +00:00
|
|
|
QByteArray geometry;
|
2020-02-17 20:53:21 +00:00
|
|
|
|
|
|
|
QWidget* child_widget = nullptr;
|
|
|
|
|
2019-01-17 07:01:00 +00:00
|
|
|
bool first_frame = false;
|
|
|
|
|
2021-01-03 04:04:50 +00:00
|
|
|
std::array<std::size_t, 16> touch_ids{};
|
|
|
|
|
2015-09-04 13:55:48 +00:00
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent* event) override;
|
2020-12-30 19:41:14 +00:00
|
|
|
bool eventFilter(QObject* object, QEvent* event) override;
|
2014-04-01 02:26:50 +00:00
|
|
|
};
|