src/platform/qt/GameController.cpp (view raw)
1#include "GameController.h"
2
3#include "AudioProcessor.h"
4
5#include <QThread>
6
7extern "C" {
8#include "gba.h"
9#include "gba-audio.h"
10#include "gba-serialize.h"
11#include "renderers/video-software.h"
12#include "util/vfs.h"
13}
14
15using namespace QGBA;
16
17GameController::GameController(QObject* parent)
18 : QObject(parent)
19 , m_drawContext(new uint32_t[256 * 256])
20 , m_threadContext()
21 , m_activeKeys(0)
22 , m_gameOpen(false)
23 , m_audioThread(new QThread(this))
24 , m_audioProcessor(new AudioProcessor)
25{
26 m_renderer = new GBAVideoSoftwareRenderer;
27 GBAVideoSoftwareRendererCreate(m_renderer);
28 m_renderer->outputBuffer = (color_t*) m_drawContext;
29 m_renderer->outputBufferStride = 256;
30 m_threadContext.state = THREAD_INITIALIZED;
31 m_threadContext.debugger = 0;
32 m_threadContext.frameskip = 0;
33 m_threadContext.bios = 0;
34 m_threadContext.renderer = &m_renderer->d;
35 m_threadContext.userData = this;
36 m_threadContext.rewindBufferCapacity = 0;
37 m_threadContext.logLevel = -1;
38
39 GBAInputMapInit(&m_threadContext.inputMap);
40
41#ifdef BUILD_SDL
42 SDL_Init(SDL_INIT_JOYSTICK | SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE);
43 m_sdlEvents.bindings = &m_threadContext.inputMap;
44 GBASDLInitEvents(&m_sdlEvents);
45 SDL_JoystickEventState(SDL_QUERY);
46#endif
47
48 m_threadContext.startCallback = [] (GBAThread* context) {
49 GameController* controller = static_cast<GameController*>(context->userData);
50 controller->m_audioProcessor->setInput(context);
51 controller->gameStarted(context);
52 };
53
54 m_threadContext.cleanCallback = [] (GBAThread* context) {
55 GameController* controller = static_cast<GameController*>(context->userData);
56 controller->gameStopped(context);
57 };
58
59 m_threadContext.frameCallback = [] (GBAThread* context) {
60 GameController* controller = static_cast<GameController*>(context->userData);
61 controller->m_pauseMutex.lock();
62 if (controller->m_pauseAfterFrame) {
63 GBAThreadPauseFromThread(context);
64 controller->m_pauseAfterFrame = false;
65 controller->gamePaused(&controller->m_threadContext);
66 }
67 controller->m_pauseMutex.unlock();
68 controller->frameAvailable(controller->m_drawContext);
69 };
70
71 m_threadContext.logHandler = [] (GBAThread* context, enum GBALogLevel level, const char* format, va_list args) {
72 GameController* controller = static_cast<GameController*>(context->userData);
73 controller->postLog(level, QString().vsprintf(format, args));
74 };
75
76 m_audioThread->start(QThread::TimeCriticalPriority);
77 m_audioProcessor->moveToThread(m_audioThread);
78 connect(this, SIGNAL(gameStarted(GBAThread*)), m_audioProcessor, SLOT(start()));
79 connect(this, SIGNAL(gameStopped(GBAThread*)), m_audioProcessor, SLOT(pause()));
80 connect(this, SIGNAL(gamePaused(GBAThread*)), m_audioProcessor, SLOT(pause()));
81 connect(this, SIGNAL(gameUnpaused(GBAThread*)), m_audioProcessor, SLOT(start()));
82
83#ifdef BUILD_SDL
84 connect(this, SIGNAL(frameAvailable(const uint32_t*)), this, SLOT(testSDLEvents()));
85#endif
86}
87
88GameController::~GameController() {
89 m_audioThread->quit();
90 m_audioThread->wait();
91 if (GBAThreadIsPaused(&m_threadContext)) {
92 GBAThreadUnpause(&m_threadContext);
93 }
94 disconnect();
95 closeGame();
96 delete m_renderer;
97}
98
99ARMDebugger* GameController::debugger() {
100 return m_threadContext.debugger;
101}
102
103void GameController::setDebugger(ARMDebugger* debugger) {
104 bool wasPaused = isPaused();
105 setPaused(true);
106 if (m_threadContext.debugger && GBAThreadHasStarted(&m_threadContext)) {
107 GBADetachDebugger(m_threadContext.gba);
108 }
109 m_threadContext.debugger = debugger;
110 if (m_threadContext.debugger && GBAThreadHasStarted(&m_threadContext)) {
111 GBAAttachDebugger(m_threadContext.gba, m_threadContext.debugger);
112 }
113 setPaused(wasPaused);
114}
115
116void GameController::loadGame(const QString& path) {
117 closeGame();
118 m_threadContext.sync.videoFrameWait = 0;
119 m_threadContext.sync.audioWait = 1;
120 QFile file(path);
121 if (!file.open(QIODevice::ReadOnly)) {
122 return;
123 }
124 file.close();
125 m_gameOpen = true;
126
127 m_pauseAfterFrame = false;
128
129 m_threadContext.fname = strdup(path.toLocal8Bit().constData());
130 m_threadContext.rom = VFileOpen(m_threadContext.fname, O_RDONLY);
131#if ENABLE_LIBZIP
132 m_threadContext.gameDir = VDirOpenZip(m_threadContext.fname, 0);
133#endif
134
135 GBAThreadStart(&m_threadContext);
136}
137
138void GameController::closeGame() {
139 if (!m_gameOpen) {
140 return;
141 }
142 GBAThreadEnd(&m_threadContext);
143 GBAThreadJoin(&m_threadContext);
144 if (m_threadContext.fname) {
145 free(const_cast<char*>(m_threadContext.fname));
146 m_threadContext.fname = nullptr;
147 }
148
149 m_gameOpen = false;
150 emit gameStopped(&m_threadContext);
151}
152
153bool GameController::isPaused() {
154 return GBAThreadIsPaused(&m_threadContext);
155}
156
157void GameController::setPaused(bool paused) {
158 if (paused == GBAThreadIsPaused(&m_threadContext)) {
159 return;
160 }
161 if (paused) {
162 GBAThreadPause(&m_threadContext);
163 emit gamePaused(&m_threadContext);
164 } else {
165 GBAThreadUnpause(&m_threadContext);
166 emit gameUnpaused(&m_threadContext);
167 }
168}
169
170void GameController::reset() {
171 GBAThreadReset(&m_threadContext);
172}
173
174void GameController::frameAdvance() {
175 m_pauseMutex.lock();
176 m_pauseAfterFrame = true;
177 setPaused(false);
178 m_pauseMutex.unlock();
179}
180
181void GameController::keyPressed(int key) {
182 int mappedKey = 1 << key;
183 m_activeKeys |= mappedKey;
184 updateKeys();
185}
186
187void GameController::keyReleased(int key) {
188 int mappedKey = 1 << key;
189 m_activeKeys &= ~mappedKey;
190 updateKeys();
191}
192
193void GameController::setAudioBufferSamples(int samples) {
194 GBAThreadInterrupt(&m_threadContext);
195 m_threadContext.audioBuffers = samples;
196 GBAAudioResizeBuffer(&m_threadContext.gba->audio, samples);
197 GBAThreadContinue(&m_threadContext);
198 QMetaObject::invokeMethod(m_audioProcessor, "setBufferSamples", Q_ARG(int, samples));
199}
200
201void GameController::setFPSTarget(float fps) {
202 GBAThreadInterrupt(&m_threadContext);
203 m_threadContext.fpsTarget = fps;
204 GBAThreadContinue(&m_threadContext);
205 QMetaObject::invokeMethod(m_audioProcessor, "inputParametersChanged");
206}
207
208void GameController::loadState(int slot) {
209 GBAThreadInterrupt(&m_threadContext);
210 GBALoadState(m_threadContext.gba, m_threadContext.stateDir, slot);
211 ConditionWake(&m_threadContext.sync.videoFrameAvailableCond); // Hack: wake up the drawing thread
212 GBAThreadContinue(&m_threadContext);
213 emit stateLoaded(&m_threadContext);
214 emit frameAvailable(m_drawContext);
215}
216
217void GameController::saveState(int slot) {
218 GBAThreadInterrupt(&m_threadContext);
219 GBASaveState(m_threadContext.gba, m_threadContext.stateDir, slot, true);
220 GBAThreadContinue(&m_threadContext);
221}
222
223void GameController::updateKeys() {
224 int activeKeys = m_activeKeys;
225#ifdef BUILD_SDL
226 activeKeys |= m_activeButtons;
227#endif
228 m_threadContext.activeKeys = activeKeys;
229}
230
231#ifdef BUILD_SDL
232void GameController::testSDLEvents() {
233 SDL_Joystick* joystick = m_sdlEvents.joystick;
234 SDL_JoystickUpdate();
235 int numButtons = SDL_JoystickNumButtons(joystick);
236 m_activeButtons = 0;
237 int i;
238 for (i = 0; i < numButtons; ++i) {
239 GBAKey key = GBAInputMapKey(&m_threadContext.inputMap, SDL_BINDING_BUTTON, i);
240 if (key == GBA_KEY_NONE) {
241 continue;
242 }
243 if (SDL_JoystickGetButton(joystick, i)) {
244 m_activeButtons |= 1 << key;
245 }
246 }
247 int numHats = SDL_JoystickNumHats(joystick);
248 for (i = 0; i < numHats; ++i) {
249 int hat = SDL_JoystickGetHat(joystick, i);
250 if (hat & SDL_HAT_UP) {
251 m_activeButtons |= 1 << GBA_KEY_UP;
252 }
253 if (hat & SDL_HAT_LEFT) {
254 m_activeButtons |= 1 << GBA_KEY_LEFT;
255 }
256 if (hat & SDL_HAT_DOWN) {
257 m_activeButtons |= 1 << GBA_KEY_DOWN;
258 }
259 if (hat & SDL_HAT_RIGHT) {
260 m_activeButtons |= 1 << GBA_KEY_RIGHT;
261 }
262 }
263 updateKeys();
264}
265#endif