2014-04-01 02:26:50 +00:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QKeyEvent>
|
2014-08-24 14:47:00 +00:00
|
|
|
#include <QApplication>
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-08-30 05:23:12 +00:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
// Required for screen DPI information
|
|
|
|
#include <QScreen>
|
|
|
|
#include <QWindow>
|
|
|
|
#endif
|
|
|
|
|
2014-04-11 00:50:10 +00:00
|
|
|
#include "common/common.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
#include "bootmanager.hxx"
|
|
|
|
|
2014-04-11 00:50:10 +00:00
|
|
|
#include "core/core.h"
|
2014-09-13 00:06:13 +00:00
|
|
|
#include "core/settings.h"
|
2014-05-17 15:59:18 +00:00
|
|
|
|
2014-10-25 16:02:26 +00:00
|
|
|
#include "video_core/debug_utils/debug_utils.h"
|
|
|
|
|
2014-04-12 23:01:33 +00:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
#include "citra_qt/version.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
#define APP_NAME "citra"
|
|
|
|
#define APP_VERSION "0.1-" VERSION
|
|
|
|
#define APP_TITLE APP_NAME " " APP_VERSION
|
|
|
|
#define COPYRIGHT "Copyright (C) 2013-2014 Citra Team"
|
|
|
|
|
2014-11-19 08:49:13 +00:00
|
|
|
EmuThread::EmuThread(GRenderWindow* render_window) :
|
2014-09-07 03:04:39 +00:00
|
|
|
filename(""), exec_cpu_step(false), cpu_running(false),
|
|
|
|
stop_run(false), render_window(render_window)
|
2014-04-01 02:26:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-08-15 06:59:31 +00:00
|
|
|
void EmuThread::SetFilename(std::string filename)
|
2014-04-01 02:26:50 +00:00
|
|
|
{
|
2014-08-15 06:59:31 +00:00
|
|
|
this->filename = filename;
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EmuThread::run()
|
|
|
|
{
|
2014-08-24 15:49:34 +00:00
|
|
|
stop_run = false;
|
2014-08-24 17:42:52 +00:00
|
|
|
while (!stop_run)
|
2014-04-04 01:24:07 +00:00
|
|
|
{
|
2014-11-09 21:56:29 +00:00
|
|
|
if (cpu_running)
|
2014-04-04 01:24:07 +00:00
|
|
|
{
|
2014-11-09 21:56:29 +00:00
|
|
|
Core::RunLoop();
|
2014-11-19 08:49:13 +00:00
|
|
|
}
|
2014-11-09 21:56:29 +00:00
|
|
|
else if (exec_cpu_step)
|
|
|
|
{
|
|
|
|
exec_cpu_step = false;
|
|
|
|
Core::SingleStep();
|
|
|
|
emit CPUStepped();
|
|
|
|
yieldCurrentThread();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
}
|
2014-08-24 15:49:34 +00:00
|
|
|
render_window->moveContext();
|
2014-04-04 01:24:07 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
Core::Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EmuThread::Stop()
|
|
|
|
{
|
2014-05-01 03:12:01 +00:00
|
|
|
if (!isRunning())
|
2014-04-01 02:26:50 +00:00
|
|
|
{
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_WARNING(Frontend, "EmuThread::Stop called while emu thread wasn't running, returning...");
|
2014-04-01 02:26:50 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-08-24 17:42:52 +00:00
|
|
|
stop_run = true;
|
2014-08-24 15:49:34 +00:00
|
|
|
|
2014-10-25 16:02:26 +00:00
|
|
|
// Release emu threads from any breakpoints, so that this doesn't hang forever.
|
|
|
|
Pica::g_debug_context->ClearBreakpoints();
|
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
//core::g_state = core::SYS_DIE;
|
|
|
|
|
2014-10-25 16:02:26 +00:00
|
|
|
// TODO: Waiting here is just a bad workaround for retarded shutdown logic.
|
|
|
|
wait(1000);
|
2014-04-01 02:26:50 +00:00
|
|
|
if (isRunning())
|
|
|
|
{
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_WARNING(Frontend, "EmuThread still running, terminating...");
|
2014-08-24 15:49:34 +00:00
|
|
|
quit();
|
2014-10-25 16:02:26 +00:00
|
|
|
|
|
|
|
// TODO: Waiting 50 seconds can be necessary if the logging subsystem has a lot of spam
|
|
|
|
// queued... This should be fixed.
|
|
|
|
wait(50000);
|
2014-04-01 02:26:50 +00:00
|
|
|
if (isRunning())
|
2014-08-24 15:49:34 +00:00
|
|
|
{
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_CRITICAL(Frontend, "EmuThread STILL running, something is wrong here...");
|
2014-08-24 15:49:34 +00:00
|
|
|
terminate();
|
|
|
|
}
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_INFO(Frontend, "EmuThread stopped");
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// This class overrides paintEvent and resizeEvent to prevent the GUI thread from stealing GL context.
|
|
|
|
// The corresponding functionality is handled in EmuThread instead
|
|
|
|
class GGLWidgetInternal : public QGLWidget
|
|
|
|
{
|
|
|
|
public:
|
2014-10-12 16:14:57 +00:00
|
|
|
GGLWidgetInternal(QGLFormat fmt, GRenderWindow* parent)
|
|
|
|
: QGLWidget(fmt, parent), parent(parent) {
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
void paintEvent(QPaintEvent* ev) override {
|
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
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
private:
|
2014-10-12 16:14:57 +00:00
|
|
|
GRenderWindow* parent;
|
2014-04-01 02:26:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
EmuThread& GRenderWindow::GetEmuThread()
|
|
|
|
{
|
|
|
|
return emu_thread;
|
|
|
|
}
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
GRenderWindow::GRenderWindow(QWidget* parent) : QWidget(parent), emu_thread(this), keyboard_id(0)
|
2014-04-01 02:26:50 +00:00
|
|
|
{
|
2014-11-13 17:17:39 +00:00
|
|
|
std::string window_title = Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc);
|
|
|
|
setWindowTitle(QString::fromStdString(window_title));
|
|
|
|
|
2014-09-09 04:46:02 +00:00
|
|
|
keyboard_id = KeyMap::NewDeviceId();
|
2014-09-13 00:06:13 +00:00
|
|
|
ReloadSetKeymaps();
|
2014-09-09 04:46:02 +00:00
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
// TODO: One of these flags might be interesting: WA_OpaquePaintEvent, WA_NoBackground, WA_DontShowOnScreen, WA_DeleteOnClose
|
2014-05-01 03:12:01 +00:00
|
|
|
QGLFormat fmt;
|
2014-05-19 22:21:55 +00:00
|
|
|
fmt.setVersion(3,2);
|
2014-08-30 21:17:47 +00:00
|
|
|
fmt.setProfile(QGLFormat::CoreProfile);
|
|
|
|
// Requests a forward-compatible context, which is required to get a 3.2+ context on OS X
|
|
|
|
fmt.setOption(QGL::NoDeprecatedFunctions);
|
2014-10-12 16:14:57 +00:00
|
|
|
|
2014-05-01 00:10:38 +00:00
|
|
|
child = new GGLWidgetInternal(fmt, this);
|
2014-04-01 02:26:50 +00:00
|
|
|
QBoxLayout* layout = new QHBoxLayout(this);
|
2014-04-12 23:01:33 +00:00
|
|
|
resize(VideoCore::kScreenTopWidth, VideoCore::kScreenTopHeight + VideoCore::kScreenBottomHeight);
|
2014-04-01 02:26:50 +00:00
|
|
|
layout->addWidget(child);
|
|
|
|
layout->setMargin(0);
|
|
|
|
setLayout(layout);
|
2014-10-12 16:14:57 +00:00
|
|
|
connect(&emu_thread, SIGNAL(started()), this, SLOT(moveContext()));
|
|
|
|
|
2014-11-13 19:32:33 +00:00
|
|
|
OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
|
2014-10-12 20:46:33 +00:00
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
OnFramebufferSizeChanged();
|
|
|
|
NotifyClientAreaSizeChanged(std::pair<unsigned,unsigned>(child->width(), child->height()));
|
2014-04-01 02:26:50 +00:00
|
|
|
|
|
|
|
BackupGeometry();
|
2014-10-12 16:14:57 +00:00
|
|
|
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
connect(this->windowHandle(), SIGNAL(screenChanged(QScreen*)), this, SLOT(OnFramebufferSizeChanged()));
|
|
|
|
#endif
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2014-08-24 14:47:00 +00:00
|
|
|
void GRenderWindow::moveContext()
|
|
|
|
{
|
|
|
|
DoneCurrent();
|
|
|
|
// We need to move GL context to the swapping thread in Qt5
|
|
|
|
#if QT_VERSION > QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
// If the thread started running, move the GL Context to the new thread. Otherwise, move it back.
|
2014-08-24 15:49:34 +00:00
|
|
|
child->context()->moveToThread((QThread::currentThread() == qApp->thread()) ? &emu_thread : qApp->thread());
|
2014-08-24 14:47:00 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
GRenderWindow::~GRenderWindow()
|
|
|
|
{
|
2014-08-24 15:49:34 +00:00
|
|
|
if (emu_thread.isRunning())
|
|
|
|
emu_thread.Stop();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::SwapBuffers()
|
|
|
|
{
|
2014-08-24 14:47:00 +00:00
|
|
|
// MakeCurrent is already called in renderer_opengl
|
2014-04-01 02:26:50 +00:00
|
|
|
child->swapBuffers();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::closeEvent(QCloseEvent* event)
|
|
|
|
{
|
2014-08-24 15:49:34 +00:00
|
|
|
if (emu_thread.isRunning())
|
|
|
|
emu_thread.Stop();
|
2014-04-01 02:26:50 +00:00
|
|
|
QWidget::closeEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::MakeCurrent()
|
|
|
|
{
|
|
|
|
child->makeCurrent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::DoneCurrent()
|
|
|
|
{
|
|
|
|
child->doneCurrent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::PollEvents() {
|
|
|
|
}
|
|
|
|
|
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.
|
2014-10-12 16:14:57 +00:00
|
|
|
void GRenderWindow::OnFramebufferSizeChanged()
|
2014-08-30 05:23:12 +00:00
|
|
|
{
|
2014-10-12 16:14:57 +00:00
|
|
|
// Screen changes potentially incur a change in screen DPI, hence we should update the framebuffer size
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
|
|
|
|
// windowHandle() might not be accessible until the window is displayed to screen.
|
|
|
|
auto pixel_ratio = windowHandle() ? (windowHandle()->screen()->devicePixelRatio()) : 1.0;
|
|
|
|
|
|
|
|
unsigned width = child->QPaintDevice::width() * pixel_ratio;
|
|
|
|
unsigned height = child->QPaintDevice::height() * pixel_ratio;
|
2014-08-30 05:23:12 +00:00
|
|
|
#else
|
2014-10-12 16:14:57 +00:00
|
|
|
unsigned width = child->QPaintDevice::width();
|
|
|
|
unsigned height = child->QPaintDevice::height();
|
2014-08-30 05:23:12 +00:00
|
|
|
#endif
|
2014-10-12 16:14:57 +00:00
|
|
|
|
|
|
|
NotifyFramebufferSizeChanged(std::make_pair(width, height));
|
2014-08-30 05:23:12 +00:00
|
|
|
}
|
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
void GRenderWindow::BackupGeometry()
|
|
|
|
{
|
|
|
|
geometry = ((QGLWidget*)this)->saveGeometry();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::RestoreGeometry()
|
|
|
|
{
|
|
|
|
// We don't want to back up the geometry here (obviously)
|
|
|
|
QWidget::restoreGeometry(geometry);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::restoreGeometry(const QByteArray& geometry)
|
|
|
|
{
|
|
|
|
// Make sure users of this class don't need to deal with backing up the geometry themselves
|
|
|
|
QWidget::restoreGeometry(geometry);
|
|
|
|
BackupGeometry();
|
|
|
|
}
|
|
|
|
|
|
|
|
QByteArray GRenderWindow::saveGeometry()
|
|
|
|
{
|
|
|
|
// 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)
|
2014-04-01 02:26:50 +00:00
|
|
|
return ((QGLWidget*)this)->saveGeometry();
|
|
|
|
else
|
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::keyPressEvent(QKeyEvent* event)
|
|
|
|
{
|
2014-09-09 04:46:02 +00:00
|
|
|
EmuWindow::KeyPressed({event->key(), keyboard_id});
|
|
|
|
HID_User::PadUpdateComplete();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::keyReleaseEvent(QKeyEvent* event)
|
|
|
|
{
|
2014-09-09 04:46:02 +00:00
|
|
|
EmuWindow::KeyReleased({event->key(), keyboard_id});
|
|
|
|
HID_User::PadUpdateComplete();
|
2014-08-24 14:47:00 +00:00
|
|
|
}
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
void GRenderWindow::ReloadSetKeymaps()
|
|
|
|
{
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_a_key, keyboard_id}, HID_User::PAD_A);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_b_key, keyboard_id}, HID_User::PAD_B);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_select_key, keyboard_id}, HID_User::PAD_SELECT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_start_key, keyboard_id}, HID_User::PAD_START);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_dright_key, keyboard_id}, HID_User::PAD_RIGHT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_dleft_key, keyboard_id}, HID_User::PAD_LEFT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_dup_key, keyboard_id}, HID_User::PAD_UP);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_ddown_key, keyboard_id}, HID_User::PAD_DOWN);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_r_key, keyboard_id}, HID_User::PAD_R);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_l_key, keyboard_id}, HID_User::PAD_L);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_x_key, keyboard_id}, HID_User::PAD_X);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_y_key, keyboard_id}, HID_User::PAD_Y);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_sright_key, keyboard_id}, HID_User::PAD_CIRCLE_RIGHT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_sleft_key, keyboard_id}, HID_User::PAD_CIRCLE_LEFT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_sup_key, keyboard_id}, HID_User::PAD_CIRCLE_UP);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_sdown_key, keyboard_id}, HID_User::PAD_CIRCLE_DOWN);
|
|
|
|
}
|
|
|
|
|
2014-10-12 16:14:57 +00:00
|
|
|
void GRenderWindow::OnClientAreaResized(unsigned width, unsigned height)
|
|
|
|
{
|
|
|
|
NotifyClientAreaSizeChanged(std::make_pair(width, height));
|
|
|
|
}
|
2014-10-12 20:46:33 +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
|
|
|
}
|