2014-04-01 02:26:50 +00:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QKeyEvent>
|
|
|
|
|
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-06-16 22:03:13 +00:00
|
|
|
#include "core/loader/loader.h"
|
2014-05-17 15:59:18 +00:00
|
|
|
#include "core/hw/hw.h"
|
|
|
|
|
2014-04-12 23:01:33 +00:00
|
|
|
#include "video_core/video_core.h"
|
2014-04-01 02:26:50 +00: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"
|
|
|
|
|
2014-08-15 06:59:31 +00:00
|
|
|
EmuThread::EmuThread(GRenderWindow* render_window) :
|
|
|
|
exec_cpu_step(false), cpu_running(false),
|
|
|
|
render_window(render_window), filename("")
|
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-04-04 01:24:07 +00:00
|
|
|
while (true)
|
|
|
|
{
|
2014-08-17 06:31:25 +00:00
|
|
|
if (cpu_running || exec_cpu_step)
|
2014-04-04 01:24:07 +00:00
|
|
|
{
|
2014-08-17 06:31:25 +00:00
|
|
|
if (exec_cpu_step)
|
|
|
|
exec_cpu_step = false;
|
2014-04-04 01:24:07 +00:00
|
|
|
|
2014-08-17 06:31:25 +00:00
|
|
|
Core::SingleStep();
|
|
|
|
if (!cpu_running)
|
|
|
|
emit CPUStepped();
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
{
|
|
|
|
INFO_LOG(MASTER_LOG, "EmuThread::Stop called while emu thread wasn't running, returning...");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//core::g_state = core::SYS_DIE;
|
|
|
|
|
|
|
|
wait(1000);
|
|
|
|
if (isRunning())
|
|
|
|
{
|
|
|
|
WARN_LOG(MASTER_LOG, "EmuThread still running, terminating...");
|
|
|
|
terminate();
|
|
|
|
wait(1000);
|
|
|
|
if (isRunning())
|
2014-05-01 03:12:01 +00:00
|
|
|
WARN_LOG(MASTER_LOG, "EmuThread STILL running, something is wrong here...");
|
2014-04-01 02:26:50 +00: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:
|
2014-05-01 00:10:38 +00:00
|
|
|
GGLWidgetInternal(QGLFormat fmt, GRenderWindow* parent) : QGLWidget(parent)
|
2014-04-01 02:26:50 +00:00
|
|
|
{
|
|
|
|
doneCurrent();
|
|
|
|
parent_ = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent* ev)
|
|
|
|
{
|
|
|
|
// Apparently, Windows doesn't display anything if we don't call this here.
|
|
|
|
// TODO: Breaks linux though because we aren't calling doneCurrent() ... -.-
|
|
|
|
// makeCurrent();
|
|
|
|
}
|
|
|
|
void resizeEvent(QResizeEvent* ev) {
|
2014-04-11 00:50:10 +00:00
|
|
|
parent_->SetClientAreaWidth(size().width());
|
|
|
|
parent_->SetClientAreaHeight(size().height());
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
private:
|
|
|
|
GRenderWindow* parent_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
EmuThread& GRenderWindow::GetEmuThread()
|
|
|
|
{
|
|
|
|
return emu_thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
GRenderWindow::GRenderWindow(QWidget* parent) : QWidget(parent), emu_thread(this)
|
|
|
|
{
|
|
|
|
// 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;
|
|
|
|
fmt.setProfile(QGLFormat::CoreProfile);
|
2014-05-19 22:21:55 +00:00
|
|
|
fmt.setVersion(3,2);
|
2014-05-01 03:12:01 +00:00
|
|
|
fmt.setSampleBuffers(true);
|
|
|
|
fmt.setSamples(4);
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
BackupGeometry();
|
|
|
|
}
|
|
|
|
|
|
|
|
GRenderWindow::~GRenderWindow()
|
|
|
|
{
|
|
|
|
emu_thread.Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::SwapBuffers()
|
|
|
|
{
|
|
|
|
child->makeCurrent(); // TODO: Not necessary?
|
|
|
|
child->swapBuffers();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::closeEvent(QCloseEvent* event)
|
|
|
|
{
|
|
|
|
emu_thread.Stop();
|
|
|
|
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 03:12:01 +00:00
|
|
|
/*
|
|
|
|
static char title[128];
|
2014-04-01 02:26:50 +00:00
|
|
|
sprintf(title, "%s (FPS: %02.02f)", window_title_.c_str(),
|
|
|
|
video_core::g_renderer->current_fps());
|
|
|
|
setWindowTitle(title);
|
2014-05-01 03:12:01 +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
|
|
|
|
if (parent() == NULL)
|
|
|
|
return ((QGLWidget*)this)->saveGeometry();
|
|
|
|
else
|
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::keyPressEvent(QKeyEvent* event)
|
|
|
|
{
|
2014-05-01 03:12:01 +00:00
|
|
|
/*
|
|
|
|
bool key_processed = false;
|
2014-04-01 02:26:50 +00:00
|
|
|
for (unsigned int channel = 0; channel < 4 && controller_interface(); ++channel)
|
|
|
|
if (controller_interface()->SetControllerStatus(channel, event->key(), input_common::GCController::PRESSED))
|
|
|
|
key_processed = true;
|
|
|
|
|
|
|
|
if (!key_processed)
|
|
|
|
QWidget::keyPressEvent(event);
|
2014-05-01 03:12:01 +00:00
|
|
|
*/
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GRenderWindow::keyReleaseEvent(QKeyEvent* event)
|
|
|
|
{
|
2014-05-01 03:12:01 +00:00
|
|
|
/*
|
|
|
|
bool key_processed = false;
|
2014-04-01 02:26:50 +00:00
|
|
|
for (unsigned int channel = 0; channel < 4 && controller_interface(); ++channel)
|
|
|
|
if (controller_interface()->SetControllerStatus(channel, event->key(), input_common::GCController::RELEASED))
|
|
|
|
key_processed = true;
|
|
|
|
|
|
|
|
if (!key_processed)
|
|
|
|
QWidget::keyPressEvent(event);
|
2014-05-01 03:12:01 +00:00
|
|
|
*/
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|