citra/src/citra_qt/bootmanager.cpp

248 lines
6.4 KiB
C++
Raw Normal View History

2014-04-01 04:26:50 +02:00
#include <QHBoxLayout>
#include <QKeyEvent>
#include <QApplication>
2014-04-01 04:26:50 +02:00
2014-04-11 02:50:10 +02:00
#include "common/common.h"
2014-04-01 04:26:50 +02:00
#include "bootmanager.hxx"
2014-04-11 02:50:10 +02:00
#include "core/core.h"
#include "core/loader/loader.h"
#include "core/hw/hw.h"
#include "video_core/video_core.h"
2014-04-01 04:26:50 +02:00
#include "version.h"
#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"
EmuThread::EmuThread(GRenderWindow* render_window) :
filename(""), exec_cpu_step(false), cpu_running(false),
stop_run(false), render_window(render_window)
2014-04-01 04:26:50 +02:00
{
}
void EmuThread::SetFilename(std::string filename)
2014-04-01 04:26:50 +02:00
{
this->filename = filename;
2014-04-01 04:26:50 +02:00
}
void EmuThread::run()
{
stop_run = false;
while (!stop_run)
2014-04-04 03:24:07 +02:00
{
for (int tight_loop = 0; tight_loop < 10000; ++tight_loop)
2014-04-04 03:24:07 +02:00
{
if (cpu_running || exec_cpu_step)
{
if (exec_cpu_step)
exec_cpu_step = false;
2014-04-04 03:24:07 +02:00
Core::SingleStep();
if (!cpu_running) {
emit CPUStepped();
yieldCurrentThread();
}
}
2014-04-01 04:26:50 +02:00
}
}
render_window->moveContext();
2014-04-04 03:24:07 +02:00
2014-04-01 04:26:50 +02:00
Core::Stop();
}
void EmuThread::Stop()
{
2014-05-01 05:12:01 +02:00
if (!isRunning())
2014-04-01 04:26:50 +02:00
{
INFO_LOG(MASTER_LOG, "EmuThread::Stop called while emu thread wasn't running, returning...");
return;
}
stop_run = true;
2014-04-01 04:26:50 +02:00
//core::g_state = core::SYS_DIE;
wait(500);
2014-04-01 04:26:50 +02:00
if (isRunning())
{
WARN_LOG(MASTER_LOG, "EmuThread still running, terminating...");
quit();
2014-04-01 04:26:50 +02:00
wait(1000);
if (isRunning())
{
2014-05-01 05:12:01 +02:00
WARN_LOG(MASTER_LOG, "EmuThread STILL running, something is wrong here...");
terminate();
}
2014-04-01 04:26:50 +02:00
}
INFO_LOG(MASTER_LOG, "EmuThread stopped");
}
// 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:
GGLWidgetInternal(QGLFormat fmt, GRenderWindow* parent) : QGLWidget(fmt, parent)
2014-04-01 04:26:50 +02:00
{
parent_ = parent;
}
void paintEvent(QPaintEvent* ev)
{
}
void resizeEvent(QResizeEvent* ev) {
2014-04-11 02:50:10 +02:00
parent_->SetClientAreaWidth(size().width());
parent_->SetClientAreaHeight(size().height());
2014-04-01 04:26:50 +02:00
}
private:
GRenderWindow* parent_;
};
EmuThread& GRenderWindow::GetEmuThread()
{
return emu_thread;
}
static const std::pair<int, HID_User::PadState> default_key_map[] = {
{ Qt::Key_A, HID_User::PAD_A },
{ Qt::Key_B, HID_User::PAD_B },
{ Qt::Key_Backslash, HID_User::PAD_SELECT },
{ Qt::Key_Enter, HID_User::PAD_START },
{ Qt::Key_Right, HID_User::PAD_RIGHT },
{ Qt::Key_Left, HID_User::PAD_LEFT },
{ Qt::Key_Up, HID_User::PAD_UP },
{ Qt::Key_Down, HID_User::PAD_DOWN },
{ Qt::Key_R, HID_User::PAD_R },
{ Qt::Key_L, HID_User::PAD_L },
{ Qt::Key_X, HID_User::PAD_X },
{ Qt::Key_Y, HID_User::PAD_Y },
{ Qt::Key_H, HID_User::PAD_CIRCLE_RIGHT },
{ Qt::Key_F, HID_User::PAD_CIRCLE_LEFT },
{ Qt::Key_T, HID_User::PAD_CIRCLE_UP },
{ Qt::Key_G, HID_User::PAD_CIRCLE_DOWN },
};
2014-04-01 04:26:50 +02:00
GRenderWindow::GRenderWindow(QWidget* parent) : QWidget(parent), emu_thread(this)
{
// Register a new ID for the default keyboard
keyboard_id = KeyMap::NewDeviceId();
// Set default key mappings for keyboard
for (auto mapping : default_key_map) {
KeyMap::SetKeyMapping({mapping.first, keyboard_id}, mapping.second);
}
2014-04-01 04:26:50 +02:00
// TODO: One of these flags might be interesting: WA_OpaquePaintEvent, WA_NoBackground, WA_DontShowOnScreen, WA_DeleteOnClose
2014-05-01 05:12:01 +02:00
QGLFormat fmt;
fmt.setProfile(QGLFormat::CoreProfile);
fmt.setVersion(3,2);
2014-05-01 05:12:01 +02:00
fmt.setSampleBuffers(true);
fmt.setSamples(4);
child = new GGLWidgetInternal(fmt, this);
2014-04-01 04:26:50 +02:00
QBoxLayout* layout = new QHBoxLayout(this);
resize(VideoCore::kScreenTopWidth, VideoCore::kScreenTopHeight + VideoCore::kScreenBottomHeight);
2014-04-01 04:26:50 +02:00
layout->addWidget(child);
layout->setMargin(0);
setLayout(layout);
QObject::connect(&emu_thread, SIGNAL(started()), this, SLOT(moveContext()));
2014-04-01 04:26:50 +02:00
BackupGeometry();
}
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.
child->context()->moveToThread((QThread::currentThread() == qApp->thread()) ? &emu_thread : qApp->thread());
#endif
}
2014-04-01 04:26:50 +02:00
GRenderWindow::~GRenderWindow()
{
if (emu_thread.isRunning())
emu_thread.Stop();
2014-04-01 04:26:50 +02:00
}
void GRenderWindow::SwapBuffers()
{
// MakeCurrent is already called in renderer_opengl
2014-04-01 04:26:50 +02:00
child->swapBuffers();
}
void GRenderWindow::closeEvent(QCloseEvent* event)
{
if (emu_thread.isRunning())
emu_thread.Stop();
2014-04-01 04:26:50 +02:00
QWidget::closeEvent(event);
}
void GRenderWindow::MakeCurrent()
{
child->makeCurrent();
}
void GRenderWindow::DoneCurrent()
{
child->doneCurrent();
}
void GRenderWindow::PollEvents() {
// TODO(ShizZy): Does this belong here? This is a reasonable place to update the window title
// from the main thread, but this should probably be in an event handler...
2014-05-01 05:12:01 +02:00
/*
static char title[128];
2014-04-01 04:26:50 +02:00
sprintf(title, "%s (FPS: %02.02f)", window_title_.c_str(),
video_core::g_renderer->current_fps());
setWindowTitle(title);
2014-05-01 05:12:01 +02:00
*/
2014-04-01 04:26:50 +02: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
if (parent() == NULL)
return ((QGLWidget*)this)->saveGeometry();
else
return geometry;
}
void GRenderWindow::keyPressEvent(QKeyEvent* event)
{
EmuWindow::KeyPressed({event->key(), keyboard_id});
HID_User::PadUpdateComplete();
2014-04-01 04:26:50 +02:00
}
void GRenderWindow::keyReleaseEvent(QKeyEvent* event)
{
EmuWindow::KeyReleased({event->key(), keyboard_id});
HID_User::PadUpdateComplete();
}