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
|
|
|
|
|
2015-01-03 23:51:14 +00:00
|
|
|
#include "bootmanager.h"
|
2015-04-16 22:35:09 +00:00
|
|
|
#include "main.h"
|
2014-04-01 02:26:50 +00:00
|
|
|
|
2015-06-21 13:58:59 +00:00
|
|
|
#include "common/string_util.h"
|
|
|
|
#include "common/scm_rev.h"
|
|
|
|
#include "common/key_map.h"
|
|
|
|
|
2014-04-11 00:50:10 +00:00
|
|
|
#include "core/core.h"
|
2014-09-13 00:06:13 +00:00
|
|
|
#include "core/settings.h"
|
2015-01-04 03:04:17 +00:00
|
|
|
#include "core/system.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) :
|
2015-04-28 23:03:01 +00:00
|
|
|
exec_step(false), running(false), stop_run(false), render_window(render_window) {
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2015-04-17 03:31:14 +00:00
|
|
|
void EmuThread::run() {
|
2015-05-19 04:24:43 +00:00
|
|
|
render_window->MakeCurrent();
|
|
|
|
|
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();
|
|
|
|
|
2014-11-09 21:56:29 +00:00
|
|
|
Core::RunLoop();
|
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;
|
2014-11-09 21:56:29 +00:00
|
|
|
Core::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);
|
|
|
|
running_cv.wait(lock, [this]{ return IsRunning() || stop_run; });
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
}
|
2015-04-17 03:31:14 +00:00
|
|
|
|
2014-08-24 15:49:34 +00:00
|
|
|
render_window->moveContext();
|
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
|
|
|
};
|
|
|
|
|
2015-04-29 04:01:41 +00:00
|
|
|
GRenderWindow::GRenderWindow(QWidget* parent, EmuThread* emu_thread) :
|
|
|
|
QWidget(parent), emu_thread(emu_thread), 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);
|
2015-03-07 22:21:19 +00:00
|
|
|
|
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
|
|
|
|
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.
|
2015-04-29 04:01:41 +00:00
|
|
|
auto thread = (QThread::currentThread() == qApp->thread() && emu_thread != nullptr) ? emu_thread : qApp->thread();
|
2015-04-16 22:35:09 +00:00
|
|
|
child->context()->moveToThread(thread);
|
2014-08-24 14:47:00 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-04-01 02:26:50 +00:00
|
|
|
void GRenderWindow::SwapBuffers()
|
|
|
|
{
|
2015-05-23 05:25:21 +00:00
|
|
|
#if !defined(QT_NO_DEBUG)
|
|
|
|
// Qt debug runtime prints a bogus warning on the console if you haven't called makeCurrent
|
|
|
|
// since the last time you called swapBuffers. This presumably means something if you're using
|
|
|
|
// QGLWidget the "regular" way, but in our multi-threaded use case is harmless since we never
|
|
|
|
// call doneCurrent in this thread.
|
|
|
|
child->makeCurrent();
|
|
|
|
#endif
|
2014-04-01 02:26:50 +00:00
|
|
|
child->swapBuffers();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-03-07 22:21:19 +00:00
|
|
|
NotifyFramebufferLayoutChanged(EmuWindow::FramebufferLayout::DefaultScreenLayout(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)
|
|
|
|
{
|
2015-03-09 04:14:59 +00:00
|
|
|
this->KeyPressed({event->key(), keyboard_id});
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::keyReleaseEvent(QKeyEvent* event)
|
|
|
|
{
|
2015-03-09 04:14:59 +00:00
|
|
|
this->KeyReleased({event->key(), keyboard_id});
|
2014-08-24 14:47:00 +00:00
|
|
|
}
|
|
|
|
|
2015-03-08 07:42:40 +00:00
|
|
|
void GRenderWindow::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
2015-03-09 04:14:59 +00:00
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
{
|
2015-03-08 07:42:40 +00:00
|
|
|
auto pos = event->pos();
|
2015-03-09 04:14:59 +00:00
|
|
|
this->TouchPressed(static_cast<unsigned>(pos.x()), static_cast<unsigned>(pos.y()));
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::mouseMoveEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
auto pos = event->pos();
|
2015-04-14 04:06:44 +00:00
|
|
|
this->TouchMoved(static_cast<unsigned>(std::max(pos.x(), 0)), static_cast<unsigned>(std::max(pos.y(), 0)));
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::mouseReleaseEvent(QMouseEvent *event)
|
|
|
|
{
|
2015-03-09 04:14:59 +00:00
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
this->TouchReleased();
|
2015-03-08 07:42:40 +00:00
|
|
|
}
|
|
|
|
|
2014-09-13 00:06:13 +00:00
|
|
|
void GRenderWindow::ReloadSetKeymaps()
|
|
|
|
{
|
2015-01-18 23:07:48 +00:00
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_a_key, keyboard_id}, Service::HID::PAD_A);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_b_key, keyboard_id}, Service::HID::PAD_B);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_select_key, keyboard_id}, Service::HID::PAD_SELECT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_start_key, keyboard_id}, Service::HID::PAD_START);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_dright_key, keyboard_id}, Service::HID::PAD_RIGHT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_dleft_key, keyboard_id}, Service::HID::PAD_LEFT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_dup_key, keyboard_id}, Service::HID::PAD_UP);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_ddown_key, keyboard_id}, Service::HID::PAD_DOWN);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_r_key, keyboard_id}, Service::HID::PAD_R);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_l_key, keyboard_id}, Service::HID::PAD_L);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_x_key, keyboard_id}, Service::HID::PAD_X);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_y_key, keyboard_id}, Service::HID::PAD_Y);
|
2015-02-21 23:50:16 +00:00
|
|
|
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_zl_key, keyboard_id}, Service::HID::PAD_ZL);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_zr_key, keyboard_id}, Service::HID::PAD_ZR);
|
|
|
|
|
|
|
|
// KeyMap::SetKeyMapping({Settings::values.pad_touch_key, keyboard_id}, Service::HID::PAD_TOUCH);
|
|
|
|
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_cright_key, keyboard_id}, Service::HID::PAD_C_RIGHT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_cleft_key, keyboard_id}, Service::HID::PAD_C_LEFT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_cup_key, keyboard_id}, Service::HID::PAD_C_UP);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_cdown_key, keyboard_id}, Service::HID::PAD_C_DOWN);
|
2015-01-18 23:07:48 +00:00
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_sright_key, keyboard_id}, Service::HID::PAD_CIRCLE_RIGHT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_sleft_key, keyboard_id}, Service::HID::PAD_CIRCLE_LEFT);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_sup_key, keyboard_id}, Service::HID::PAD_CIRCLE_UP);
|
|
|
|
KeyMap::SetKeyMapping({Settings::values.pad_sdown_key, keyboard_id}, Service::HID::PAD_CIRCLE_DOWN);
|
2014-09-13 00:06:13 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
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;
|
|
|
|
}
|