2019-01-12 04:06:34 +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-01-12 04:06:34 +00:00
|
|
|
#include <QOffscreenSurface>
|
|
|
|
#include <QOpenGLWindow>
|
|
|
|
#include <QPainter>
|
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-08-17 21:25:21 +00:00
|
|
|
#include "common/microprofile.h"
|
2015-09-11 04:23:00 +00:00
|
|
|
#include "common/scm_rev.h"
|
2014-04-11 00:50:10 +00:00
|
|
|
#include "core/core.h"
|
2018-01-10 03:36:07 +00:00
|
|
|
#include "core/frontend/framebuffer_layout.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"
|
2018-08-31 06:16:16 +00:00
|
|
|
#include "video_core/renderer_base.h"
|
|
|
|
#include "video_core/video_core.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
#include "yuzu/bootmanager.h"
|
2019-01-17 07:01:00 +00:00
|
|
|
#include "yuzu/main.h"
|
2018-01-12 03:33:56 +00:00
|
|
|
|
2018-01-17 23:34:58 +00:00
|
|
|
EmuThread::EmuThread(GRenderWindow* render_window) : render_window(render_window) {}
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2015-04-17 03:31:14 +00:00
|
|
|
void EmuThread::run() {
|
2018-06-29 18:10:16 +00:00
|
|
|
if (!Settings::values.use_multi_core) {
|
|
|
|
// Single core mode must acquire OpenGL context for entire emulation session
|
|
|
|
render_window->MakeCurrent();
|
|
|
|
}
|
2015-05-19 04:24:43 +00:00
|
|
|
|
2015-08-17 21:25:21 +00:00
|
|
|
MicroProfileOnThreadCreate("EmuThread");
|
|
|
|
|
2014-08-24 15:49:34 +00:00
|
|
|
stop_run = false;
|
2015-01-07 11:14:23 +00:00
|
|
|
|
|
|
|
// holds whether the cpu was running during the last iteration,
|
|
|
|
// so that the DebugModeLeft signal can be emitted before the
|
|
|
|
// next execution step
|
|
|
|
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();
|
|
|
|
if (result != Core::System::ResultStatus::Success) {
|
2018-01-16 16:32:27 +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 {
|
|
|
|
std::unique_lock<std::mutex> 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
|
2015-08-17 21:25:21 +00:00
|
|
|
|
2014-08-24 15:49:34 +00:00
|
|
|
render_window->moveContext();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2019-01-12 04:06:34 +00:00
|
|
|
class GGLContext : public Core::Frontend::GraphicsContext {
|
|
|
|
public:
|
|
|
|
explicit GGLContext(QOpenGLContext* shared_context) : surface() {
|
|
|
|
context = std::make_unique<QOpenGLContext>(shared_context);
|
|
|
|
surface.setFormat(shared_context->format());
|
|
|
|
surface.create();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MakeCurrent() override {
|
|
|
|
context->makeCurrent(&surface);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DoneCurrent() override {
|
|
|
|
context->doneCurrent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwapBuffers() override {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<QOpenGLContext> context;
|
|
|
|
QOffscreenSurface surface;
|
|
|
|
};
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
// This class overrides paintEvent and resizeEvent to prevent the GUI thread from stealing GL
|
|
|
|
// context.
|
2014-04-01 02:26:50 +00:00
|
|
|
// The corresponding functionality is handled in EmuThread instead
|
2019-01-12 04:06:34 +00:00
|
|
|
class GGLWidgetInternal : public QOpenGLWindow {
|
2014-04-01 02:26:50 +00:00
|
|
|
public:
|
2019-01-12 04:06:34 +00:00
|
|
|
GGLWidgetInternal(GRenderWindow* parent, QOpenGLContext* shared_context)
|
|
|
|
: QOpenGLWindow(shared_context), parent(parent) {}
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
void paintEvent(QPaintEvent* ev) override {
|
2015-08-26 20:04:12 +00:00
|
|
|
if (do_painting) {
|
|
|
|
QPainter painter(this);
|
|
|
|
}
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
2014-10-12 16:14:57 +00:00
|
|
|
|
2014-10-26 04:56:13 +00:00
|
|
|
void resizeEvent(QResizeEvent* ev) override {
|
2014-10-12 16:14:57 +00:00
|
|
|
parent->OnClientAreaResized(ev->size().width(), ev->size().height());
|
|
|
|
parent->OnFramebufferSizeChanged();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
2014-10-12 16:14:57 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void DisablePainting() {
|
|
|
|
do_painting = false;
|
|
|
|
}
|
|
|
|
void EnablePainting() {
|
|
|
|
do_painting = true;
|
|
|
|
}
|
2015-08-26 20:04:12 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
private:
|
2014-10-12 16:14:57 +00:00
|
|
|
GRenderWindow* parent;
|
2015-08-26 20:04:12 +00:00
|
|
|
bool do_painting;
|
2014-04-01 02:26:50 +00:00
|
|
|
};
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread)
|
2019-01-12 04:06:34 +00:00
|
|
|
: QWidget(parent), child(nullptr), context(nullptr), emu_thread(emu_thread) {
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2018-10-24 12:10:56 +00:00
|
|
|
setWindowTitle(QStringLiteral("yuzu %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);
|
2014-11-13 17:17:39 +00:00
|
|
|
|
2017-01-21 09:53:03 +00:00
|
|
|
InputCommon::Init();
|
2018-09-11 01:29:59 +00:00
|
|
|
InputCommon::StartJoystickEventHandler();
|
2019-01-17 07:01:00 +00:00
|
|
|
connect(this, &GRenderWindow::FirstFrameDisplayed, static_cast<GMainWindow*>(parent),
|
|
|
|
&GMainWindow::OnLoadComplete);
|
2017-01-21 09:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GRenderWindow::~GRenderWindow() {
|
|
|
|
InputCommon::Shutdown();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::moveContext() {
|
2014-08-24 14:47:00 +00:00
|
|
|
DoneCurrent();
|
2018-01-17 22:19:41 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
// If the thread started running, move the GL Context to the new thread. Otherwise, move it
|
|
|
|
// back.
|
|
|
|
auto thread = (QThread::currentThread() == qApp->thread() && emu_thread != nullptr)
|
|
|
|
? emu_thread
|
|
|
|
: qApp->thread();
|
2019-01-12 04:06:34 +00:00
|
|
|
context->moveToThread(thread);
|
2014-08-24 14:47:00 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::SwapBuffers() {
|
2019-01-12 04:06:34 +00:00
|
|
|
// In our multi-threaded QWidget use case we shouldn't need to call `makeCurrent`,
|
2018-07-07 12:11:49 +00:00
|
|
|
// since we never call `doneCurrent` in this thread.
|
|
|
|
// However:
|
|
|
|
// - The Qt debug runtime prints a bogus warning on the console if `makeCurrent` wasn't called
|
|
|
|
// since the last time `swapBuffers` was executed;
|
|
|
|
// - On macOS, if `makeCurrent` isn't called explicitely, resizing the buffer breaks.
|
2019-01-12 04:06:34 +00:00
|
|
|
context->makeCurrent(child);
|
2018-07-07 12:11:49 +00:00
|
|
|
|
2019-01-12 04:06:34 +00:00
|
|
|
context->swapBuffers(child);
|
2019-01-17 07:01:00 +00:00
|
|
|
if (!first_frame) {
|
|
|
|
emit FirstFrameDisplayed();
|
|
|
|
first_frame = true;
|
|
|
|
}
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::MakeCurrent() {
|
2019-01-12 04:06:34 +00:00
|
|
|
context->makeCurrent(child);
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::DoneCurrent() {
|
2019-01-12 04:06:34 +00:00
|
|
|
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
|
2015-09-10 21:42:45 +00:00
|
|
|
qreal pixelRatio = windowPixelRatio();
|
|
|
|
unsigned width = child->QPaintDevice::width() * pixelRatio;
|
|
|
|
unsigned height = child->QPaintDevice::height() * pixelRatio;
|
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-01-12 04:06:34 +00:00
|
|
|
geometry = ((QWidget*)this)->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
|
2014-12-03 18:57:57 +00:00
|
|
|
if (parent() == nullptr)
|
2019-01-12 04:06:34 +00:00
|
|
|
return ((QWidget*)this)->saveGeometry();
|
2014-04-01 02:26:50 +00:00
|
|
|
else
|
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
|
2018-10-01 19:42:49 +00:00
|
|
|
qreal GRenderWindow::windowPixelRatio() const {
|
2015-09-10 21:42:45 +00:00
|
|
|
// windowHandle() might not be accessible until the window is displayed to screen.
|
|
|
|
return windowHandle() ? windowHandle()->screen()->devicePixelRatio() : 1.0f;
|
|
|
|
}
|
|
|
|
|
2018-10-01 19:42:49 +00:00
|
|
|
std::pair<unsigned, unsigned> GRenderWindow::ScaleTouch(const QPointF pos) const {
|
|
|
|
const qreal pixel_ratio = windowPixelRatio();
|
|
|
|
return {static_cast<unsigned>(std::max(std::round(pos.x() * pixel_ratio), qreal{0.0})),
|
|
|
|
static_cast<unsigned>(std::max(std::round(pos.y() * pixel_ratio), qreal{0.0}))};
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::OnClientAreaResized(unsigned width, unsigned height) {
|
2014-10-12 16:14:57 +00:00
|
|
|
NotifyClientAreaSizeChanged(std::make_pair(width, height));
|
|
|
|
}
|
2014-10-12 20:46:33 +00:00
|
|
|
|
2019-01-12 04:06:34 +00:00
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> GRenderWindow::CreateSharedContext() const {
|
|
|
|
return std::make_unique<GGLContext>(shared_context.get());
|
|
|
|
}
|
|
|
|
|
2016-08-30 01:28:58 +00:00
|
|
|
void GRenderWindow::InitRenderTarget() {
|
2019-03-25 19:41:48 +00:00
|
|
|
shared_context.reset();
|
|
|
|
context.reset();
|
2019-01-12 04:06:34 +00:00
|
|
|
|
2019-03-25 19:41:48 +00:00
|
|
|
delete child;
|
|
|
|
child = nullptr;
|
2019-01-12 04:06:34 +00:00
|
|
|
|
2019-03-25 19:41:48 +00:00
|
|
|
delete container;
|
|
|
|
container = nullptr;
|
2016-08-30 01:28:58 +00:00
|
|
|
|
2019-03-25 19:41:48 +00:00
|
|
|
delete layout();
|
2016-08-30 01:28:58 +00:00
|
|
|
|
2019-01-17 07:01:00 +00:00
|
|
|
first_frame = false;
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
// TODO: One of these flags might be interesting: WA_OpaquePaintEvent, WA_NoBackground,
|
|
|
|
// WA_DontShowOnScreen, WA_DeleteOnClose
|
2019-01-12 04:06:34 +00:00
|
|
|
QSurfaceFormat fmt;
|
2018-11-17 22:04:50 +00:00
|
|
|
fmt.setVersion(4, 3);
|
2019-01-12 04:06:34 +00:00
|
|
|
fmt.setProfile(QSurfaceFormat::CoreProfile);
|
|
|
|
// TODO: expose a setting for buffer value (ie default/single/double/triple)
|
|
|
|
fmt.setSwapBehavior(QSurfaceFormat::DefaultSwapBehavior);
|
|
|
|
shared_context = std::make_unique<QOpenGLContext>();
|
|
|
|
shared_context->setFormat(fmt);
|
|
|
|
shared_context->create();
|
|
|
|
context = std::make_unique<QOpenGLContext>();
|
|
|
|
context->setShareContext(shared_context.get());
|
|
|
|
context->setFormat(fmt);
|
|
|
|
context->create();
|
2018-09-06 16:57:51 +00:00
|
|
|
fmt.setSwapInterval(false);
|
2016-08-30 01:28:58 +00:00
|
|
|
|
2019-01-12 04:06:34 +00:00
|
|
|
child = new GGLWidgetInternal(this, shared_context.get());
|
2019-03-25 19:41:48 +00:00
|
|
|
container = QWidget::createWindowContainer(child, this);
|
2016-08-30 01:28:58 +00:00
|
|
|
QBoxLayout* layout = new QHBoxLayout(this);
|
|
|
|
|
2018-01-10 03:36:07 +00:00
|
|
|
resize(Layout::ScreenUndocked::Width, Layout::ScreenUndocked::Height);
|
2019-01-12 04:06:34 +00:00
|
|
|
child->resize(Layout::ScreenUndocked::Width, Layout::ScreenUndocked::Height);
|
|
|
|
container->resize(Layout::ScreenUndocked::Width, Layout::ScreenUndocked::Height);
|
|
|
|
layout->addWidget(container);
|
2016-08-30 01:28:58 +00:00
|
|
|
layout->setMargin(0);
|
|
|
|
setLayout(layout);
|
|
|
|
|
|
|
|
OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
|
|
|
|
|
|
|
|
OnFramebufferSizeChanged();
|
|
|
|
NotifyClientAreaSizeChanged(std::pair<unsigned, unsigned>(child->width(), child->height()));
|
|
|
|
|
|
|
|
BackupGeometry();
|
2019-01-12 04:06:34 +00:00
|
|
|
// show causes the window to actually be created and the gl context as well
|
|
|
|
show();
|
2019-01-21 23:21:44 +00:00
|
|
|
// but we don't want the widget to be shown yet, so immediately hide it
|
|
|
|
hide();
|
2016-08-30 01:28:58 +00:00
|
|
|
}
|
|
|
|
|
2018-08-31 06:16:16 +00:00
|
|
|
void GRenderWindow::CaptureScreenshot(u16 res_scale, const QString& screenshot_path) {
|
|
|
|
auto& renderer = Core::System::GetInstance().Renderer();
|
|
|
|
|
|
|
|
if (!res_scale)
|
|
|
|
res_scale = VideoCore::GetResolutionScaleFactor(renderer);
|
|
|
|
|
|
|
|
const Layout::FramebufferLayout layout{Layout::FrameLayoutFromResolutionScale(res_scale)};
|
|
|
|
screenshot_image = QImage(QSize(layout.width, layout.height), QImage::Format_RGB32);
|
|
|
|
renderer.RequestScreenshot(screenshot_image.bits(),
|
|
|
|
[=] {
|
|
|
|
screenshot_image.mirrored(false, true).save(screenshot_path);
|
|
|
|
LOG_INFO(Frontend, "The screenshot is saved.");
|
|
|
|
},
|
|
|
|
layout);
|
|
|
|
}
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
void GRenderWindow::OnMinimalClientAreaChangeRequest(
|
|
|
|
const std::pair<unsigned, unsigned>& 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-08-26 20:04:12 +00:00
|
|
|
child->DisablePainting();
|
2015-04-29 04:01:41 +00:00
|
|
|
}
|
|
|
|
|
2015-04-30 23:46:50 +00:00
|
|
|
void GRenderWindow::OnEmulationStopping() {
|
2015-04-29 04:01:41 +00:00
|
|
|
emu_thread = nullptr;
|
2015-08-26 20:04:12 +00:00
|
|
|
child->EnablePainting();
|
2015-04-29 04:01:41 +00:00
|
|
|
}
|
2015-09-04 13:55: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);
|
|
|
|
|
2016-09-19 01:01:46 +00:00
|
|
|
// windowHandle() is not initialized until the Window is shown, so we connect it here.
|
2018-01-19 01:03:13 +00:00
|
|
|
connect(windowHandle(), &QWindow::screenChanged, this, &GRenderWindow::OnFramebufferSizeChanged,
|
|
|
|
Qt::UniqueConnection);
|
2015-09-04 13:55:48 +00:00
|
|
|
}
|