2019-09-17 06:06:28 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-09-11 05:23:00 +01:00
|
|
|
#include <QApplication>
|
2019-11-28 17:56:58 +00:00
|
|
|
#include <QDragEnterEvent>
|
2014-04-01 03:26:50 +01:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QKeyEvent>
|
2019-09-17 06:06:28 +01:00
|
|
|
#include <QOffscreenSurface>
|
2019-09-17 03:38:48 +01:00
|
|
|
#include <QOpenGLContext>
|
|
|
|
#include <QOpenGLFunctions>
|
2019-09-25 04:47:00 +01:00
|
|
|
#include <QOpenGLFunctions_3_3_Core>
|
2019-09-22 08:19:10 +01:00
|
|
|
#include <QOpenGLWindow>
|
2014-08-30 06:23:12 +01:00
|
|
|
#include <QScreen>
|
|
|
|
#include <QWindow>
|
2018-04-29 23:37:15 +01:00
|
|
|
#include <fmt/format.h>
|
2015-09-11 05:23:00 +01:00
|
|
|
#include "citra_qt/bootmanager.h"
|
2019-11-28 17:56:58 +00:00
|
|
|
#include "citra_qt/main.h"
|
2015-08-17 22:25:21 +01:00
|
|
|
#include "common/microprofile.h"
|
2015-09-11 05:23:00 +01:00
|
|
|
#include "common/scm_rev.h"
|
2017-05-28 02:06:59 +01:00
|
|
|
#include "core/3ds.h"
|
2014-04-11 01:50:10 +01:00
|
|
|
#include "core/core.h"
|
2019-09-17 03:38:48 +01:00
|
|
|
#include "core/frontend/scope_acquire_context.h"
|
2017-01-28 10:33:35 +00:00
|
|
|
#include "core/settings.h"
|
2017-01-21 09:53:03 +00:00
|
|
|
#include "input_common/keyboard.h"
|
|
|
|
#include "input_common/main.h"
|
2017-08-06 22:04:06 +01:00
|
|
|
#include "input_common/motion_emu.h"
|
2017-07-07 20:34:15 +01:00
|
|
|
#include "network/network.h"
|
2019-09-17 03:38:48 +01:00
|
|
|
#include "video_core/renderer_base.h"
|
2018-08-31 07:16:16 +01:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-01 03:26:50 +01:00
|
|
|
|
2019-09-17 03:38:48 +01:00
|
|
|
EmuThread::EmuThread(Frontend::GraphicsContext& core_context) : core_context(core_context) {}
|
2014-04-01 03:26:50 +01:00
|
|
|
|
2019-07-11 17:46:44 +01:00
|
|
|
EmuThread::~EmuThread() = default;
|
|
|
|
|
2019-11-28 17:56:58 +00:00
|
|
|
static GMainWindow* GetMainWindow() {
|
|
|
|
for (QWidget* w : qApp->topLevelWidgets()) {
|
|
|
|
if (GMainWindow* main = qobject_cast<GMainWindow*>(w)) {
|
|
|
|
return main;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-04-17 04:31:14 +01:00
|
|
|
void EmuThread::run() {
|
2015-08-17 22:25:21 +01:00
|
|
|
MicroProfileOnThreadCreate("EmuThread");
|
2019-09-17 03:38:48 +01:00
|
|
|
Frontend::ScopeAcquireContext scope(core_context);
|
2019-09-07 23:15:05 +01:00
|
|
|
|
2020-01-22 01:48:07 +00:00
|
|
|
emit LoadProgress(VideoCore::LoadCallbackStage::Prepare, 0, 0);
|
|
|
|
|
2019-09-07 23:15:05 +01:00
|
|
|
Core::System::GetInstance().Renderer().Rasterizer()->LoadDiskResources(
|
|
|
|
stop_run, [this](VideoCore::LoadCallbackStage stage, std::size_t value, std::size_t total) {
|
2020-01-22 01:48:07 +00:00
|
|
|
emit LoadProgress(stage, value, total);
|
2019-09-07 23:15:05 +01:00
|
|
|
});
|
|
|
|
|
2020-01-22 01:48:07 +00:00
|
|
|
emit LoadProgress(VideoCore::LoadCallbackStage::Complete, 0, 0);
|
|
|
|
|
2017-10-28 18:38:56 +01:00
|
|
|
// Holds whether the cpu was running during the last iteration,
|
2015-01-07 11:14:23 +00:00
|
|
|
// so that the DebugModeLeft signal can be emitted before the
|
2017-10-28 18:38:56 +01:00
|
|
|
// next execution step.
|
2015-01-07 11:14:23 +00:00
|
|
|
bool was_active = false;
|
2015-04-17 04:31:14 +01:00
|
|
|
while (!stop_run) {
|
2015-04-29 00:03:01 +01:00
|
|
|
if (running) {
|
2015-01-07 11:14:23 +00:00
|
|
|
if (!was_active)
|
|
|
|
emit DebugModeLeft();
|
|
|
|
|
2017-03-08 21:28:30 +00:00
|
|
|
Core::System::ResultStatus result = Core::System::GetInstance().RunLoop();
|
2018-07-18 13:07:00 +01:00
|
|
|
if (result == Core::System::ResultStatus::ShutdownRequested) {
|
|
|
|
// Notify frontend we shutdown
|
|
|
|
emit ErrorThrown(result, "");
|
|
|
|
// End emulation execution
|
|
|
|
break;
|
|
|
|
}
|
2017-03-08 21:28:30 +00:00
|
|
|
if (result != Core::System::ResultStatus::Success) {
|
2017-12-28 19:17:21 +00:00
|
|
|
this->SetRunning(false);
|
2017-04-13 06:15:23 +01:00
|
|
|
emit ErrorThrown(result, Core::System::GetInstance().GetStatusDetails());
|
2017-03-08 21:28:30 +00:00
|
|
|
}
|
2015-01-07 11:14:23 +00:00
|
|
|
|
2015-04-29 00:03:01 +01:00
|
|
|
was_active = running || exec_step;
|
2015-05-01 00:46:50 +01:00
|
|
|
if (!was_active && !stop_run)
|
2015-01-07 11:14:23 +00:00
|
|
|
emit DebugModeEntered();
|
2015-04-29 00:03:01 +01:00
|
|
|
} else if (exec_step) {
|
2015-01-07 11:14:23 +00:00
|
|
|
if (!was_active)
|
|
|
|
emit DebugModeLeft();
|
|
|
|
|
2015-04-29 00:03:01 +01:00
|
|
|
exec_step = false;
|
2016-12-16 00:01:48 +00:00
|
|
|
Core::System::GetInstance().SingleStep();
|
2015-01-07 11:14:23 +00:00
|
|
|
emit DebugModeEntered();
|
2014-11-09 21:56:29 +00:00
|
|
|
yieldCurrentThread();
|
2015-05-25 19:34:09 +01:00
|
|
|
|
2015-01-07 11:14:23 +00:00
|
|
|
was_active = false;
|
2015-05-16 18:56:00 +01:00
|
|
|
} else {
|
2019-04-01 17:29:59 +01:00
|
|
|
std::unique_lock lock{running_mutex};
|
2016-09-18 01:38:01 +01:00
|
|
|
running_cv.wait(lock, [this] { return IsRunning() || exec_step || stop_run; });
|
2014-04-01 03:26:50 +01:00
|
|
|
}
|
|
|
|
}
|
2015-04-17 04:31:14 +01:00
|
|
|
|
2015-08-30 12:47:50 +01:00
|
|
|
// Shutdown the core emulation
|
2016-11-05 03:14:38 +00:00
|
|
|
Core::System::GetInstance().Shutdown();
|
2015-08-30 12:47:50 +01:00
|
|
|
|
2016-04-29 01:17:31 +01:00
|
|
|
#if MICROPROFILE_ENABLED
|
2015-08-17 22:25:21 +01:00
|
|
|
MicroProfileOnThreadExit();
|
2016-04-29 01:17:31 +01:00
|
|
|
#endif
|
2014-04-01 03:26:50 +01:00
|
|
|
}
|
2019-11-28 18:20:42 +00:00
|
|
|
|
2019-09-25 04:28:57 +01:00
|
|
|
OpenGLWindow::OpenGLWindow(QWindow* parent, QWidget* event_handler, QOpenGLContext* shared_context)
|
2020-04-11 00:37:45 +01:00
|
|
|
: QWindow(parent), context(new QOpenGLContext(shared_context->parent())),
|
|
|
|
event_handler(event_handler) {
|
2019-12-15 22:42:05 +00:00
|
|
|
|
|
|
|
// disable vsync for any shared contexts
|
|
|
|
auto format = shared_context->format();
|
|
|
|
format.setSwapInterval(Settings::values.use_vsync_new ? 1 : 0);
|
|
|
|
this->setFormat(format);
|
|
|
|
|
2019-09-22 08:19:10 +01:00
|
|
|
context->setShareContext(shared_context);
|
|
|
|
context->setScreen(this->screen());
|
2019-12-15 22:42:05 +00:00
|
|
|
context->setFormat(format);
|
2019-09-22 08:19:10 +01:00
|
|
|
context->create();
|
|
|
|
|
|
|
|
setSurfaceType(QWindow::OpenGLSurface);
|
|
|
|
|
|
|
|
// TODO: One of these flags might be interesting: WA_OpaquePaintEvent, WA_NoBackground,
|
|
|
|
// WA_DontShowOnScreen, WA_DeleteOnClose
|
|
|
|
}
|
|
|
|
|
|
|
|
OpenGLWindow::~OpenGLWindow() {
|
|
|
|
context->doneCurrent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenGLWindow::Present() {
|
|
|
|
if (!isExposed())
|
|
|
|
return;
|
2020-01-22 01:48:07 +00:00
|
|
|
|
2019-09-22 08:19:10 +01:00
|
|
|
context->makeCurrent(this);
|
2020-04-01 22:06:22 +01:00
|
|
|
if (VideoCore::g_renderer) {
|
|
|
|
VideoCore::g_renderer->TryPresent(100);
|
|
|
|
}
|
2019-09-22 08:19:10 +01:00
|
|
|
context->swapBuffers(this);
|
2019-09-25 04:47:00 +01:00
|
|
|
auto f = context->versionFunctions<QOpenGLFunctions_3_3_Core>();
|
|
|
|
f->glFinish();
|
2019-09-22 08:19:10 +01:00
|
|
|
QWindow::requestUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenGLWindow::event(QEvent* event) {
|
|
|
|
switch (event->type()) {
|
|
|
|
case QEvent::UpdateRequest:
|
|
|
|
Present();
|
|
|
|
return true;
|
2019-09-25 04:28:57 +01:00
|
|
|
case QEvent::MouseButtonPress:
|
|
|
|
case QEvent::MouseButtonRelease:
|
|
|
|
case QEvent::MouseButtonDblClick:
|
|
|
|
case QEvent::MouseMove:
|
2019-09-25 04:47:00 +01:00
|
|
|
case QEvent::KeyPress:
|
|
|
|
case QEvent::KeyRelease:
|
2019-09-25 04:28:57 +01:00
|
|
|
case QEvent::FocusIn:
|
|
|
|
case QEvent::FocusOut:
|
|
|
|
case QEvent::FocusAboutToChange:
|
|
|
|
case QEvent::Enter:
|
|
|
|
case QEvent::Leave:
|
|
|
|
case QEvent::Wheel:
|
|
|
|
case QEvent::TabletMove:
|
|
|
|
case QEvent::TabletPress:
|
|
|
|
case QEvent::TabletRelease:
|
|
|
|
case QEvent::TabletEnterProximity:
|
|
|
|
case QEvent::TabletLeaveProximity:
|
|
|
|
case QEvent::TouchBegin:
|
|
|
|
case QEvent::TouchUpdate:
|
|
|
|
case QEvent::TouchEnd:
|
|
|
|
case QEvent::InputMethodQuery:
|
|
|
|
case QEvent::TouchCancel:
|
|
|
|
return QCoreApplication::sendEvent(event_handler, event);
|
2019-11-28 17:56:58 +00:00
|
|
|
case QEvent::Drop:
|
|
|
|
GetMainWindow()->DropAction(static_cast<QDropEvent*>(event));
|
|
|
|
return true;
|
|
|
|
case QEvent::DragEnter:
|
|
|
|
case QEvent::DragMove:
|
|
|
|
GetMainWindow()->AcceptDropEvent(static_cast<QDropEvent*>(event));
|
|
|
|
return true;
|
2019-09-22 08:19:10 +01:00
|
|
|
default:
|
|
|
|
return QWindow::event(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenGLWindow::exposeEvent(QExposeEvent* event) {
|
|
|
|
QWindow::requestUpdate();
|
|
|
|
QWindow::exposeEvent(event);
|
|
|
|
}
|
2014-04-01 03:26:50 +01:00
|
|
|
|
2020-01-22 01:48:07 +00:00
|
|
|
GRenderWindow::GRenderWindow(QWidget* parent_, EmuThread* emu_thread)
|
|
|
|
: QWidget(parent_), emu_thread(emu_thread) {
|
2014-04-01 03:26:50 +01:00
|
|
|
|
2018-10-24 13:10:56 +01:00
|
|
|
setWindowTitle(QStringLiteral("Citra %1 | %2-%3")
|
2020-02-11 12:12:09 +00:00
|
|
|
.arg(QString::fromUtf8(Common::g_build_name),
|
|
|
|
QString::fromUtf8(Common::g_scm_branch),
|
|
|
|
QString::fromUtf8(Common::g_scm_desc)));
|
2018-10-01 20:42:49 +01:00
|
|
|
setAttribute(Qt::WA_AcceptTouchEvents);
|
2019-09-22 08:19:10 +01:00
|
|
|
auto layout = new QHBoxLayout(this);
|
|
|
|
layout->setMargin(0);
|
|
|
|
setLayout(layout);
|
2017-01-21 09:53:03 +00:00
|
|
|
InputCommon::Init();
|
2020-01-22 01:48:07 +00:00
|
|
|
|
2020-04-07 15:58:51 +01:00
|
|
|
this->setMouseTracking(true);
|
|
|
|
|
2020-01-22 01:48:07 +00:00
|
|
|
GMainWindow* parent = GetMainWindow();
|
|
|
|
connect(this, &GRenderWindow::FirstFrameDisplayed, parent, &GMainWindow::OnLoadComplete);
|
2017-01-21 09:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GRenderWindow::~GRenderWindow() {
|
|
|
|
InputCommon::Shutdown();
|
2014-04-01 03:26:50 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::MakeCurrent() {
|
2019-09-17 03:38:48 +01:00
|
|
|
core_context->MakeCurrent();
|
2014-04-01 03:26:50 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::DoneCurrent() {
|
2019-09-17 03:38:48 +01:00
|
|
|
core_context->DoneCurrent();
|
2014-04-01 03:26:50 +01:00
|
|
|
}
|
|
|
|
|
2020-01-22 01:48:07 +00:00
|
|
|
void GRenderWindow::PollEvents() {
|
|
|
|
if (!first_frame) {
|
|
|
|
first_frame = true;
|
|
|
|
emit FirstFrameDisplayed();
|
|
|
|
}
|
|
|
|
}
|
2014-04-01 03:26:50 +01:00
|
|
|
|
2014-10-12 17:14:57 +01:00
|
|
|
// On Qt 5.0+, this correctly gets the size of the framebuffer (pixels).
|
2014-08-30 06:23:12 +01:00
|
|
|
//
|
|
|
|
// Older versions get the window size (density independent pixels),
|
|
|
|
// and hence, do not support DPI scaling ("retina" displays).
|
|
|
|
// The result will be a viewport that is smaller than the extent of the window.
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::OnFramebufferSizeChanged() {
|
|
|
|
// Screen changes potentially incur a change in screen DPI, hence we should update the
|
|
|
|
// framebuffer size
|
2019-07-11 17:46:44 +01:00
|
|
|
const qreal pixel_ratio = windowPixelRatio();
|
2019-09-17 03:38:48 +01:00
|
|
|
const u32 width = this->width() * pixel_ratio;
|
|
|
|
const u32 height = this->height() * pixel_ratio;
|
2016-05-03 07:07:17 +01:00
|
|
|
UpdateCurrentFramebufferLayout(width, height);
|
2014-08-30 06:23:12 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::BackupGeometry() {
|
2019-07-11 17:46:44 +01:00
|
|
|
geometry = QWidget::saveGeometry();
|
2014-04-01 03:26:50 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::RestoreGeometry() {
|
2014-04-01 03:26:50 +01:00
|
|
|
// We don't want to back up the geometry here (obviously)
|
|
|
|
QWidget::restoreGeometry(geometry);
|
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::restoreGeometry(const QByteArray& geometry) {
|
2014-04-01 03:26:50 +01:00
|
|
|
// Make sure users of this class don't need to deal with backing up the geometry themselves
|
|
|
|
QWidget::restoreGeometry(geometry);
|
|
|
|
BackupGeometry();
|
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
QByteArray GRenderWindow::saveGeometry() {
|
2014-04-01 03:26:50 +01:00
|
|
|
// If we are a top-level widget, store the current geometry
|
|
|
|
// otherwise, store the last backup
|
2019-07-11 17:46:44 +01:00
|
|
|
if (parent() == nullptr) {
|
|
|
|
return QWidget::saveGeometry();
|
|
|
|
}
|
|
|
|
|
|
|
|
return geometry;
|
2014-04-01 03:26:50 +01:00
|
|
|
}
|
|
|
|
|
2018-10-01 20:42:49 +01:00
|
|
|
qreal GRenderWindow::windowPixelRatio() const {
|
2020-06-17 04:45:20 +01:00
|
|
|
return devicePixelRatioF();
|
2015-09-10 22:42:45 +01:00
|
|
|
}
|
|
|
|
|
2019-07-11 17:46:44 +01:00
|
|
|
std::pair<u32, u32> GRenderWindow::ScaleTouch(const QPointF pos) const {
|
2018-10-01 20:42:49 +01:00
|
|
|
const qreal pixel_ratio = windowPixelRatio();
|
2019-07-11 17:46:44 +01:00
|
|
|
return {static_cast<u32>(std::max(std::round(pos.x() * pixel_ratio), qreal{0.0})),
|
|
|
|
static_cast<u32>(std::max(std::round(pos.y() * pixel_ratio), qreal{0.0}))};
|
2018-10-01 20:42:49 +01:00
|
|
|
}
|
|
|
|
|
2015-09-05 11:29:44 +01:00
|
|
|
void GRenderWindow::closeEvent(QCloseEvent* event) {
|
|
|
|
emit Closed();
|
|
|
|
QWidget::closeEvent(event);
|
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::keyPressEvent(QKeyEvent* event) {
|
2017-01-21 09:53:03 +00:00
|
|
|
InputCommon::GetKeyboard()->PressKey(event->key());
|
2014-04-01 03:26:50 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::keyReleaseEvent(QKeyEvent* event) {
|
2017-01-21 09:53:03 +00:00
|
|
|
InputCommon::GetKeyboard()->ReleaseKey(event->key());
|
2014-08-24 15:47:00 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::mousePressEvent(QMouseEvent* event) {
|
2018-10-01 20:42:49 +01:00
|
|
|
if (event->source() == Qt::MouseEventSynthesizedBySystem)
|
|
|
|
return; // touch input is handled in TouchBeginEvent
|
|
|
|
|
2016-12-11 21:32:41 +00:00
|
|
|
auto pos = event->pos();
|
2016-09-18 01:38:01 +01:00
|
|
|
if (event->button() == Qt::LeftButton) {
|
2018-10-01 20:42:49 +01:00
|
|
|
const auto [x, y] = ScaleTouch(pos);
|
|
|
|
this->TouchPressed(x, y);
|
2016-12-11 21:32:41 +00:00
|
|
|
} else if (event->button() == Qt::RightButton) {
|
2017-08-06 22:04:06 +01:00
|
|
|
InputCommon::GetMotionEmu()->BeginTilt(pos.x(), pos.y());
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
2020-05-04 11:33:02 +01:00
|
|
|
QWidget::mousePressEvent(event);
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::mouseMoveEvent(QMouseEvent* event) {
|
2018-10-01 20:42:49 +01:00
|
|
|
if (event->source() == Qt::MouseEventSynthesizedBySystem)
|
|
|
|
return; // touch input is handled in TouchUpdateEvent
|
|
|
|
|
2015-03-08 07:42:40 +00:00
|
|
|
auto pos = event->pos();
|
2018-10-01 20:42:49 +01:00
|
|
|
const auto [x, y] = ScaleTouch(pos);
|
|
|
|
this->TouchMoved(x, y);
|
2017-08-06 22:04:06 +01:00
|
|
|
InputCommon::GetMotionEmu()->Tilt(pos.x(), pos.y());
|
2020-04-07 15:58:51 +01:00
|
|
|
QWidget::mouseMoveEvent(event);
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::mouseReleaseEvent(QMouseEvent* event) {
|
2018-10-01 20:42:49 +01:00
|
|
|
if (event->source() == Qt::MouseEventSynthesizedBySystem)
|
|
|
|
return; // touch input is handled in TouchEndEvent
|
|
|
|
|
2015-03-09 04:14:59 +00:00
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
this->TouchReleased();
|
2016-12-11 21:32:41 +00:00
|
|
|
else if (event->button() == Qt::RightButton)
|
2017-08-06 22:04:06 +01:00
|
|
|
InputCommon::GetMotionEmu()->EndTilt();
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
|
2018-10-01 20:42:49 +01:00
|
|
|
void GRenderWindow::TouchBeginEvent(const QTouchEvent* event) {
|
|
|
|
// TouchBegin always has exactly one touch point, so take the .first()
|
|
|
|
const auto [x, y] = ScaleTouch(event->touchPoints().first().pos());
|
|
|
|
this->TouchPressed(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::TouchUpdateEvent(const QTouchEvent* event) {
|
|
|
|
QPointF pos;
|
|
|
|
int active_points = 0;
|
|
|
|
|
|
|
|
// average all active touch points
|
2020-09-05 05:09:31 +01:00
|
|
|
for (const auto& tp : event->touchPoints()) {
|
2018-10-01 20:42:49 +01:00
|
|
|
if (tp.state() & (Qt::TouchPointPressed | Qt::TouchPointMoved | Qt::TouchPointStationary)) {
|
|
|
|
active_points++;
|
|
|
|
pos += tp.pos();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pos /= active_points;
|
|
|
|
|
|
|
|
const auto [x, y] = ScaleTouch(pos);
|
|
|
|
this->TouchMoved(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::TouchEndEvent() {
|
|
|
|
this->TouchReleased();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GRenderWindow::event(QEvent* event) {
|
2019-11-28 17:56:58 +00:00
|
|
|
switch (event->type()) {
|
|
|
|
case QEvent::TouchBegin:
|
2018-10-01 20:42:49 +01:00
|
|
|
TouchBeginEvent(static_cast<QTouchEvent*>(event));
|
|
|
|
return true;
|
2019-11-28 17:56:58 +00:00
|
|
|
case QEvent::TouchUpdate:
|
2018-10-01 20:42:49 +01:00
|
|
|
TouchUpdateEvent(static_cast<QTouchEvent*>(event));
|
|
|
|
return true;
|
2019-11-28 17:56:58 +00:00
|
|
|
case QEvent::TouchEnd:
|
|
|
|
case QEvent::TouchCancel:
|
2018-10-01 20:42:49 +01:00
|
|
|
TouchEndEvent();
|
|
|
|
return true;
|
2019-11-28 17:56:58 +00:00
|
|
|
default:
|
|
|
|
break;
|
2018-10-01 20:42:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return QWidget::event(event);
|
|
|
|
}
|
|
|
|
|
2017-03-17 19:41:25 +00:00
|
|
|
void GRenderWindow::focusOutEvent(QFocusEvent* event) {
|
|
|
|
QWidget::focusOutEvent(event);
|
|
|
|
InputCommon::GetKeyboard()->ReleaseAllKeys();
|
|
|
|
}
|
|
|
|
|
2019-09-17 03:38:48 +01:00
|
|
|
void GRenderWindow::resizeEvent(QResizeEvent* event) {
|
2019-09-22 08:19:10 +01:00
|
|
|
QWidget::resizeEvent(event);
|
2019-09-17 03:38:48 +01:00
|
|
|
OnFramebufferSizeChanged();
|
2014-10-12 17:14:57 +01:00
|
|
|
}
|
2014-10-12 21:46:33 +01:00
|
|
|
|
2016-08-30 02:28:58 +01:00
|
|
|
void GRenderWindow::InitRenderTarget() {
|
2019-12-15 23:20:59 +00:00
|
|
|
ReleaseRenderTarget();
|
2019-09-22 08:19:10 +01:00
|
|
|
|
2020-01-22 01:48:07 +00:00
|
|
|
first_frame = false;
|
|
|
|
|
2019-11-29 03:35:50 +00:00
|
|
|
GMainWindow* parent = GetMainWindow();
|
|
|
|
QWindow* parent_win_handle = parent ? parent->windowHandle() : nullptr;
|
|
|
|
child_window = new OpenGLWindow(parent_win_handle, this, QOpenGLContext::globalShareContext());
|
2019-09-22 08:19:10 +01:00
|
|
|
child_window->create();
|
|
|
|
child_widget = createWindowContainer(child_window, this);
|
|
|
|
child_widget->resize(Core::kScreenTopWidth, Core::kScreenTopHeight + Core::kScreenBottomHeight);
|
2020-01-22 01:48:07 +00:00
|
|
|
|
2019-09-22 08:19:10 +01:00
|
|
|
layout()->addWidget(child_widget);
|
|
|
|
|
2019-09-17 03:38:48 +01:00
|
|
|
core_context = CreateSharedContext();
|
2019-09-19 08:06:28 +01:00
|
|
|
resize(Core::kScreenTopWidth, Core::kScreenTopHeight + Core::kScreenBottomHeight);
|
2019-09-22 06:56:50 +01:00
|
|
|
OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
|
2020-01-04 11:59:09 +00:00
|
|
|
OnFramebufferSizeChanged();
|
2016-08-30 02:28:58 +01:00
|
|
|
BackupGeometry();
|
|
|
|
}
|
|
|
|
|
2019-12-15 23:20:59 +00:00
|
|
|
void GRenderWindow::ReleaseRenderTarget() {
|
|
|
|
if (child_widget) {
|
|
|
|
layout()->removeWidget(child_widget);
|
|
|
|
delete child_widget;
|
|
|
|
child_widget = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-11 17:46:44 +01:00
|
|
|
void GRenderWindow::CaptureScreenshot(u32 res_scale, const QString& screenshot_path) {
|
|
|
|
if (res_scale == 0)
|
2018-08-31 07:16:16 +01:00
|
|
|
res_scale = VideoCore::GetResolutionScaleFactor();
|
|
|
|
const Layout::FramebufferLayout layout{Layout::FrameLayoutFromResolutionScale(res_scale)};
|
|
|
|
screenshot_image = QImage(QSize(layout.width, layout.height), QImage::Format_RGB32);
|
2019-07-11 17:46:44 +01:00
|
|
|
VideoCore::RequestScreenshot(
|
|
|
|
screenshot_image.bits(),
|
|
|
|
[=] {
|
|
|
|
const std::string std_screenshot_path = screenshot_path.toStdString();
|
|
|
|
if (screenshot_image.mirrored(false, true).save(screenshot_path)) {
|
|
|
|
LOG_INFO(Frontend, "Screenshot saved to \"{}\"", std_screenshot_path);
|
|
|
|
} else {
|
|
|
|
LOG_ERROR(Frontend, "Failed to save screenshot to \"{}\"", std_screenshot_path);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
layout);
|
2018-08-31 07:16:16 +01:00
|
|
|
}
|
|
|
|
|
2019-07-11 17:46:44 +01:00
|
|
|
void GRenderWindow::OnMinimalClientAreaChangeRequest(std::pair<u32, u32> minimal_size) {
|
2014-11-19 09:02:05 +00:00
|
|
|
setMinimumSize(minimal_size.first, minimal_size.second);
|
2014-10-12 21:46:33 +01:00
|
|
|
}
|
2015-04-29 05:01:41 +01:00
|
|
|
|
2015-05-01 00:46:50 +01:00
|
|
|
void GRenderWindow::OnEmulationStarting(EmuThread* emu_thread) {
|
2015-04-29 05:01:41 +01:00
|
|
|
this->emu_thread = emu_thread;
|
|
|
|
}
|
|
|
|
|
2015-05-01 00:46:50 +01:00
|
|
|
void GRenderWindow::OnEmulationStopping() {
|
2015-04-29 05:01:41 +01:00
|
|
|
emu_thread = nullptr;
|
2019-09-17 03:38:48 +01:00
|
|
|
}
|
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void GRenderWindow::showEvent(QShowEvent* event) {
|
2015-09-04 14:55:48 +01:00
|
|
|
QWidget::showEvent(event);
|
|
|
|
}
|
2019-09-17 03:38:48 +01:00
|
|
|
|
|
|
|
std::unique_ptr<Frontend::GraphicsContext> GRenderWindow::CreateSharedContext() const {
|
2019-09-17 06:29:21 +01:00
|
|
|
return std::make_unique<GLContext>(QOpenGLContext::globalShareContext());
|
2019-09-17 03:38:48 +01:00
|
|
|
}
|
|
|
|
|
2019-09-17 06:29:21 +01:00
|
|
|
GLContext::GLContext(QOpenGLContext* shared_context)
|
2019-09-17 03:38:48 +01:00
|
|
|
: context(new QOpenGLContext(shared_context->parent())),
|
2019-09-17 06:28:41 +01:00
|
|
|
surface(new QOffscreenSurface(nullptr)) {
|
2019-12-15 22:42:05 +00:00
|
|
|
|
|
|
|
// disable vsync for any shared contexts
|
|
|
|
auto format = shared_context->format();
|
|
|
|
format.setSwapInterval(0);
|
|
|
|
|
2019-09-17 03:38:48 +01:00
|
|
|
context->setShareContext(shared_context);
|
2019-12-15 22:42:05 +00:00
|
|
|
context->setFormat(format);
|
2019-09-17 03:38:48 +01:00
|
|
|
context->create();
|
2019-09-17 06:28:41 +01:00
|
|
|
surface->setParent(shared_context->parent());
|
2019-12-15 22:42:05 +00:00
|
|
|
surface->setFormat(format);
|
2019-09-17 03:38:48 +01:00
|
|
|
surface->create();
|
|
|
|
}
|
|
|
|
|
2019-09-17 06:29:21 +01:00
|
|
|
void GLContext::MakeCurrent() {
|
2019-09-17 03:38:48 +01:00
|
|
|
context->makeCurrent(surface);
|
|
|
|
}
|
|
|
|
|
2019-09-17 06:29:21 +01:00
|
|
|
void GLContext::DoneCurrent() {
|
2019-09-17 03:38:48 +01:00
|
|
|
context->doneCurrent();
|
|
|
|
}
|