mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
69b837f18b
New features : Breakpoint display, thread status, display list status Update translation and start french translation
39 lines
725 B
C++
39 lines
725 B
C++
#pragma once
|
|
#include <QThread>
|
|
#include <QMutex>
|
|
#include "input/input_state.h"
|
|
|
|
class QtEmuGL;
|
|
|
|
class EmuThread : public QThread
|
|
{
|
|
public:
|
|
EmuThread();
|
|
~EmuThread();
|
|
void init(InputState* inputState);
|
|
void run();
|
|
void FinalShutdown();
|
|
void setRunning(bool value);
|
|
void startGame(QString filename);
|
|
void stopGame();
|
|
void LockGL(bool value);
|
|
public slots:
|
|
void Shutdown();
|
|
private:
|
|
InputState* input_state;
|
|
bool running;
|
|
bool gameRunning;
|
|
bool needInitGame;
|
|
int frames_;
|
|
QMutex *gameMutex;
|
|
int mutexLockNum;
|
|
|
|
};
|
|
|
|
void EmuThread_Start(QtEmuGL* w);
|
|
void EmuThread_Stop();
|
|
void EmuThread_StartGame(QString filename);
|
|
void EmuThread_StopGame();
|
|
void EmuThread_LockDraw(bool value);
|
|
QString GetCurrentFilename();
|