all repos — mgba @ a5b81ae9bff518539d7aae9606ee670f7830517b

mGBA Game Boy Advance Emulator

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#include <QThread>
  17
  18#include <ctime>
  19
  20#include <mgba/core/config.h>
  21#include <mgba/core/directories.h>
  22#include <mgba/core/serialize.h>
  23#include <mgba/core/tile-cache.h>
  24#ifdef M_CORE_GBA
  25#include <mgba/gba/interface.h>
  26#include <mgba/internal/gba/bios.h>
  27#include <mgba/internal/gba/gba.h>
  28#include <mgba/gba/core.h>
  29#include <mgba/internal/gba/renderers/tile-cache.h>
  30#include <mgba/internal/gba/sharkport.h>
  31#endif
  32#ifdef M_CORE_GB
  33#include <mgba/internal/gb/gb.h>
  34#include <mgba/internal/gb/renderers/tile-cache.h>
  35#endif
  36#include <mgba-util/vfs.h>
  37
  38using namespace QGBA;
  39using namespace std;
  40
  41GameController::GameController(QObject* parent)
  42	: QObject(parent)
  43	, m_drawContext(nullptr)
  44	, m_frontBuffer(nullptr)
  45	, m_threadContext()
  46	, m_activeKeys(0)
  47	, m_inactiveKeys(0)
  48	, m_logLevels(0)
  49	, m_gameOpen(false)
  50	, m_vf(nullptr)
  51	, m_useBios(false)
  52	, m_audioThread(new QThread(this))
  53	, m_audioProcessor(AudioProcessor::create())
  54	, m_pauseAfterFrame(false)
  55	, m_sync(true)
  56	, m_videoSync(VIDEO_SYNC)
  57	, m_audioSync(AUDIO_SYNC)
  58	, m_fpsTarget(-1)
  59	, m_turbo(false)
  60	, m_turboForced(false)
  61	, m_turboSpeed(-1)
  62	, m_wasPaused(false)
  63	, m_audioChannels{ true, true, true, true, true, true }
  64	, m_videoLayers{ true, true, true, true, true }
  65	, m_autofire{}
  66	, m_autofireStatus{}
  67	, m_inputController(nullptr)
  68	, m_multiplayer(nullptr)
  69	, m_stream(nullptr)
  70	, m_stateSlot(1)
  71	, m_backupLoadState(nullptr)
  72	, m_backupSaveState(nullptr)
  73	, m_saveStateFlags(SAVESTATE_SCREENSHOT | SAVESTATE_SAVEDATA | SAVESTATE_CHEATS)
  74	, m_loadStateFlags(SAVESTATE_SCREENSHOT)
  75	, m_override(nullptr)
  76{
  77#ifdef M_CORE_GBA
  78	m_lux.p = this;
  79	m_lux.sample = [](GBALuminanceSource* context) {
  80		GameControllerLux* lux = static_cast<GameControllerLux*>(context);
  81		lux->value = 0xFF - lux->p->m_luxValue;
  82	};
  83
  84	m_lux.readLuminance = [](GBALuminanceSource* context) {
  85		GameControllerLux* lux = static_cast<GameControllerLux*>(context);
  86		return lux->value;
  87	};
  88	setLuminanceLevel(0);
  89#endif
  90
  91	m_threadContext.startCallback = [](mCoreThread* context) {
  92		GameController* controller = static_cast<GameController*>(context->userData);
  93		mRTCGenericSourceInit(&controller->m_rtc, context->core);
  94		context->core->setRTC(context->core, &controller->m_rtc.d);
  95		context->core->setRotation(context->core, controller->m_inputController->rotationSource());
  96		context->core->setRumble(context->core, controller->m_inputController->rumble());
  97
  98#ifdef M_CORE_GBA
  99		GBA* gba = static_cast<GBA*>(context->core->board);
 100#endif
 101#ifdef M_CORE_GB
 102		GB* gb = static_cast<GB*>(context->core->board);
 103#endif
 104		switch (context->core->platform(context->core)) {
 105#ifdef M_CORE_GBA
 106		case PLATFORM_GBA:
 107			gba->luminanceSource = &controller->m_lux;
 108			gba->audio.psg.forceDisableCh[0] = !controller->m_audioChannels[0];
 109			gba->audio.psg.forceDisableCh[1] = !controller->m_audioChannels[1];
 110			gba->audio.psg.forceDisableCh[2] = !controller->m_audioChannels[2];
 111			gba->audio.psg.forceDisableCh[3] = !controller->m_audioChannels[3];
 112			gba->audio.forceDisableChA = !controller->m_audioChannels[4];
 113			gba->audio.forceDisableChB = !controller->m_audioChannels[5];
 114			gba->video.renderer->disableBG[0] = !controller->m_videoLayers[0];
 115			gba->video.renderer->disableBG[1] = !controller->m_videoLayers[1];
 116			gba->video.renderer->disableBG[2] = !controller->m_videoLayers[2];
 117			gba->video.renderer->disableBG[3] = !controller->m_videoLayers[3];
 118			gba->video.renderer->disableOBJ = !controller->m_videoLayers[4];
 119			break;
 120#endif
 121#ifdef M_CORE_GB
 122		case PLATFORM_GB:
 123			gb->audio.forceDisableCh[0] = !controller->m_audioChannels[0];
 124			gb->audio.forceDisableCh[1] = !controller->m_audioChannels[1];
 125			gb->audio.forceDisableCh[2] = !controller->m_audioChannels[2];
 126			gb->audio.forceDisableCh[3] = !controller->m_audioChannels[3];
 127			break;
 128#endif
 129		default:
 130			break;
 131		}
 132		controller->m_fpsTarget = context->sync.fpsTarget;
 133
 134		if (controller->m_override) {
 135			controller->m_override->identify(context->core);
 136			controller->m_override->apply(context->core);
 137		}
 138
 139		if (mCoreLoadState(context->core, 0, controller->m_loadStateFlags)) {
 140			mCoreDeleteState(context->core, 0);
 141		}
 142
 143		controller->m_gameOpen = true;
 144		if (controller->m_multiplayer) {
 145			controller->m_multiplayer->attachGame(controller);
 146		}
 147
 148		QString path = controller->m_fname;
 149		if (!controller->m_fsub.isEmpty()) {
 150			path += QDir::separator() + controller->m_fsub;
 151		}
 152		QMetaObject::invokeMethod(controller, "gameStarted", Q_ARG(mCoreThread*, context), Q_ARG(const QString&, path));
 153		QMetaObject::invokeMethod(controller, "startAudio");
 154	};
 155
 156	m_threadContext.resetCallback = [](mCoreThread* context) {
 157		GameController* controller = static_cast<GameController*>(context->userData);
 158		for (auto action : controller->m_resetActions) {
 159			action();
 160		}
 161		controller->m_resetActions.clear();
 162
 163		unsigned width, height;
 164		controller->m_threadContext.core->desiredVideoDimensions(controller->m_threadContext.core, &width, &height);
 165		memset(controller->m_frontBuffer, 0xFF, width * height * BYTES_PER_PIXEL);
 166		QMetaObject::invokeMethod(controller, "frameAvailable", Q_ARG(const uint32_t*, controller->m_frontBuffer));
 167		if (controller->m_pauseAfterFrame.testAndSetAcquire(true, false)) {
 168			mCoreThreadPauseFromThread(context);
 169			QMetaObject::invokeMethod(controller, "gamePaused", Q_ARG(mCoreThread*, context));
 170		}
 171	};
 172
 173	m_threadContext.cleanCallback = [](mCoreThread* context) {
 174		GameController* controller = static_cast<GameController*>(context->userData);
 175
 176		if (controller->m_multiplayer) {
 177			controller->m_multiplayer->detachGame(controller);
 178		}
 179		controller->m_patch = QString();
 180		controller->clearOverride();
 181
 182		QMetaObject::invokeMethod(controller->m_audioProcessor, "pause", Qt::BlockingQueuedConnection);
 183
 184		QMetaObject::invokeMethod(controller, "gameStopped", Q_ARG(mCoreThread*, context));
 185		QMetaObject::invokeMethod(controller, "cleanGame");
 186	};
 187
 188	m_threadContext.frameCallback = [](mCoreThread* context) {
 189		GameController* controller = static_cast<GameController*>(context->userData);
 190		unsigned width, height;
 191		controller->m_threadContext.core->desiredVideoDimensions(controller->m_threadContext.core, &width, &height);
 192		memcpy(controller->m_frontBuffer, controller->m_drawContext, width * height * BYTES_PER_PIXEL);
 193		QMetaObject::invokeMethod(controller, "frameAvailable", Q_ARG(const uint32_t*, controller->m_frontBuffer));
 194
 195		// If no one is using the tile cache, disable it
 196		if (controller->m_tileCache && controller->m_tileCache.unique()) {
 197			switch (controller->platform()) {
 198#ifdef M_CORE_GBA
 199			case PLATFORM_GBA: {
 200				GBA* gba = static_cast<GBA*>(context->core->board);
 201				gba->video.renderer->cache = nullptr;
 202				break;
 203			}
 204#endif
 205#ifdef M_CORE_GB
 206			case PLATFORM_GB: {
 207				GB* gb = static_cast<GB*>(context->core->board);
 208				gb->video.renderer->cache = nullptr;
 209				break;
 210			}
 211#endif
 212			default:
 213				break;
 214			}
 215			controller->m_tileCache.reset();
 216		}
 217
 218
 219		if (controller->m_pauseAfterFrame.testAndSetAcquire(true, false)) {
 220			mCoreThreadPauseFromThread(context);
 221			QMetaObject::invokeMethod(controller, "gamePaused", Q_ARG(mCoreThread*, context));
 222		}
 223	};
 224
 225	// TODO: Put back
 226	/*m_threadContext.stopCallback = [](mCoreThread* context) {
 227		if (!context) {
 228			return false;
 229		}
 230		GameController* controller = static_cast<GameController*>(context->userData);
 231		if (!mCoreSaveState(context->core, 0, controller->m_saveStateFlags)) {
 232			return false;
 233		}
 234		QMetaObject::invokeMethod(controller, "closeGame");
 235		return true;
 236	};*/
 237
 238	m_threadContext.logger.d.log = [](mLogger* logger, int category, enum mLogLevel level, const char* format, va_list args) {
 239		mThreadLogger* logContext = reinterpret_cast<mThreadLogger*>(logger);
 240		mCoreThread* context = logContext->p;
 241
 242		static const char* savestateMessage = "State %i loaded";
 243		static const char* savestateFailedMessage = "State %i failed to load";
 244		if (!context) {
 245			return;
 246		}
 247		GameController* controller = static_cast<GameController*>(context->userData);
 248		QString message;
 249#ifdef M_CORE_GBA
 250		if (level == mLOG_STUB && category == _mLOG_CAT_GBA_BIOS()) {
 251			va_list argc;
 252			va_copy(argc, args);
 253			int immediate = va_arg(argc, int);
 254			va_end(argc);
 255			QMetaObject::invokeMethod(controller, "unimplementedBiosCall", Q_ARG(int, immediate));
 256		} else
 257#endif
 258		if (category == _mLOG_CAT_STATUS()) {
 259			// Slot 0 is reserved for suspend points
 260			if (strncmp(savestateMessage, format, strlen(savestateMessage)) == 0) {
 261				va_list argc;
 262				va_copy(argc, args);
 263				int slot = va_arg(argc, int);
 264				va_end(argc);
 265				if (slot == 0) {
 266					format = "Loaded suspend state";
 267				}
 268			} else if (strncmp(savestateFailedMessage, format, strlen(savestateFailedMessage)) == 0) {
 269				va_list argc;
 270				va_copy(argc, args);
 271				int slot = va_arg(argc, int);
 272				va_end(argc);
 273				if (slot == 0) {
 274					return;
 275				}
 276			}
 277			message = QString().vsprintf(format, args);
 278			QMetaObject::invokeMethod(controller, "statusPosted", Q_ARG(const QString&, message));
 279		}
 280		if (level == mLOG_FATAL) {
 281			mCoreThreadMarkCrashed(controller->thread());
 282			QMetaObject::invokeMethod(controller, "crashGame", Q_ARG(const QString&, QString().vsprintf(format, args)));
 283		} else if (!(controller->m_logLevels & level)) {
 284			return;
 285		}
 286		message = QString().vsprintf(format, args);
 287		QMetaObject::invokeMethod(controller, "postLog", Q_ARG(int, level), Q_ARG(int, category), Q_ARG(const QString&, message));
 288	};
 289
 290	m_threadContext.userData = this;
 291
 292	m_audioThread->setObjectName("Audio Thread");
 293	m_audioThread->start(QThread::TimeCriticalPriority);
 294	m_audioProcessor->moveToThread(m_audioThread);
 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	m_audioThread->quit();
 305	m_audioThread->wait();
 306	clearMultiplayerController();
 307	delete m_backupLoadState;
 308}
 309
 310void GameController::setMultiplayerController(MultiplayerController* controller) {
 311	if (controller == m_multiplayer) {
 312		return;
 313	}
 314	clearMultiplayerController();
 315	m_multiplayer = controller;
 316	if (isLoaded()) {
 317		mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* thread) {
 318			GameController* controller = static_cast<GameController*>(thread->userData);
 319			controller->m_multiplayer->attachGame(controller);
 320		});
 321	}
 322}
 323
 324void GameController::clearMultiplayerController() {
 325	if (!m_multiplayer) {
 326		return;
 327	}
 328	m_multiplayer->detachGame(this);
 329	m_multiplayer = nullptr;
 330}
 331
 332void GameController::setOverride(Override* override) {
 333	m_override = override;
 334	if (isLoaded()) {
 335		Interrupter interrupter(this);
 336		m_override->identify(m_threadContext.core);
 337	}
 338}
 339
 340void GameController::clearOverride() {
 341	delete m_override;
 342	m_override = nullptr;
 343}
 344
 345void GameController::setConfig(const mCoreConfig* config) {
 346	m_config = config;
 347	if (isLoaded()) {
 348		Interrupter interrupter(this);
 349		mCoreLoadForeignConfig(m_threadContext.core, config);
 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 = base + QDir::separator() + path;
 413		m_fsub = QString();
 414	} else {
 415		m_fname = base;
 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::clearKeys() {
 825	m_activeKeys = 0;
 826	m_inactiveKeys = 0;
 827	updateKeys();
 828}
 829
 830void GameController::setAutofire(int key, bool enable) {
 831	if (key >= GBA_KEY_MAX || key < 0) {
 832		return;
 833	}
 834
 835	if (!enable && m_autofireStatus[key]) {
 836		keyReleased(key);
 837	}
 838
 839	m_autofire[key] = enable;
 840	m_autofireStatus[key] = 0;
 841}
 842
 843void GameController::setAudioBufferSamples(int samples) {
 844	if (m_audioProcessor) {
 845		threadInterrupt();
 846		redoSamples(samples);
 847		threadContinue();
 848		QMetaObject::invokeMethod(m_audioProcessor, "setBufferSamples", Qt::BlockingQueuedConnection, Q_ARG(int, samples));
 849	}
 850}
 851
 852void GameController::setAudioSampleRate(unsigned rate) {
 853	if (!rate) {
 854		return;
 855	}
 856	if (m_audioProcessor) {
 857		threadInterrupt();
 858		redoSamples(m_audioProcessor->getBufferSamples());
 859		threadContinue();
 860		QMetaObject::invokeMethod(m_audioProcessor, "requestSampleRate", Q_ARG(unsigned, rate));
 861	}
 862}
 863
 864void GameController::setAudioChannelEnabled(int channel, bool enable) {
 865	if (channel > 5 || channel < 0) {
 866		return;
 867	}
 868#ifdef M_CORE_GBA
 869	GBA* gba = static_cast<GBA*>(m_threadContext.core->board);
 870#endif
 871#ifdef M_CORE_GB
 872	GB* gb = static_cast<GB*>(m_threadContext.core->board);
 873#endif
 874	m_audioChannels[channel] = enable;
 875	if (isLoaded()) {
 876		switch (channel) {
 877		case 0:
 878		case 1:
 879		case 2:
 880		case 3:
 881			switch (m_threadContext.core->platform(m_threadContext.core)) {
 882#ifdef M_CORE_GBA
 883			case PLATFORM_GBA:
 884				gba->audio.psg.forceDisableCh[channel] = !enable;
 885				break;
 886#endif
 887#ifdef M_CORE_GB
 888			case PLATFORM_GB:
 889				gb->audio.forceDisableCh[channel] = !enable;
 890				break;
 891#endif
 892			default:
 893				break;
 894			}
 895			break;
 896#ifdef M_CORE_GBA
 897		case 4:
 898			if (m_threadContext.core->platform(m_threadContext.core) == PLATFORM_GBA) {
 899				gba->audio.forceDisableChA = !enable;
 900			}
 901			break;
 902		case 5:
 903			if (m_threadContext.core->platform(m_threadContext.core) == PLATFORM_GBA) {
 904				gba->audio.forceDisableChB = !enable;
 905			}
 906			break;
 907#endif
 908		}
 909	}
 910}
 911
 912void GameController::startAudio() {
 913	bool started = false;
 914	QMetaObject::invokeMethod(m_audioProcessor, "start", Qt::BlockingQueuedConnection, Q_RETURN_ARG(bool, started));
 915	if (!started) {
 916		LOG(QT, ERROR) << tr("Failed to start audio processor");
 917		// Don't freeze!
 918		m_audioSync = false;
 919		m_videoSync = true;
 920		m_threadContext.sync.audioWait = false;
 921		m_threadContext.sync.videoFrameWait = true;
 922	}
 923}
 924
 925void GameController::setVideoLayerEnabled(int layer, bool enable) {
 926	if (layer > 4 || layer < 0) {
 927		return;
 928	}
 929	m_videoLayers[layer] = enable;
 930#ifdef M_CORE_GBA
 931	if (isLoaded() && m_threadContext.core->platform(m_threadContext.core) == PLATFORM_GBA) {
 932		GBA* gba = static_cast<GBA*>(m_threadContext.core->board);
 933		switch (layer) {
 934		case 0:
 935		case 1:
 936		case 2:
 937		case 3:
 938			gba->video.renderer->disableBG[layer] = !enable;
 939			break;
 940		case 4:
 941			gba->video.renderer->disableOBJ = !enable;
 942			break;
 943		}
 944	}
 945#endif
 946}
 947
 948void GameController::setFPSTarget(float fps) {
 949	Interrupter interrupter(this);
 950	m_fpsTarget = fps;
 951	m_threadContext.sync.fpsTarget = fps;
 952	if (m_turbo && m_turboSpeed > 0) {
 953		m_threadContext.sync.fpsTarget *= m_turboSpeed;
 954	}
 955	if (m_audioProcessor) {
 956		redoSamples(m_audioProcessor->getBufferSamples());
 957	}
 958}
 959
 960void GameController::setUseBIOS(bool use) {
 961	if (use == m_useBios) {
 962		return;
 963	}
 964	m_useBios = use;
 965	if (m_gameOpen) {
 966		closeGame();
 967		openGame();
 968	}
 969}
 970
 971void GameController::loadState(int slot) {
 972	if (m_fname.isEmpty()) {
 973		// We're in the BIOS
 974		return;
 975	}
 976	if (slot > 0 && slot != m_stateSlot) {
 977		m_stateSlot = slot;
 978		m_backupSaveState.clear();
 979	}
 980	mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
 981		GameController* controller = static_cast<GameController*>(context->userData);
 982		if (!controller->m_backupLoadState) {
 983			controller->m_backupLoadState = VFileMemChunk(nullptr, 0);
 984		}
 985		mCoreLoadStateNamed(context->core, controller->m_backupLoadState, controller->m_saveStateFlags);
 986		if (mCoreLoadState(context->core, controller->m_stateSlot, controller->m_loadStateFlags)) {
 987			controller->frameAvailable(controller->m_drawContext);
 988			controller->stateLoaded(context);
 989		}
 990	});
 991}
 992
 993void GameController::saveState(int slot) {
 994	if (m_fname.isEmpty()) {
 995		// We're in the BIOS
 996		return;
 997	}
 998	if (slot > 0) {
 999		m_stateSlot = slot;
1000	}
1001	mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
1002		GameController* controller = static_cast<GameController*>(context->userData);
1003		VFile* vf = mCoreGetState(context->core, controller->m_stateSlot, false);
1004		if (vf) {
1005			controller->m_backupSaveState.resize(vf->size(vf));
1006			vf->read(vf, controller->m_backupSaveState.data(), controller->m_backupSaveState.size());
1007			vf->close(vf);
1008		}
1009		mCoreSaveState(context->core, controller->m_stateSlot, controller->m_saveStateFlags);
1010	});
1011}
1012
1013void GameController::loadBackupState() {
1014	if (!m_backupLoadState) {
1015		return;
1016	}
1017
1018	mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
1019		GameController* controller = static_cast<GameController*>(context->userData);
1020		controller->m_backupLoadState->seek(controller->m_backupLoadState, 0, SEEK_SET);
1021		if (mCoreLoadStateNamed(context->core, controller->m_backupLoadState, controller->m_loadStateFlags)) {
1022			mLOG(STATUS, INFO, "Undid state load");
1023			controller->frameAvailable(controller->m_drawContext);
1024			controller->stateLoaded(context);
1025		}
1026		controller->m_backupLoadState->close(controller->m_backupLoadState);
1027		controller->m_backupLoadState = nullptr;
1028	});
1029}
1030
1031void GameController::saveBackupState() {
1032	if (m_backupSaveState.isEmpty()) {
1033		return;
1034	}
1035
1036	mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
1037		GameController* controller = static_cast<GameController*>(context->userData);
1038		VFile* vf = mCoreGetState(context->core, controller->m_stateSlot, true);
1039		if (vf) {
1040			vf->write(vf, controller->m_backupSaveState.constData(), controller->m_backupSaveState.size());
1041			vf->close(vf);
1042			mLOG(STATUS, INFO, "Undid state save");
1043		}
1044		controller->m_backupSaveState.clear();
1045	});
1046}
1047
1048void GameController::setTurbo(bool set, bool forced) {
1049	if (m_turboForced && !forced) {
1050		return;
1051	}
1052	if (m_turbo == set && m_turboForced == (set && forced)) {
1053		// Don't interrupt the thread if we don't need to
1054		return;
1055	}
1056	if (!m_sync) {
1057		return;
1058	}
1059	m_turbo = set;
1060	m_turboForced = set && forced;
1061	enableTurbo();
1062}
1063
1064void GameController::setTurboSpeed(float ratio) {
1065	m_turboSpeed = ratio;
1066	enableTurbo();
1067}
1068
1069void GameController::enableTurbo() {
1070	Interrupter interrupter(this);
1071	bool shouldRedoSamples = false;
1072	if (!m_turbo) {
1073		shouldRedoSamples = m_threadContext.sync.fpsTarget != m_fpsTarget;
1074		m_threadContext.sync.fpsTarget = m_fpsTarget;
1075		m_threadContext.sync.audioWait = m_audioSync;
1076		m_threadContext.sync.videoFrameWait = m_videoSync;
1077	} else if (m_turboSpeed <= 0) {
1078		shouldRedoSamples = m_threadContext.sync.fpsTarget != m_fpsTarget;
1079		m_threadContext.sync.fpsTarget = m_fpsTarget;
1080		m_threadContext.sync.audioWait = false;
1081		m_threadContext.sync.videoFrameWait = false;
1082	} else {
1083		shouldRedoSamples = m_threadContext.sync.fpsTarget != m_fpsTarget * m_turboSpeed;
1084		m_threadContext.sync.fpsTarget = m_fpsTarget * m_turboSpeed;
1085		m_threadContext.sync.audioWait = true;
1086		m_threadContext.sync.videoFrameWait = false;
1087	}
1088	if (m_audioProcessor && shouldRedoSamples) {
1089		redoSamples(m_audioProcessor->getBufferSamples());
1090	}
1091}
1092
1093void GameController::setSync(bool enable) {
1094	m_turbo = false;
1095	m_turboForced = false;
1096	if (!enable) {
1097		m_threadContext.sync.audioWait = false;
1098		m_threadContext.sync.videoFrameWait = false;
1099	} else {
1100		m_threadContext.sync.audioWait = m_audioSync;
1101		m_threadContext.sync.videoFrameWait = m_videoSync;
1102	}
1103	m_sync = enable;
1104}
1105void GameController::setAVStream(mAVStream* stream) {
1106	Interrupter interrupter(this);
1107	m_stream = stream;
1108	if (isLoaded()) {
1109		m_threadContext.core->setAVStream(m_threadContext.core, stream);
1110	}
1111}
1112
1113void GameController::clearAVStream() {
1114	Interrupter interrupter(this);
1115	m_stream = nullptr;
1116	if (isLoaded()) {
1117		m_threadContext.core->setAVStream(m_threadContext.core, nullptr);
1118	}
1119}
1120
1121#ifdef USE_PNG
1122void GameController::screenshot() {
1123	mCoreThreadRunFunction(&m_threadContext, [](mCoreThread* context) {
1124		mCoreTakeScreenshot(context->core);
1125	});
1126}
1127#endif
1128
1129void GameController::reloadAudioDriver() {
1130	int samples = 0;
1131	unsigned sampleRate = 0;
1132	if (m_audioProcessor) {
1133		QMetaObject::invokeMethod(m_audioProcessor, "pause", Qt::BlockingQueuedConnection);
1134		samples = m_audioProcessor->getBufferSamples();
1135		sampleRate = m_audioProcessor->sampleRate();
1136		delete m_audioProcessor;
1137	}
1138	m_audioProcessor = AudioProcessor::create();
1139	if (samples) {
1140		m_audioProcessor->setBufferSamples(samples);
1141	}
1142	if (sampleRate) {
1143		m_audioProcessor->requestSampleRate(sampleRate);
1144	}
1145	m_audioProcessor->moveToThread(m_audioThread);
1146	connect(this, SIGNAL(gamePaused(mCoreThread*)), m_audioProcessor, SLOT(pause()));
1147	connect(this, SIGNAL(gameStarted(mCoreThread*, const QString&)), m_audioProcessor, SLOT(setInput(mCoreThread*)));
1148	if (isLoaded()) {
1149		m_audioProcessor->setInput(&m_threadContext);
1150		startAudio();
1151	}
1152}
1153
1154void GameController::setSaveStateExtdata(int flags) {
1155	m_saveStateFlags = flags;
1156}
1157
1158void GameController::setLoadStateExtdata(int flags) {
1159	m_loadStateFlags = flags;
1160}
1161
1162void GameController::setLuminanceValue(uint8_t value) {
1163	m_luxValue = value;
1164	value = std::max<int>(value - 0x16, 0);
1165	m_luxLevel = 10;
1166	for (int i = 0; i < 10; ++i) {
1167		if (value < GBA_LUX_LEVELS[i]) {
1168			m_luxLevel = i;
1169			break;
1170		}
1171	}
1172	emit luminanceValueChanged(m_luxValue);
1173}
1174
1175void GameController::setLuminanceLevel(int level) {
1176	int value = 0x16;
1177	level = std::max(0, std::min(10, level));
1178	if (level > 0) {
1179		value += GBA_LUX_LEVELS[level - 1];
1180	}
1181	setLuminanceValue(value);
1182}
1183
1184void GameController::setRealTime() {
1185	m_rtc.override = RTC_NO_OVERRIDE;
1186}
1187
1188void GameController::setFixedTime(const QDateTime& time) {
1189	m_rtc.override = RTC_FIXED;
1190	m_rtc.value = time.toMSecsSinceEpoch() / 1000;
1191}
1192
1193void GameController::setFakeEpoch(const QDateTime& time) {
1194	m_rtc.override = RTC_FAKE_EPOCH;
1195	m_rtc.value = time.toMSecsSinceEpoch() / 1000;
1196}
1197
1198void GameController::updateKeys() {
1199	int activeKeys = m_activeKeys;
1200	activeKeys |= m_activeButtons;
1201	activeKeys &= ~m_inactiveKeys;
1202	if (isLoaded()) {
1203		m_threadContext.core->setKeys(m_threadContext.core, activeKeys);
1204	}
1205}
1206
1207void GameController::redoSamples(int samples) {
1208	if (m_threadContext.core) {
1209		m_threadContext.core->setAudioBufferSize(m_threadContext.core, samples);
1210	}
1211	QMetaObject::invokeMethod(m_audioProcessor, "inputParametersChanged");
1212}
1213
1214void GameController::setLogLevel(int levels) {
1215	Interrupter interrupter(this);
1216	m_logLevels = levels;
1217}
1218
1219void GameController::enableLogLevel(int levels) {
1220	Interrupter interrupter(this);
1221	m_logLevels |= levels;
1222}
1223
1224void GameController::disableLogLevel(int levels) {
1225	Interrupter interrupter(this);
1226	m_logLevels &= ~levels;
1227}
1228
1229void GameController::pollEvents() {
1230	if (!m_inputController) {
1231		return;
1232	}
1233
1234	m_activeButtons = m_inputController->pollEvents();
1235	updateKeys();
1236}
1237
1238void GameController::updateAutofire() {
1239	// TODO: Move all key events onto the CPU thread...somehow
1240	for (int k = 0; k < GBA_KEY_MAX; ++k) {
1241		if (!m_autofire[k]) {
1242			continue;
1243		}
1244		m_autofireStatus[k] ^= 1;
1245		if (m_autofireStatus[k]) {
1246			keyPressed(k);
1247		} else {
1248			keyReleased(k);
1249		}
1250	}
1251}
1252
1253std::shared_ptr<mTileCache> GameController::tileCache() {
1254	if (m_tileCache) {
1255		return m_tileCache;
1256	}
1257	switch (platform()) {
1258#ifdef M_CORE_GBA
1259	case PLATFORM_GBA: {
1260		Interrupter interrupter(this);
1261		GBA* gba = static_cast<GBA*>(m_threadContext.core->board);
1262		m_tileCache = std::make_shared<mTileCache>();
1263		GBAVideoTileCacheInit(m_tileCache.get());
1264		GBAVideoTileCacheAssociate(m_tileCache.get(), &gba->video);
1265		mTileCacheSetPalette(m_tileCache.get(), 0);
1266		break;
1267	}
1268#endif
1269#ifdef M_CORE_GB
1270	case PLATFORM_GB: {
1271		Interrupter interrupter(this);
1272		GB* gb = static_cast<GB*>(m_threadContext.core->board);
1273		m_tileCache = std::make_shared<mTileCache>();
1274		GBVideoTileCacheInit(m_tileCache.get());
1275		GBVideoTileCacheAssociate(m_tileCache.get(), &gb->video);
1276		mTileCacheSetPalette(m_tileCache.get(), 0);
1277		break;
1278	}
1279#endif
1280	default:
1281		return nullptr;
1282	}
1283	return m_tileCache;
1284}
1285
1286GameController::Interrupter::Interrupter(GameController* parent, bool fromThread)
1287	: m_parent(parent)
1288	, m_fromThread(fromThread)
1289{
1290	if (!m_fromThread) {
1291		m_parent->threadInterrupt();
1292	} else {
1293		mCoreThreadInterruptFromThread(m_parent->thread());
1294	}
1295}
1296
1297GameController::Interrupter::~Interrupter() {
1298	if (!m_fromThread) {
1299		m_parent->threadContinue();
1300	} else {
1301		mCoreThreadContinue(m_parent->thread());
1302	}
1303}