src/platform/qt/GameController.cpp (view raw)
1/* Copyright (c) 2013-2014 Jeffrey Pfau
2 *
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6#include "GameController.h"
7
8#include "AudioProcessor.h"
9#include "InputController.h"
10#include "LogController.h"
11#include "MultiplayerController.h"
12#include "VFileDevice.h"
13
14#include <QCoreApplication>
15#include <QDateTime>
16
17#include <ctime>
18
19#include <mgba/core/config.h>
20#include <mgba/core/directories.h>
21#include <mgba/core/serialize.h>
22#include <mgba/core/tile-cache.h>
23#ifdef M_CORE_GBA
24#include <mgba/gba/interface.h>
25#include <mgba/internal/gba/gba.h>
26#include <mgba/gba/core.h>
27#include <mgba/internal/gba/renderers/tile-cache.h>
28#include <mgba/internal/gba/sharkport.h>
29#endif
30#ifdef M_CORE_GB
31#include <mgba/internal/gb/gb.h>
32#include <mgba/internal/gb/renderers/tile-cache.h>
33#endif
34#include <mgba-util/vfs.h>
35
36using namespace QGBA;
37using namespace std;
38
39GameController::GameController(QObject* parent)
40 : QObject(parent)
41 , m_drawContext(nullptr)
42 , m_frontBuffer(nullptr)
43 , m_threadContext()
44 , m_activeKeys(0)
45 , m_inactiveKeys(0)
46 , m_logLevels(0)
47 , m_gameOpen(false)
48 , m_vf(nullptr)
49 , m_useBios(false)
50 , m_audioProcessor(AudioProcessor::create())
51 , m_pauseAfterFrame(false)
52 , m_sync(true)
53 , m_videoSync(VIDEO_SYNC)
54 , m_audioSync(AUDIO_SYNC)
55 , m_fpsTarget(-1)
56 , m_turbo(false)
57 , m_turboForced(false)
58 , m_turboSpeed(-1)
59 , m_wasPaused(false)
60 , m_audioChannels{ true, true, true, true, true, true }
61 , m_videoLayers{ true, true, true, true, true }
62 , m_autofire{}
63 , m_autofireStatus{}
64 , m_inputController(nullptr)
65 , m_multiplayer(nullptr)
66 , m_stream(nullptr)
67 , m_stateSlot(1)
68 , m_backupLoadState(nullptr)
69 , m_backupSaveState(nullptr)
70 , m_saveStateFlags(SAVESTATE_SCREENSHOT | SAVESTATE_SAVEDATA | SAVESTATE_CHEATS | SAVESTATE_RTC)
71 , m_loadStateFlags(SAVESTATE_SCREENSHOT | SAVESTATE_RTC)
72 , m_override(nullptr)
73{
74#ifdef M_CORE_GBA
75 m_lux.p = this;
76 m_lux.sample = [](GBALuminanceSource* context) {
77 GameControllerLux* lux = static_cast<GameControllerLux*>(context);
78 lux->value = 0xFF - lux->p->m_luxValue;
79 };
80
81 m_lux.readLuminance = [](GBALuminanceSource* context) {
82 GameControllerLux* lux = static_cast<GameControllerLux*>(context);
83 return lux->value;
84 };
85 setLuminanceLevel(0);
86#endif
87
88 m_threadContext.startCallback = [](mCoreThread* context) {
89 GameController* controller = static_cast<GameController*>(context->userData);
90 context->core->setRotation(context->core, controller->m_inputController->rotationSource());
91 context->core->setRumble(context->core, controller->m_inputController->rumble());
92
93#ifdef M_CORE_GBA
94 GBA* gba = static_cast<GBA*>(context->core->board);
95#endif
96#ifdef M_CORE_GB
97 GB* gb = static_cast<GB*>(context->core->board);
98#endif
99 switch (context->core->platform(context->core)) {
100#ifdef M_CORE_GBA
101 case PLATFORM_GBA:
102 gba->luminanceSource = &controller->m_lux;
103 gba->audio.psg.forceDisableCh[0] = !controller->m_audioChannels[0];
104 gba->audio.psg.forceDisableCh[1] = !controller->m_audioChannels[1];
105 gba->audio.psg.forceDisableCh[2] = !controller->m_audioChannels[2];
106 gba->audio.psg.forceDisableCh[3] = !controller->m_audioChannels[3];
107 gba->audio.forceDisableChA = !controller->m_audioChannels[4];
108 gba->audio.forceDisableChB = !controller->m_audioChannels[5];
109 gba->video.renderer->disableBG[0] = !controller->m_videoLayers[0];
110 gba->video.renderer->disableBG[1] = !controller->m_videoLayers[1];
111 gba->video.renderer->disableBG[2] = !controller->m_videoLayers[2];
112 gba->video.renderer->disableBG[3] = !controller->m_videoLayers[3];
113 gba->video.renderer->disableOBJ = !controller->m_videoLayers[4];
114 break;
115#endif
116#ifdef M_CORE_GB
117 case PLATFORM_GB:
118 gb->audio.forceDisableCh[0] = !controller->m_audioChannels[0];
119 gb->audio.forceDisableCh[1] = !controller->m_audioChannels[1];
120 gb->audio.forceDisableCh[2] = !controller->m_audioChannels[2];
121 gb->audio.forceDisableCh[3] = !controller->m_audioChannels[3];
122 break;
123#endif
124 default:
125 break;
126 }
127 controller->m_fpsTarget = context->sync.fpsTarget;
128
129 if (controller->m_override) {
130 controller->m_override->identify(context->core);
131 controller->m_override->apply(context->core);
132 }
133
134 if (mCoreLoadState(context->core, 0, controller->m_loadStateFlags)) {
135 mCoreDeleteState(context->core, 0);
136 }
137
138 controller->m_gameOpen = true;
139 if (controller->m_multiplayer) {
140 controller->m_multiplayer->attachGame(controller);
141 }
142
143 QString path = controller->m_fname;
144 if (!controller->m_fsub.isEmpty()) {
145 path += QDir::separator() + controller->m_fsub;
146 }
147 QMetaObject::invokeMethod(controller, "gameStarted", Q_ARG(mCoreThread*, context), Q_ARG(const QString&, path));
148 QMetaObject::invokeMethod(controller, "startAudio");
149 };
150
151 m_threadContext.resetCallback = [](mCoreThread* context) {
152 GameController* controller = static_cast<GameController*>(context->userData);
153 for (auto action : controller->m_resetActions) {
154 action();
155 }
156 controller->m_resetActions.clear();
157
158 unsigned width, height;
159 controller->m_threadContext.core->desiredVideoDimensions(controller->m_threadContext.core, &width, &height);
160 memset(controller->m_frontBuffer, 0xFF, width * height * BYTES_PER_PIXEL);
161 QMetaObject::invokeMethod(controller, "frameAvailable", Q_ARG(const uint32_t*, controller->m_frontBuffer));
162 if (controller->m_pauseAfterFrame.testAndSetAcquire(true, false)) {
163 mCoreThreadPauseFromThread(context);
164 QMetaObject::invokeMethod(controller, "gamePaused", Q_ARG(mCoreThread*, context));
165 }
166 };
167
168 m_threadContext.cleanCallback = [](mCoreThread* context) {
169 GameController* controller = static_cast<GameController*>(context->userData);
170
171 if (controller->m_multiplayer) {
172 controller->m_multiplayer->detachGame(controller);
173 }
174 controller->m_patch = QString();
175 controller->clearOverride();
176
177 controller->m_audioProcessor->pause();
178
179 QMetaObject::invokeMethod(controller, "gameStopped", Q_ARG(mCoreThread*, context));
180 QMetaObject::invokeMethod(controller, "cleanGame");
181 };
182
183 m_threadContext.frameCallback = [](mCoreThread* context) {
184 GameController* controller = static_cast<GameController*>(context->userData);
185 unsigned width, height;
186 controller->m_threadContext.core->desiredVideoDimensions(controller->m_threadContext.core, &width, &height);
187 memcpy(controller->m_frontBuffer, controller->m_drawContext, width * height * BYTES_PER_PIXEL);
188 QMetaObject::invokeMethod(controller, "frameAvailable", Q_ARG(const uint32_t*, controller->m_frontBuffer));
189
190 // If no one is using the tile cache, disable it
191 if (controller->m_tileCache && controller->m_tileCache.unique()) {
192 switch (controller->platform()) {
193#ifdef M_CORE_GBA
194 case PLATFORM_GBA: {
195 GBA* gba = static_cast<GBA*>(context->core->board);
196 gba->video.renderer->cache = nullptr;
197 break;
198 }
199#endif
200#ifdef M_CORE_GB
201 case PLATFORM_GB: {
202 GB* gb = static_cast<GB*>(context->core->board);
203 gb->video.renderer->cache = nullptr;
204 break;
205 }
206#endif
207 default:
208 break;
209 }
210 controller->m_tileCache.reset();
211 }
212
213
214 if (controller->m_pauseAfterFrame.testAndSetAcquire(true, false)) {
215 mCoreThreadPauseFromThread(context);
216 QMetaObject::invokeMethod(controller, "gamePaused", Q_ARG(mCoreThread*, context));
217 }
218 };
219
220 // TODO: Put back
221 /*m_threadContext.stopCallback = [](mCoreThread* context) {
222 if (!context) {
223 return false;
224 }
225 GameController* controller = static_cast<GameController*>(context->userData);
226 if (!mCoreSaveState(context->core, 0, controller->m_saveStateFlags)) {
227 return false;
228 }
229 QMetaObject::invokeMethod(controller, "closeGame");
230 return true;
231 };*/
232
233 m_threadContext.logger.d.log = [](mLogger* logger, int category, enum mLogLevel level, const char* format, va_list args) {
234 mThreadLogger* logContext = reinterpret_cast<mThreadLogger*>(logger);
235 mCoreThread* context = logContext->p;
236
237 static const char* savestateMessage = "State %i loaded";
238 static const char* savestateFailedMessage = "State %i failed to load";
239 static int biosCat = -1;
240 static int statusCat = -1;
241 if (!context) {
242 return;
243 }
244 GameController* controller = static_cast<GameController*>(context->userData);
245 QString message;
246 if (biosCat < 0) {
247 biosCat = mLogCategoryById("gba.bios");
248 }
249 if (statusCat < 0) {
250 statusCat = mLogCategoryById("core.status");
251 }
252#ifdef M_CORE_GBA
253 if (level == mLOG_STUB && category == biosCat) {
254 va_list argc;
255 va_copy(argc, args);
256 int immediate = va_arg(argc, int);
257 va_end(argc);
258 QMetaObject::invokeMethod(controller, "unimplementedBiosCall", Q_ARG(int, immediate));
259 } else
260#endif
261 if (category == statusCat) {
262 // Slot 0 is reserved for suspend points
263 if (strncmp(savestateMessage, format, strlen(savestateMessage)) == 0) {
264 va_list argc;
265 va_copy(argc, args);
266 int slot = va_arg(argc, int);
267 va_end(argc);
268 if (slot == 0) {
269 format = "Loaded suspend state";
270 }
271 } else if (strncmp(savestateFailedMessage, format, strlen(savestateFailedMessage)) == 0) {
272 va_list argc;
273 va_copy(argc, args);
274 int slot = va_arg(argc, int);
275 va_end(argc);
276 if (slot == 0) {
277 return;
278 }
279 }
280 message = QString().vsprintf(format, args);
281 QMetaObject::invokeMethod(controller, "statusPosted", Q_ARG(const QString&, message));
282 }
283 if (level == mLOG_FATAL) {
284 mCoreThreadMarkCrashed(controller->thread());
285 QMetaObject::invokeMethod(controller, "crashGame", Q_ARG(const QString&, QString().vsprintf(format, args)));
286 } else if (!(controller->m_logLevels & level)) {
287 return;
288 }
289 message = QString().vsprintf(format, args);
290 QMetaObject::invokeMethod(controller, "postLog", Q_ARG(int, level), Q_ARG(int, category), Q_ARG(const QString&, message));
291 };
292
293 m_threadContext.userData = this;
294
295 connect(this, SIGNAL(gamePaused(mCoreThread*)), m_audioProcessor, SLOT(pause()));
296 connect(this, SIGNAL(gameStarted(mCoreThread*, const QString&)), m_audioProcessor, SLOT(setInput(mCoreThread*)));
297 connect(this, SIGNAL(frameAvailable(const uint32_t*)), this, SLOT(pollEvents()));
298 connect(this, SIGNAL(frameAvailable(const uint32_t*)), this, SLOT(updateAutofire()));
299}
300
301GameController::~GameController() {
302 disconnect();
303 closeGame();
304 clearMultiplayerController();
305 delete m_backupLoadState;
306}
307
308void GameController::setMultiplayerController(MultiplayerController* controller) {
309 if (controller == m_multiplayer) {
310 return;
311 }
312 clearMultiplayerController();
313 m_multiplayer = controller;
314 if (isLoaded()) {
315 mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* thread) {
316 GameController* controller = static_cast<GameController*>(thread->userData);
317 controller->m_multiplayer->attachGame(controller);
318 });
319 }
320}
321
322void GameController::clearMultiplayerController() {
323 if (!m_multiplayer) {
324 return;
325 }
326 m_multiplayer->detachGame(this);
327 m_multiplayer = nullptr;
328}
329
330void GameController::setOverride(Override* override) {
331 m_override = override;
332 if (isLoaded()) {
333 Interrupter interrupter(this);
334 m_override->identify(m_threadContext.core);
335 }
336}
337
338void GameController::clearOverride() {
339 delete m_override;
340 m_override = nullptr;
341}
342
343void GameController::setConfig(const mCoreConfig* config) {
344 m_config = config;
345 if (isLoaded()) {
346 Interrupter interrupter(this);
347 mCoreLoadForeignConfig(m_threadContext.core, config);
348 m_audioSync = m_threadContext.sync.audioWait;
349 m_videoSync = m_threadContext.sync.videoFrameWait;
350 m_audioProcessor->setInput(&m_threadContext);
351 }
352}
353
354#ifdef USE_GDB_STUB
355mDebugger* GameController::debugger() {
356 if (!isLoaded()) {
357 return nullptr;
358 }
359 return m_threadContext.core->debugger;
360}
361
362void GameController::setDebugger(mDebugger* debugger) {
363 Interrupter interrupter(this);
364 if (debugger) {
365 mDebuggerAttach(debugger, m_threadContext.core);
366 } else {
367 m_threadContext.core->detachDebugger(m_threadContext.core);
368 }
369}
370#endif
371
372void GameController::loadGame(const QString& path) {
373 closeGame();
374 QFileInfo info(path);
375 if (!info.isReadable()) {
376 QString fname = info.fileName();
377 QString base = info.path();
378 if (base.endsWith("/") || base.endsWith(QDir::separator())) {
379 base.chop(1);
380 }
381 VDir* dir = VDirOpenArchive(base.toUtf8().constData());
382 if (dir) {
383 VFile* vf = dir->openFile(dir, fname.toUtf8().constData(), O_RDONLY);
384 if (vf) {
385 struct VFile* vfclone = VFileMemChunk(NULL, vf->size(vf));
386 uint8_t buffer[2048];
387 ssize_t read;
388 while ((read = vf->read(vf, buffer, sizeof(buffer))) > 0) {
389 vfclone->write(vfclone, buffer, read);
390 }
391 vf->close(vf);
392 vf = vfclone;
393 }
394 dir->close(dir);
395 loadGame(vf, fname, base);
396 } else {
397 LOG(QT, ERROR) << tr("Failed to open game file: %1").arg(path);
398 }
399 return;
400 } else {
401 m_fname = info.canonicalFilePath();
402 m_fsub = QString();
403 }
404 m_vf = nullptr;
405 openGame();
406}
407
408void GameController::loadGame(VFile* vf, const QString& path, const QString& base) {
409 closeGame();
410 QFileInfo info(base);
411 if (info.isDir()) {
412 m_fname = QFileInfo(base + '/' + path).canonicalFilePath();
413 m_fsub = QString();
414 } else {
415 m_fname = info.canonicalFilePath();
416 m_fsub = path;
417 }
418 m_vf = vf;
419 openGame();
420}
421
422void GameController::bootBIOS() {
423 closeGame();
424 m_fname = QString();
425 openGame(true);
426}
427
428void GameController::openGame(bool biosOnly) {
429 if (m_fname.isEmpty()) {
430 biosOnly = true;
431 }
432 if (isLoaded()) {
433 // We need to delay if the game is still cleaning up
434 QTimer::singleShot(10, this, SLOT(openGame()));
435 return;
436 } else if(m_gameOpen) {
437 cleanGame();
438 }
439
440 m_threadContext.core = nullptr;
441 if (!biosOnly) {
442 if (m_vf) {
443 m_threadContext.core = mCoreFindVF(m_vf);
444 } else {
445 m_threadContext.core = mCoreFind(m_fname.toUtf8().constData());
446 }
447#ifdef M_CORE_GBA
448 } else {
449 m_threadContext.core = GBACoreCreate();
450#endif
451 }
452
453 if (!m_threadContext.core) {
454 return;
455 }
456
457 m_pauseAfterFrame = false;
458
459 if (m_turbo) {
460 m_threadContext.sync.videoFrameWait = false;
461 m_threadContext.sync.audioWait = false;
462 } else {
463 m_threadContext.sync.videoFrameWait = m_videoSync;
464 m_threadContext.sync.audioWait = m_audioSync;
465 }
466 m_threadContext.core->init(m_threadContext.core);
467 mCoreInitConfig(m_threadContext.core, nullptr);
468
469 unsigned width, height;
470 m_threadContext.core->desiredVideoDimensions(m_threadContext.core, &width, &height);
471 m_drawContext = new uint32_t[width * height];
472 m_frontBuffer = new uint32_t[width * height];
473
474 if (m_config) {
475 mCoreLoadForeignConfig(m_threadContext.core, m_config);
476 }
477
478 QByteArray bytes;
479 if (!biosOnly) {
480 bytes = m_fname.toUtf8();
481 if (m_vf) {
482 m_threadContext.core->loadROM(m_threadContext.core, m_vf);
483 } else {
484 mCoreLoadFile(m_threadContext.core, bytes.constData());
485 mDirectorySetDetachBase(&m_threadContext.core->dirs);
486 }
487 } else {
488 bytes = m_bios.toUtf8();
489 }
490 if (bytes.isNull()) {
491 return;
492 }
493
494 char dirname[PATH_MAX];
495 separatePath(bytes.constData(), dirname, m_threadContext.core->dirs.baseName, 0);
496 mDirectorySetAttachBase(&m_threadContext.core->dirs, VDirOpen(dirname));
497
498 m_threadContext.core->setVideoBuffer(m_threadContext.core, m_drawContext, width);
499
500 m_inputController->recalibrateAxes();
501 memset(m_drawContext, 0xF8, width * height * 4);
502
503 m_threadContext.core->setAVStream(m_threadContext.core, m_stream);
504
505 if (!biosOnly) {
506 mCoreAutoloadSave(m_threadContext.core);
507 if (!m_patch.isNull()) {
508 VFile* patch = VFileDevice::open(m_patch, O_RDONLY);
509 if (patch) {
510 m_threadContext.core->loadPatch(m_threadContext.core, patch);
511 }
512 patch->close(patch);
513 } else {
514 mCoreAutoloadPatch(m_threadContext.core);
515 }
516 }
517 m_vf = nullptr;
518
519 if (!mCoreThreadStart(&m_threadContext)) {
520 emit gameFailed();
521 }
522}
523
524void GameController::loadBIOS(int platform, const QString& path) {
525 if (m_bios == path) {
526 return;
527 }
528 if (!m_bios.isNull() && m_gameOpen && this->platform() == platform) {
529 closeGame();
530 m_bios = path;
531 openGame();
532 } else if (!m_gameOpen || m_bios.isNull()) {
533 m_bios = path;
534 }
535}
536
537void GameController::loadSave(const QString& path, bool temporary) {
538 if (!isLoaded()) {
539 return;
540 }
541 m_resetActions.append([this, path, temporary]() {
542 VFile* vf = VFileDevice::open(path, temporary ? O_RDONLY : O_RDWR);
543 if (!vf) {
544 LOG(QT, ERROR) << tr("Failed to open save file: %1").arg(path);
545 return;
546 }
547
548 if (temporary) {
549 m_threadContext.core->loadTemporarySave(m_threadContext.core, vf);
550 } else {
551 m_threadContext.core->loadSave(m_threadContext.core, vf);
552 }
553 });
554 reset();
555}
556
557void GameController::yankPak() {
558 if (!m_gameOpen) {
559 return;
560 }
561 Interrupter interrupter(this);
562 GBAYankROM(static_cast<GBA*>(m_threadContext.core->board));
563}
564
565void GameController::replaceGame(const QString& path) {
566 if (!m_gameOpen) {
567 return;
568 }
569
570 QFileInfo info(path);
571 if (!info.isReadable()) {
572 LOG(QT, ERROR) << tr("Failed to open game file: %1").arg(path);
573 return;
574 }
575 m_fname = info.canonicalFilePath();
576 Interrupter interrupter(this);
577 mDirectorySetDetachBase(&m_threadContext.core->dirs);
578 mCoreLoadFile(m_threadContext.core, m_fname.toLocal8Bit().constData());
579}
580
581void GameController::loadPatch(const QString& path) {
582 if (m_gameOpen) {
583 closeGame();
584 m_patch = path;
585 openGame();
586 } else {
587 m_patch = path;
588 }
589}
590
591void GameController::importSharkport(const QString& path) {
592 if (!isLoaded()) {
593 return;
594 }
595#ifdef M_CORE_GBA
596 if (platform() != PLATFORM_GBA) {
597 return;
598 }
599 VFile* vf = VFileDevice::open(path, O_RDONLY);
600 if (!vf) {
601 LOG(QT, ERROR) << tr("Failed to open snapshot file for reading: %1").arg(path);
602 return;
603 }
604 threadInterrupt();
605 GBASavedataImportSharkPort(static_cast<GBA*>(m_threadContext.core->board), vf, false);
606 threadContinue();
607 vf->close(vf);
608#endif
609}
610
611void GameController::exportSharkport(const QString& path) {
612 if (!isLoaded()) {
613 return;
614 }
615#ifdef M_CORE_GBA
616 if (platform() != PLATFORM_GBA) {
617 return;
618 }
619 VFile* vf = VFileDevice::open(path, O_WRONLY | O_CREAT | O_TRUNC);
620 if (!vf) {
621 LOG(QT, ERROR) << tr("Failed to open snapshot file for writing: %1").arg(path);
622 return;
623 }
624 threadInterrupt();
625 GBASavedataExportSharkPort(static_cast<GBA*>(m_threadContext.core->board), vf);
626 threadContinue();
627 vf->close(vf);
628#endif
629}
630
631void GameController::closeGame() {
632 if (!m_gameOpen) {
633 return;
634 }
635
636 if (mCoreThreadIsPaused(&m_threadContext)) {
637 mCoreThreadUnpause(&m_threadContext);
638 }
639 mCoreThreadEnd(&m_threadContext);
640}
641
642void GameController::cleanGame() {
643 if (!m_gameOpen || mCoreThreadIsActive(&m_threadContext)) {
644 return;
645 }
646 mCoreThreadJoin(&m_threadContext);
647
648 if (m_tileCache) {
649 mTileCacheDeinit(m_tileCache.get());
650 m_tileCache.reset();
651 }
652
653 delete[] m_drawContext;
654 delete[] m_frontBuffer;
655
656 m_threadContext.core->deinit(m_threadContext.core);
657 m_gameOpen = false;
658}
659
660void GameController::crashGame(const QString& crashMessage) {
661 closeGame();
662 emit gameCrashed(crashMessage);
663}
664
665bool GameController::isPaused() {
666 if (!m_gameOpen) {
667 return false;
668 }
669 return mCoreThreadIsPaused(&m_threadContext);
670}
671
672mPlatform GameController::platform() const {
673 if (!m_gameOpen) {
674 return PLATFORM_NONE;
675 }
676 return m_threadContext.core->platform(m_threadContext.core);
677}
678
679QSize GameController::screenDimensions() const {
680 if (!m_gameOpen) {
681 return QSize();
682 }
683 unsigned width, height;
684 m_threadContext.core->desiredVideoDimensions(m_threadContext.core, &width, &height);
685
686 return QSize(width, height);
687}
688
689void GameController::setPaused(bool paused) {
690 if (!isLoaded() || paused == mCoreThreadIsPaused(&m_threadContext)) {
691 return;
692 }
693 m_wasPaused = paused;
694 if (paused) {
695 m_pauseAfterFrame.testAndSetRelaxed(false, true);
696 } else {
697 mCoreThreadUnpause(&m_threadContext);
698 startAudio();
699 emit gameUnpaused(&m_threadContext);
700 }
701}
702
703void GameController::reset() {
704 if (!m_gameOpen) {
705 return;
706 }
707 bool wasPaused = isPaused();
708 setPaused(false);
709 Interrupter interrupter(this);
710 mCoreThreadReset(&m_threadContext);
711 if (wasPaused) {
712 setPaused(true);
713 }
714}
715
716void GameController::threadInterrupt() {
717 if (m_gameOpen) {
718 mCoreThreadInterrupt(&m_threadContext);
719 }
720}
721
722void GameController::threadContinue() {
723 if (m_gameOpen) {
724 mCoreThreadContinue(&m_threadContext);
725 }
726}
727
728void GameController::frameAdvance() {
729 if (m_pauseAfterFrame.testAndSetRelaxed(false, true)) {
730 setPaused(false);
731 }
732}
733
734void GameController::setRewind(bool enable, int capacity, bool rewindSave) {
735 if (m_gameOpen) {
736 Interrupter interrupter(this);
737 if (m_threadContext.core->opts.rewindEnable && m_threadContext.core->opts.rewindBufferCapacity > 0) {
738 mCoreRewindContextDeinit(&m_threadContext.rewind);
739 }
740 m_threadContext.core->opts.rewindEnable = enable;
741 m_threadContext.core->opts.rewindBufferCapacity = capacity;
742 m_threadContext.core->opts.rewindSave = rewindSave;
743 if (enable && capacity > 0) {
744 mCoreRewindContextInit(&m_threadContext.rewind, capacity);
745 m_threadContext.rewind.stateFlags = rewindSave ? SAVESTATE_SAVEDATA : 0;
746 }
747 }
748}
749
750void GameController::rewind(int states) {
751 threadInterrupt();
752 if (!states) {
753 states = INT_MAX;
754 }
755 for (int i = 0; i < states; ++i) {
756 if (!mCoreRewindRestore(&m_threadContext.rewind, m_threadContext.core)) {
757 break;
758 }
759 }
760 threadContinue();
761 emit frameAvailable(m_drawContext);
762 emit rewound(&m_threadContext);
763}
764
765void GameController::startRewinding() {
766 if (!isLoaded()) {
767 return;
768 }
769 if (!m_threadContext.core->opts.rewindEnable) {
770 return;
771 }
772 if (m_multiplayer && m_multiplayer->attached() > 1) {
773 return;
774 }
775 if (m_wasPaused) {
776 setPaused(false);
777 m_wasPaused = true;
778 }
779 mCoreThreadSetRewinding(&m_threadContext, true);
780}
781
782void GameController::stopRewinding() {
783 if (!isLoaded()) {
784 return;
785 }
786 mCoreThreadSetRewinding(&m_threadContext, false);
787 bool signalsBlocked = blockSignals(true);
788 setPaused(m_wasPaused);
789 blockSignals(signalsBlocked);
790}
791
792void GameController::keyPressed(int key) {
793 int mappedKey = 1 << key;
794 m_activeKeys |= mappedKey;
795 if (!m_inputController->allowOpposing()) {
796 if ((m_activeKeys & 0x30) == 0x30) {
797 m_inactiveKeys |= mappedKey ^ 0x30;
798 m_activeKeys ^= mappedKey ^ 0x30;
799 }
800 if ((m_activeKeys & 0xC0) == 0xC0) {
801 m_inactiveKeys |= mappedKey ^ 0xC0;
802 m_activeKeys ^= mappedKey ^ 0xC0;
803 }
804 }
805 updateKeys();
806}
807
808void GameController::keyReleased(int key) {
809 int mappedKey = 1 << key;
810 m_activeKeys &= ~mappedKey;
811 if (!m_inputController->allowOpposing()) {
812 if (mappedKey & 0x30) {
813 m_activeKeys |= m_inactiveKeys & (0x30 ^ mappedKey);
814 m_inactiveKeys &= ~0x30;
815 }
816 if (mappedKey & 0xC0) {
817 m_activeKeys |= m_inactiveKeys & (0xC0 ^ mappedKey);
818 m_inactiveKeys &= ~0xC0;
819 }
820 }
821 updateKeys();
822}
823
824void GameController::cursorLocation(int x, int y) {
825 if (!isLoaded()) {
826 return;
827 }
828 m_threadContext.core->setCursorLocation(m_threadContext.core, x, y);
829}
830
831void GameController::cursorDown(bool down) {
832 if (!isLoaded()) {
833 return;
834 }
835 m_threadContext.core->setCursorDown(m_threadContext.core, down);
836}
837
838void GameController::clearKeys() {
839 m_activeKeys = 0;
840 m_inactiveKeys = 0;
841 updateKeys();
842}
843
844void GameController::setAutofire(int key, bool enable) {
845 if (key >= GBA_KEY_MAX || key < 0) {
846 return;
847 }
848
849 if (!enable && m_autofireStatus[key]) {
850 keyReleased(key);
851 }
852
853 m_autofire[key] = enable;
854 m_autofireStatus[key] = 0;
855}
856
857void GameController::setAudioBufferSamples(int samples) {
858 if (m_audioProcessor) {
859 threadInterrupt();
860 redoSamples(samples);
861 threadContinue();
862 m_audioProcessor->setBufferSamples(samples);
863 }
864}
865
866void GameController::setAudioSampleRate(unsigned rate) {
867 if (!rate) {
868 return;
869 }
870 if (m_audioProcessor) {
871 threadInterrupt();
872 redoSamples(m_audioProcessor->getBufferSamples());
873 threadContinue();
874 m_audioProcessor->requestSampleRate(rate);
875 }
876}
877
878void GameController::setAudioChannelEnabled(int channel, bool enable) {
879 if (channel > 5 || channel < 0) {
880 return;
881 }
882#ifdef M_CORE_GBA
883 GBA* gba = static_cast<GBA*>(m_threadContext.core->board);
884#endif
885#ifdef M_CORE_GB
886 GB* gb = static_cast<GB*>(m_threadContext.core->board);
887#endif
888 m_audioChannels[channel] = enable;
889 if (isLoaded()) {
890 switch (channel) {
891 case 0:
892 case 1:
893 case 2:
894 case 3:
895 switch (m_threadContext.core->platform(m_threadContext.core)) {
896#ifdef M_CORE_GBA
897 case PLATFORM_GBA:
898 gba->audio.psg.forceDisableCh[channel] = !enable;
899 break;
900#endif
901#ifdef M_CORE_GB
902 case PLATFORM_GB:
903 gb->audio.forceDisableCh[channel] = !enable;
904 break;
905#endif
906 default:
907 break;
908 }
909 break;
910#ifdef M_CORE_GBA
911 case 4:
912 if (m_threadContext.core->platform(m_threadContext.core) == PLATFORM_GBA) {
913 gba->audio.forceDisableChA = !enable;
914 }
915 break;
916 case 5:
917 if (m_threadContext.core->platform(m_threadContext.core) == PLATFORM_GBA) {
918 gba->audio.forceDisableChB = !enable;
919 }
920 break;
921#endif
922 }
923 }
924}
925
926void GameController::startAudio() {
927 if (!m_audioProcessor->start()) {
928 LOG(QT, ERROR) << tr("Failed to start audio processor");
929 // Don't freeze!
930 m_audioSync = false;
931 m_videoSync = true;
932 m_threadContext.sync.audioWait = false;
933 m_threadContext.sync.videoFrameWait = true;
934 }
935}
936
937void GameController::setVideoLayerEnabled(int layer, bool enable) {
938 if (layer > 4 || layer < 0) {
939 return;
940 }
941 m_videoLayers[layer] = enable;
942#ifdef M_CORE_GBA
943 if (isLoaded() && m_threadContext.core->platform(m_threadContext.core) == PLATFORM_GBA) {
944 GBA* gba = static_cast<GBA*>(m_threadContext.core->board);
945 switch (layer) {
946 case 0:
947 case 1:
948 case 2:
949 case 3:
950 gba->video.renderer->disableBG[layer] = !enable;
951 break;
952 case 4:
953 gba->video.renderer->disableOBJ = !enable;
954 break;
955 }
956 }
957#endif
958}
959
960void GameController::setFPSTarget(float fps) {
961 Interrupter interrupter(this);
962 m_fpsTarget = fps;
963 m_threadContext.sync.fpsTarget = fps;
964 if (m_turbo && m_turboSpeed > 0) {
965 m_threadContext.sync.fpsTarget *= m_turboSpeed;
966 }
967 if (m_audioProcessor) {
968 redoSamples(m_audioProcessor->getBufferSamples());
969 }
970}
971
972void GameController::setUseBIOS(bool use) {
973 if (use == m_useBios) {
974 return;
975 }
976 m_useBios = use;
977 if (m_gameOpen) {
978 closeGame();
979 openGame();
980 }
981}
982
983void GameController::loadState(int slot) {
984 if (m_fname.isEmpty()) {
985 // We're in the BIOS
986 return;
987 }
988 if (slot > 0 && slot != m_stateSlot) {
989 m_stateSlot = slot;
990 m_backupSaveState.clear();
991 }
992 mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
993 GameController* controller = static_cast<GameController*>(context->userData);
994 if (!controller->m_backupLoadState) {
995 controller->m_backupLoadState = VFileMemChunk(nullptr, 0);
996 }
997 mCoreLoadStateNamed(context->core, controller->m_backupLoadState, controller->m_saveStateFlags);
998 if (mCoreLoadState(context->core, controller->m_stateSlot, controller->m_loadStateFlags)) {
999 controller->frameAvailable(controller->m_drawContext);
1000 controller->stateLoaded(context);
1001 }
1002 });
1003}
1004
1005void GameController::saveState(int slot) {
1006 if (m_fname.isEmpty()) {
1007 // We're in the BIOS
1008 return;
1009 }
1010 if (slot > 0) {
1011 m_stateSlot = slot;
1012 }
1013 mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
1014 GameController* controller = static_cast<GameController*>(context->userData);
1015 VFile* vf = mCoreGetState(context->core, controller->m_stateSlot, false);
1016 if (vf) {
1017 controller->m_backupSaveState.resize(vf->size(vf));
1018 vf->read(vf, controller->m_backupSaveState.data(), controller->m_backupSaveState.size());
1019 vf->close(vf);
1020 }
1021 mCoreSaveState(context->core, controller->m_stateSlot, controller->m_saveStateFlags);
1022 });
1023}
1024
1025void GameController::loadBackupState() {
1026 if (!m_backupLoadState) {
1027 return;
1028 }
1029
1030 mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
1031 GameController* controller = static_cast<GameController*>(context->userData);
1032 controller->m_backupLoadState->seek(controller->m_backupLoadState, 0, SEEK_SET);
1033 if (mCoreLoadStateNamed(context->core, controller->m_backupLoadState, controller->m_loadStateFlags)) {
1034 mLOG(STATUS, INFO, "Undid state load");
1035 controller->frameAvailable(controller->m_drawContext);
1036 controller->stateLoaded(context);
1037 }
1038 controller->m_backupLoadState->close(controller->m_backupLoadState);
1039 controller->m_backupLoadState = nullptr;
1040 });
1041}
1042
1043void GameController::saveBackupState() {
1044 if (m_backupSaveState.isEmpty()) {
1045 return;
1046 }
1047
1048 mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
1049 GameController* controller = static_cast<GameController*>(context->userData);
1050 VFile* vf = mCoreGetState(context->core, controller->m_stateSlot, true);
1051 if (vf) {
1052 vf->write(vf, controller->m_backupSaveState.constData(), controller->m_backupSaveState.size());
1053 vf->close(vf);
1054 mLOG(STATUS, INFO, "Undid state save");
1055 }
1056 controller->m_backupSaveState.clear();
1057 });
1058}
1059
1060void GameController::setTurbo(bool set, bool forced) {
1061 if (m_turboForced && !forced) {
1062 return;
1063 }
1064 if (m_turbo == set && m_turboForced == (set && forced)) {
1065 // Don't interrupt the thread if we don't need to
1066 return;
1067 }
1068 if (!m_sync) {
1069 return;
1070 }
1071 m_turbo = set;
1072 m_turboForced = set && forced;
1073 enableTurbo();
1074}
1075
1076void GameController::setTurboSpeed(float ratio) {
1077 m_turboSpeed = ratio;
1078 enableTurbo();
1079}
1080
1081void GameController::enableTurbo() {
1082 Interrupter interrupter(this);
1083 bool shouldRedoSamples = false;
1084 if (!m_turbo) {
1085 shouldRedoSamples = m_threadContext.sync.fpsTarget != m_fpsTarget;
1086 m_threadContext.sync.fpsTarget = m_fpsTarget;
1087 m_threadContext.sync.audioWait = m_audioSync;
1088 m_threadContext.sync.videoFrameWait = m_videoSync;
1089 } else if (m_turboSpeed <= 0) {
1090 shouldRedoSamples = m_threadContext.sync.fpsTarget != m_fpsTarget;
1091 m_threadContext.sync.fpsTarget = m_fpsTarget;
1092 m_threadContext.sync.audioWait = false;
1093 m_threadContext.sync.videoFrameWait = false;
1094 } else {
1095 shouldRedoSamples = m_threadContext.sync.fpsTarget != m_fpsTarget * m_turboSpeed;
1096 m_threadContext.sync.fpsTarget = m_fpsTarget * m_turboSpeed;
1097 m_threadContext.sync.audioWait = true;
1098 m_threadContext.sync.videoFrameWait = false;
1099 }
1100 if (m_audioProcessor && shouldRedoSamples) {
1101 redoSamples(m_audioProcessor->getBufferSamples());
1102 }
1103}
1104
1105void GameController::setSync(bool enable) {
1106 m_turbo = false;
1107 m_turboForced = false;
1108 if (!enable) {
1109 m_threadContext.sync.audioWait = false;
1110 m_threadContext.sync.videoFrameWait = false;
1111 } else {
1112 m_threadContext.sync.audioWait = m_audioSync;
1113 m_threadContext.sync.videoFrameWait = m_videoSync;
1114 }
1115 m_sync = enable;
1116}
1117
1118void GameController::setAudioSync(bool enable) {
1119 m_audioSync = enable;
1120 m_threadContext.sync.audioWait = enable;
1121}
1122
1123void GameController::setVideoSync(bool enable) {
1124 m_videoSync = enable;
1125 m_threadContext.sync.videoFrameWait = enable;
1126}
1127
1128void GameController::setAVStream(mAVStream* stream) {
1129 Interrupter interrupter(this);
1130 m_stream = stream;
1131 if (isLoaded()) {
1132 m_threadContext.core->setAVStream(m_threadContext.core, stream);
1133 }
1134}
1135
1136void GameController::clearAVStream() {
1137 Interrupter interrupter(this);
1138 m_stream = nullptr;
1139 if (isLoaded()) {
1140 m_threadContext.core->setAVStream(m_threadContext.core, nullptr);
1141 }
1142}
1143
1144#ifdef USE_PNG
1145void GameController::screenshot() {
1146 mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
1147 mCoreTakeScreenshot(context->core);
1148 });
1149}
1150#endif
1151
1152void GameController::reloadAudioDriver() {
1153 int samples = 0;
1154 unsigned sampleRate = 0;
1155 if (m_audioProcessor) {
1156 m_audioProcessor->pause();
1157 samples = m_audioProcessor->getBufferSamples();
1158 sampleRate = m_audioProcessor->sampleRate();
1159 delete m_audioProcessor;
1160 }
1161 m_audioProcessor = AudioProcessor::create();
1162 if (samples) {
1163 m_audioProcessor->setBufferSamples(samples);
1164 }
1165 if (sampleRate) {
1166 m_audioProcessor->requestSampleRate(sampleRate);
1167 }
1168 connect(this, SIGNAL(gamePaused(mCoreThread*)), m_audioProcessor, SLOT(pause()));
1169 connect(this, SIGNAL(gameStarted(mCoreThread*, const QString&)), m_audioProcessor, SLOT(setInput(mCoreThread*)));
1170 if (isLoaded()) {
1171 m_audioProcessor->setInput(&m_threadContext);
1172 startAudio();
1173 }
1174}
1175
1176void GameController::setSaveStateExtdata(int flags) {
1177 m_saveStateFlags = flags;
1178}
1179
1180void GameController::setLoadStateExtdata(int flags) {
1181 m_loadStateFlags = flags;
1182}
1183
1184void GameController::setLuminanceValue(uint8_t value) {
1185 m_luxValue = value;
1186 value = std::max<int>(value - 0x16, 0);
1187 m_luxLevel = 10;
1188 for (int i = 0; i < 10; ++i) {
1189 if (value < GBA_LUX_LEVELS[i]) {
1190 m_luxLevel = i;
1191 break;
1192 }
1193 }
1194 emit luminanceValueChanged(m_luxValue);
1195}
1196
1197void GameController::setLuminanceLevel(int level) {
1198 int value = 0x16;
1199 level = std::max(0, std::min(10, level));
1200 if (level > 0) {
1201 value += GBA_LUX_LEVELS[level - 1];
1202 }
1203 setLuminanceValue(value);
1204}
1205
1206void GameController::setRealTime() {
1207 if (!isLoaded()) {
1208 return;
1209 }
1210 m_threadContext.core->rtc.override = RTC_NO_OVERRIDE;
1211}
1212
1213void GameController::setFixedTime(const QDateTime& time) {
1214 if (!isLoaded()) {
1215 return;
1216 }
1217 m_threadContext.core->rtc.override = RTC_FIXED;
1218 m_threadContext.core->rtc.value = time.toMSecsSinceEpoch();
1219}
1220
1221void GameController::setFakeEpoch(const QDateTime& time) {
1222 if (!isLoaded()) {
1223 return;
1224 }
1225 m_threadContext.core->rtc.override = RTC_FAKE_EPOCH;
1226 m_threadContext.core->rtc.value = time.toMSecsSinceEpoch();
1227}
1228
1229void GameController::updateKeys() {
1230 int activeKeys = m_activeKeys;
1231 activeKeys |= m_activeButtons;
1232 activeKeys &= ~m_inactiveKeys;
1233 if (isLoaded()) {
1234 m_threadContext.core->setKeys(m_threadContext.core, activeKeys);
1235 }
1236}
1237
1238void GameController::redoSamples(int samples) {
1239 if (m_threadContext.core) {
1240 m_threadContext.core->setAudioBufferSize(m_threadContext.core, samples);
1241 }
1242 m_audioProcessor->inputParametersChanged();
1243}
1244
1245void GameController::setLogLevel(int levels) {
1246 Interrupter interrupter(this);
1247 m_logLevels = levels;
1248}
1249
1250void GameController::enableLogLevel(int levels) {
1251 Interrupter interrupter(this);
1252 m_logLevels |= levels;
1253}
1254
1255void GameController::disableLogLevel(int levels) {
1256 Interrupter interrupter(this);
1257 m_logLevels &= ~levels;
1258}
1259
1260void GameController::pollEvents() {
1261 if (!m_inputController) {
1262 return;
1263 }
1264
1265 m_activeButtons = m_inputController->pollEvents();
1266 updateKeys();
1267}
1268
1269void GameController::updateAutofire() {
1270 // TODO: Move all key events onto the CPU thread...somehow
1271 for (int k = 0; k < GBA_KEY_MAX; ++k) {
1272 if (!m_autofire[k]) {
1273 continue;
1274 }
1275 m_autofireStatus[k] ^= 1;
1276 if (m_autofireStatus[k]) {
1277 keyPressed(k);
1278 } else {
1279 keyReleased(k);
1280 }
1281 }
1282}
1283
1284std::shared_ptr<mTileCache> GameController::tileCache() {
1285 if (m_tileCache) {
1286 return m_tileCache;
1287 }
1288 switch (platform()) {
1289#ifdef M_CORE_GBA
1290 case PLATFORM_GBA: {
1291 Interrupter interrupter(this);
1292 GBA* gba = static_cast<GBA*>(m_threadContext.core->board);
1293 m_tileCache = std::make_shared<mTileCache>();
1294 GBAVideoTileCacheInit(m_tileCache.get());
1295 GBAVideoTileCacheAssociate(m_tileCache.get(), &gba->video);
1296 mTileCacheSetPalette(m_tileCache.get(), 0);
1297 break;
1298 }
1299#endif
1300#ifdef M_CORE_GB
1301 case PLATFORM_GB: {
1302 Interrupter interrupter(this);
1303 GB* gb = static_cast<GB*>(m_threadContext.core->board);
1304 m_tileCache = std::make_shared<mTileCache>();
1305 GBVideoTileCacheInit(m_tileCache.get());
1306 GBVideoTileCacheAssociate(m_tileCache.get(), &gb->video);
1307 mTileCacheSetPalette(m_tileCache.get(), 0);
1308 break;
1309 }
1310#endif
1311 default:
1312 return nullptr;
1313 }
1314 return m_tileCache;
1315}
1316
1317GameController::Interrupter::Interrupter(GameController* parent, bool fromThread)
1318 : m_parent(parent)
1319 , m_fromThread(fromThread)
1320{
1321 if (!m_fromThread) {
1322 m_parent->threadInterrupt();
1323 } else {
1324 mCoreThreadInterruptFromThread(m_parent->thread());
1325 }
1326}
1327
1328GameController::Interrupter::~Interrupter() {
1329 if (!m_fromThread) {
1330 m_parent->threadContinue();
1331 } else {
1332 mCoreThreadContinue(m_parent->thread());
1333 }
1334}