2019-09-17 05:06:28 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-09-11 04:23:00 +00:00
|
|
|
#include <QApplication>
|
2014-04-01 02:26:50 +00:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QKeyEvent>
|
2019-09-17 05:06:28 +00:00
|
|
|
#include <QOffscreenSurface>
|
2019-09-17 02:38:48 +00:00
|
|
|
#include <QOpenGLContext>
|
|
|
|
#include <QOpenGLFunctions>
|
2019-09-22 07:19:10 +00:00
|
|
|
#include <QOpenGLWindow>
|
2014-08-30 05:23:12 +00:00
|
|
|
#include <QScreen>
|
|
|
|
#include <QWindow>
|
2018-04-29 22:37:15 +00:00
|
|
|
#include <fmt/format.h>
|
2015-09-11 04:23:00 +00:00
|
|
|
#include "citra_qt/bootmanager.h"
|
2015-08-17 21:25:21 +00:00
|
|
|
#include "common/microprofile.h"
|
2015-09-11 04:23:00 +00:00
|
|
|
#include "common/scm_rev.h"
|
2017-05-28 01:06:59 +00:00
|
|
|
#include "core/3ds.h"
|
2014-04-11 00:50:10 +00:00
|
|
|
#include "core/core.h"
|
2019-09-17 02:38:48 +00: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 21:04:06 +00:00
|
|
|
#include "input_common/motion_emu.h"
|
2017-07-07 19:34:15 +00:00
|
|
|
#include "network/network.h"
|
2019-09-17 02:38:48 +00:00
|
|
|
#include "video_core/renderer_base.h"
|
2018-08-31 06:16:16 +00:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2019-09-17 02:38:48 +00:00
|
|
|
EmuThread::EmuThread(Frontend::GraphicsContext& core_context) : core_context(core_context) {}
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2019-07-11 16:46:44 +00:00
|
|
|
EmuThread::~EmuThread() = default;
|
|
|
|
|
2015-04-17 03:31:14 +00:00
|
|
|
void EmuThread::run() {
|
2015-08-17 21:25:21 +00:00
|
|
|
MicroProfileOnThreadCreate("EmuThread");
|
2019-09-17 02:38:48 +00:00
|
|
|
Frontend::ScopeAcquireContext scope(core_context);
|
2017-10-28 17:38:56 +00: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 17:38:56 +00:00
|
|
|
// next execution step.
|
2015-01-07 11:14:23 +00:00
|
|
|
bool was_active = false;
|
2015-04-17 03:31:14 +00:00
|
|
|
while (!stop_run) {
|
2015-04-28 23:03:01 +00: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 12:07:00 +00: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 05:15:23 +00: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-28 23:03:01 +00:00
|
|
|
was_active = running || exec_step;
|
2015-04-30 23:46:50 +00:00
|
|
|
if (!was_active && !stop_run)
|
2015-01-07 11:14:23 +00:00
|
|
|
emit DebugModeEntered();
|
2015-04-28 23:03:01 +00:00
|
|
|
} else if (exec_step) {
|
2015-01-07 11:14:23 +00:00
|
|
|
if (!was_active)
|
|
|
|
emit DebugModeLeft();
|
|
|
|
|
2015-04-28 23:03:01 +00: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 18:34:09 +00:00
|
|
|
|
2015-01-07 11:14:23 +00:00
|
|
|
was_active = false;
|
2015-05-16 17:56:00 +00:00
|
|
|
} else {
|
2019-04-01 16:29:59 +00:00
|
|
|
std::unique_lock lock{running_mutex};
|
2016-09-18 00:38:01 +00:00
|
|
|
running_cv.wait(lock, [this] { return IsRunning() || exec_step || stop_run; });
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-17 03:31:14 +00:00
|
|
|
|
2015-08-30 11:47:50 +00:00
|
|
|
// Shutdown the core emulation
|
2016-11-05 03:14:38 +00:00
|
|
|
Core::System::GetInstance().Shutdown();
|
2015-08-30 11:47:50 +00:00
|
|
|
|
2016-04-29 00:17:31 +00:00
|
|
|
#if MICROPROFILE_ENABLED
|
2015-08-17 21:25:21 +00:00
|
|
|
MicroProfileOnThreadExit();
|
2016-04-29 00:17:31 +00:00
|
|
|
#endif
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
2019-09-25 03:28:57 +00:00
|
|
|
OpenGLWindow::OpenGLWindow(QWindow* parent, QWidget* event_handler, QOpenGLContext* shared_context)
|
|
|
|
: QWindow(parent), event_handler(event_handler),
|
|
|
|
context(new QOpenGLContext(shared_context->parent())) {
|
2019-09-22 07:19:10 +00:00
|
|
|
context->setShareContext(shared_context);
|
|
|
|
context->setScreen(this->screen());
|
|
|
|
context->setFormat(shared_context->format());
|
|
|
|
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;
|
|
|
|
context->makeCurrent(this);
|
|
|
|
VideoCore::g_renderer->TryPresent(100);
|
|
|
|
context->swapBuffers(this);
|
|
|
|
QWindow::requestUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenGLWindow::event(QEvent* event) {
|
|
|
|
switch (event->type()) {
|
|
|
|
case QEvent::UpdateRequest:
|
|
|
|
Present();
|
|
|
|
return true;
|
2019-09-25 03:28:57 +00:00
|
|
|
case QEvent::MouseButtonPress:
|
|
|
|
case QEvent::MouseButtonRelease:
|
|
|
|
case QEvent::MouseButtonDblClick:
|
|
|
|
case QEvent::MouseMove:
|
|
|
|
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-09-22 07:19:10 +00:00
|
|
|
default:
|
|
|
|
return QWindow::event(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenGLWindow::exposeEvent(QExposeEvent* event) {
|
|
|
|
QWindow::requestUpdate();
|
|
|
|
QWindow::exposeEvent(event);
|
|
|
|
}
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread)
|
2019-09-22 07:19:10 +00:00
|
|
|
: QWidget(parent), emu_thread(emu_thread) {
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2018-10-24 12:10:56 +00:00
|
|
|
setWindowTitle(QStringLiteral("Citra %1 | %2-%3")
|
|
|
|
.arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc));
|
2018-10-01 19:42:49 +00:00
|
|
|
setAttribute(Qt::WA_AcceptTouchEvents);
|
2019-09-22 07:19:10 +00:00
|
|
|
auto layout = new QHBoxLayout(this);
|
|
|
|
layout->setMargin(0);
|
|
|
|
setLayout(layout);
|
2017-01-21 09:53:03 +00:00
|
|
|
InputCommon::Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
GRenderWindow::~GRenderWindow() {
|
|
|
|
InputCommon::Shutdown();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::MakeCurrent() {
|
2019-09-17 02:38:48 +00:00
|
|
|
core_context->MakeCurrent();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::DoneCurrent() {
|
2019-09-17 02:38:48 +00:00
|
|
|
core_context->DoneCurrent();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
void GRenderWindow::PollEvents() {}
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
// On Qt 5.0+, this correctly gets the size of the framebuffer (pixels).
|
2014-08-30 05:23:12 +00: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 00:38:01 +00:00
|
|
|
void GRenderWindow::OnFramebufferSizeChanged() {
|
|
|
|
// Screen changes potentially incur a change in screen DPI, hence we should update the
|
|
|
|
// framebuffer size
|
2019-07-11 16:46:44 +00:00
|
|
|
const qreal pixel_ratio = windowPixelRatio();
|
2019-09-17 02:38:48 +00:00
|
|
|
const u32 width = this->width() * pixel_ratio;
|
|
|
|
const u32 height = this->height() * pixel_ratio;
|
2016-05-03 06:07:17 +00:00
|
|
|
UpdateCurrentFramebufferLayout(width, height);
|
2014-08-30 05:23:12 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::BackupGeometry() {
|
2019-07-11 16:46:44 +00:00
|
|
|
geometry = QWidget::saveGeometry();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::RestoreGeometry() {
|
2014-04-01 02:26:50 +00:00
|
|
|
// We don't want to back up the geometry here (obviously)
|
|
|
|
QWidget::restoreGeometry(geometry);
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::restoreGeometry(const QByteArray& geometry) {
|
2014-04-01 02:26:50 +00: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 00:38:01 +00:00
|
|
|
QByteArray GRenderWindow::saveGeometry() {
|
2014-04-01 02:26:50 +00:00
|
|
|
// If we are a top-level widget, store the current geometry
|
|
|
|
// otherwise, store the last backup
|
2019-07-11 16:46:44 +00:00
|
|
|
if (parent() == nullptr) {
|
|
|
|
return QWidget::saveGeometry();
|
|
|
|
}
|
|
|
|
|
|
|
|
return geometry;
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2018-10-01 19:42:49 +00:00
|
|
|
qreal GRenderWindow::windowPixelRatio() const {
|
2019-09-18 16:40:48 +00:00
|
|
|
return devicePixelRatio();
|
2015-09-10 21:42:45 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 16:46:44 +00:00
|
|
|
std::pair<u32, u32> GRenderWindow::ScaleTouch(const QPointF pos) const {
|
2018-10-01 19:42:49 +00:00
|
|
|
const qreal pixel_ratio = windowPixelRatio();
|
2019-07-11 16:46:44 +00: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 19:42:49 +00:00
|
|
|
}
|
|
|
|
|
2015-09-05 10:29:44 +00:00
|
|
|
void GRenderWindow::closeEvent(QCloseEvent* event) {
|
|
|
|
emit Closed();
|
|
|
|
QWidget::closeEvent(event);
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::keyPressEvent(QKeyEvent* event) {
|
2017-01-21 09:53:03 +00:00
|
|
|
InputCommon::GetKeyboard()->PressKey(event->key());
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::keyReleaseEvent(QKeyEvent* event) {
|
2017-01-21 09:53:03 +00:00
|
|
|
InputCommon::GetKeyboard()->ReleaseKey(event->key());
|
2014-08-24 14:47:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::mousePressEvent(QMouseEvent* event) {
|
2018-10-01 19:42:49 +00: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 00:38:01 +00:00
|
|
|
if (event->button() == Qt::LeftButton) {
|
2018-10-01 19:42:49 +00: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 21:04:06 +00:00
|
|
|
InputCommon::GetMotionEmu()->BeginTilt(pos.x(), pos.y());
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::mouseMoveEvent(QMouseEvent* event) {
|
2018-10-01 19:42:49 +00: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 19:42:49 +00:00
|
|
|
const auto [x, y] = ScaleTouch(pos);
|
|
|
|
this->TouchMoved(x, y);
|
2017-08-06 21:04:06 +00:00
|
|
|
InputCommon::GetMotionEmu()->Tilt(pos.x(), pos.y());
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::mouseReleaseEvent(QMouseEvent* event) {
|
2018-10-01 19:42:49 +00: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 21:04:06 +00:00
|
|
|
InputCommon::GetMotionEmu()->EndTilt();
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
|
2018-10-01 19:42:49 +00: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
|
|
|
|
for (const auto tp : event->touchPoints()) {
|
|
|
|
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) {
|
|
|
|
if (event->type() == QEvent::TouchBegin) {
|
|
|
|
TouchBeginEvent(static_cast<QTouchEvent*>(event));
|
|
|
|
return true;
|
|
|
|
} else if (event->type() == QEvent::TouchUpdate) {
|
|
|
|
TouchUpdateEvent(static_cast<QTouchEvent*>(event));
|
|
|
|
return true;
|
|
|
|
} else if (event->type() == QEvent::TouchEnd || event->type() == QEvent::TouchCancel) {
|
|
|
|
TouchEndEvent();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 02:38:48 +00:00
|
|
|
void GRenderWindow::resizeEvent(QResizeEvent* event) {
|
2019-09-22 07:19:10 +00:00
|
|
|
child_widget->resize(event->size());
|
|
|
|
QWidget::resizeEvent(event);
|
2019-09-17 02:38:48 +00:00
|
|
|
OnFramebufferSizeChanged();
|
2014-10-12 16:14:57 +00:00
|
|
|
}
|
2014-10-12 20:46:33 +00:00
|
|
|
|
2016-08-30 01:28:58 +00:00
|
|
|
void GRenderWindow::InitRenderTarget() {
|
2019-09-22 07:19:10 +00:00
|
|
|
// Destroy the previous run's child_widget which should also destroy the child_window
|
|
|
|
if (child_widget) {
|
|
|
|
layout()->removeWidget(child_widget);
|
|
|
|
delete child_widget;
|
|
|
|
}
|
|
|
|
|
2019-09-25 03:28:57 +00:00
|
|
|
child_window = new OpenGLWindow(QWidget::window()->windowHandle(), this,
|
|
|
|
QOpenGLContext::globalShareContext());
|
2019-09-22 07:19:10 +00:00
|
|
|
child_window->create();
|
|
|
|
child_widget = createWindowContainer(child_window, this);
|
|
|
|
child_widget->resize(Core::kScreenTopWidth, Core::kScreenTopHeight + Core::kScreenBottomHeight);
|
|
|
|
layout()->addWidget(child_widget);
|
|
|
|
|
2019-09-17 02:38:48 +00:00
|
|
|
core_context = CreateSharedContext();
|
2019-09-19 07:06:28 +00:00
|
|
|
resize(Core::kScreenTopWidth, Core::kScreenTopHeight + Core::kScreenBottomHeight);
|
2019-09-22 05:56:50 +00:00
|
|
|
OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
|
2016-08-30 01:28:58 +00:00
|
|
|
BackupGeometry();
|
|
|
|
}
|
|
|
|
|
2019-07-11 16:46:44 +00:00
|
|
|
void GRenderWindow::CaptureScreenshot(u32 res_scale, const QString& screenshot_path) {
|
|
|
|
if (res_scale == 0)
|
2018-08-31 06:16:16 +00: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 16:46:44 +00: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 06:16:16 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 16:46:44 +00: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 20:46:33 +00:00
|
|
|
}
|
2015-04-29 04:01:41 +00:00
|
|
|
|
2015-04-30 23:46:50 +00:00
|
|
|
void GRenderWindow::OnEmulationStarting(EmuThread* emu_thread) {
|
2015-04-29 04:01:41 +00:00
|
|
|
this->emu_thread = emu_thread;
|
|
|
|
}
|
|
|
|
|
2015-04-30 23:46:50 +00:00
|
|
|
void GRenderWindow::OnEmulationStopping() {
|
2015-04-29 04:01:41 +00:00
|
|
|
emu_thread = nullptr;
|
2019-09-17 02:38:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::showEvent(QShowEvent* event) {
|
2015-09-04 13:55:48 +00:00
|
|
|
QWidget::showEvent(event);
|
|
|
|
}
|
2019-09-17 02:38:48 +00:00
|
|
|
|
|
|
|
std::unique_ptr<Frontend::GraphicsContext> GRenderWindow::CreateSharedContext() const {
|
2019-09-17 05:29:21 +00:00
|
|
|
return std::make_unique<GLContext>(QOpenGLContext::globalShareContext());
|
2019-09-17 02:38:48 +00:00
|
|
|
}
|
|
|
|
|
2019-09-17 05:29:21 +00:00
|
|
|
GLContext::GLContext(QOpenGLContext* shared_context)
|
2019-09-17 02:38:48 +00:00
|
|
|
: context(new QOpenGLContext(shared_context->parent())),
|
2019-09-17 05:28:41 +00:00
|
|
|
surface(new QOffscreenSurface(nullptr)) {
|
2019-09-17 02:38:48 +00:00
|
|
|
context->setShareContext(shared_context);
|
|
|
|
context->create();
|
2019-09-17 05:28:41 +00:00
|
|
|
surface->setParent(shared_context->parent());
|
2019-09-17 02:38:48 +00:00
|
|
|
surface->setFormat(shared_context->format());
|
|
|
|
surface->create();
|
|
|
|
}
|
|
|
|
|
2019-09-17 05:29:21 +00:00
|
|
|
void GLContext::MakeCurrent() {
|
2019-09-17 02:38:48 +00:00
|
|
|
context->makeCurrent(surface);
|
|
|
|
}
|
|
|
|
|
2019-09-17 05:29:21 +00:00
|
|
|
void GLContext::DoneCurrent() {
|
2019-09-17 02:38:48 +00:00
|
|
|
context->doneCurrent();
|
|
|
|
}
|