all repos — mgba @ 8e735a4668be274168ff2ef6a32dfb498f7a23fc

mGBA Game Boy Advance Emulator

src/platform/qt/GameController.h (view raw)

  1/* Copyright (c) 2013-2015 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#ifndef QGBA_GAME_CONTROLLER
  7#define QGBA_GAME_CONTROLLER
  8
  9#include <QAtomicInt>
 10#include <QFile>
 11#include <QImage>
 12#include <QObject>
 13#include <QString>
 14#include <QTimer>
 15
 16#include <memory>
 17
 18extern "C" {
 19#include "gba/cheats.h"
 20#include "gba/hardware.h"
 21#include "gba/supervisor/thread.h"
 22#ifdef BUILD_SDL
 23#include "sdl-events.h"
 24#endif
 25}
 26
 27struct GBAAudio;
 28struct GBAOptions;
 29struct GBAVideoSoftwareRenderer;
 30struct Configuration;
 31
 32class QThread;
 33
 34namespace QGBA {
 35
 36class AudioProcessor;
 37class InputController;
 38class MultiplayerController;
 39
 40class GameController : public QObject {
 41Q_OBJECT
 42
 43public:
 44	static const bool VIDEO_SYNC = false;
 45	static const bool AUDIO_SYNC = true;
 46
 47	GameController(QObject* parent = nullptr);
 48	~GameController();
 49
 50	const uint32_t* drawContext() const { return m_drawContext; }
 51	GBAThread* thread() { return &m_threadContext; }
 52	GBACheatDevice* cheatDevice() { return &m_cheatDevice; }
 53
 54	void threadInterrupt();
 55	void threadContinue();
 56
 57	bool isPaused();
 58	bool isLoaded() { return m_gameOpen && GBAThreadIsActive(&m_threadContext); }
 59
 60	bool audioSync() const { return m_audioSync; }
 61	bool videoSync() const { return m_videoSync; }
 62
 63	void setInputController(InputController* controller) { m_inputController = controller; }
 64	void setOverrides(Configuration* overrides) { m_threadContext.overrides = overrides; }
 65
 66	void setMultiplayerController(MultiplayerController* controller);
 67	MultiplayerController* multiplayerController() { return m_multiplayer; }
 68	void clearMultiplayerController();
 69
 70	void setOverride(const GBACartridgeOverride& override);
 71	void clearOverride() { m_threadContext.hasOverride = false; }
 72
 73	void setOptions(const GBAOptions*);
 74
 75	int stateSlot() const { return m_stateSlot; }
 76
 77#ifdef USE_GDB_STUB
 78	ARMDebugger* debugger();
 79	void setDebugger(ARMDebugger*);
 80#endif
 81
 82signals:
 83	void frameAvailable(const uint32_t*);
 84	void gameStarted(GBAThread*);
 85	void gameStopped(GBAThread*);
 86	void gamePaused(GBAThread*);
 87	void gameUnpaused(GBAThread*);
 88	void gameCrashed(const QString& errorMessage);
 89	void gameFailed();
 90	void stateLoaded(GBAThread*);
 91	void rewound(GBAThread*);
 92	void unimplementedBiosCall(int);
 93
 94	void luminanceValueChanged(int);
 95
 96	void statusPosted(const QString& message);
 97	void postLog(int level, const QString& log);
 98
 99public slots:
100	void loadGame(const QString& path, bool dirmode = false);
101	void loadBIOS(const QString& path);
102	void yankPak();
103	void replaceGame(const QString& path);
104	void setSkipBIOS(bool);
105	void setUseBIOS(bool);
106	void loadPatch(const QString& path);
107	void importSharkport(const QString& path);
108	void exportSharkport(const QString& path);
109	void bootBIOS();
110	void closeGame();
111	void setPaused(bool paused);
112	void reset();
113	void frameAdvance();
114	void setRewind(bool enable, int capacity, int interval);
115	void rewind(int states = 0);
116	void startRewinding();
117	void stopRewinding();
118	void keyPressed(int key);
119	void keyReleased(int key);
120	void clearKeys();
121	void setAudioBufferSamples(int samples);
122	void setAudioChannelEnabled(int channel, bool enable = true);
123	void setVideoLayerEnabled(int layer, bool enable = true);
124	void setFPSTarget(float fps);
125	void loadState(int slot = 0);
126	void saveState(int slot = 0);
127	void loadBackupState();
128	void saveBackupState();
129	void setVideoSync(bool);
130	void setAudioSync(bool);
131	void setFrameskip(int);
132	void setVolume(int);
133	void setMute(bool);
134	void setTurbo(bool, bool forced = true);
135	void setTurboSpeed(float ratio = -1);
136	void setAVStream(GBAAVStream*);
137	void clearAVStream();
138	void reloadAudioDriver();
139
140#ifdef USE_PNG
141	void screenshot();
142#endif
143
144	void setLuminanceValue(uint8_t value);
145	uint8_t luminanceValue() const { return m_luxValue; }
146	void setLuminanceLevel(int level);
147	void increaseLuminanceLevel() { setLuminanceLevel(m_luxLevel + 1); }
148	void decreaseLuminanceLevel() { setLuminanceLevel(m_luxLevel - 1); }
149
150	void setRealTime();
151	void setFixedTime(const QDateTime& time);
152	void setFakeEpoch(const QDateTime& time);
153
154	void setLogLevel(int);
155	void enableLogLevel(int);
156	void disableLogLevel(int);
157
158private slots:
159	void openGame(bool bios = false);
160	void crashGame(const QString& crashMessage);
161
162	void pollEvents();
163
164private:
165	void updateKeys();
166	void redoSamples(int samples);
167	void enableTurbo();
168
169	uint32_t* m_drawContext;
170	GBAThread m_threadContext;
171	GBAVideoSoftwareRenderer* m_renderer;
172	GBACheatDevice m_cheatDevice;
173	int m_activeKeys;
174	int m_activeButtons;
175	int m_inactiveKeys;
176	int m_logLevels;
177
178	bool m_gameOpen;
179	bool m_dirmode;
180
181	QString m_fname;
182	QString m_bios;
183	bool m_useBios;
184	QString m_patch;
185
186	QThread* m_audioThread;
187	AudioProcessor* m_audioProcessor;
188
189	QAtomicInt m_pauseAfterFrame;
190
191	bool m_videoSync;
192	bool m_audioSync;
193	float m_fpsTarget;
194	bool m_turbo;
195	bool m_turboForced;
196	float m_turboSpeed;
197	QTimer m_rewindTimer;
198	bool m_wasPaused;
199
200	bool m_audioChannels[6];
201	bool m_videoLayers[5];
202
203	int m_stateSlot;
204	GBASerializedState* m_backupLoadState;
205	QByteArray m_backupSaveState;
206
207	InputController* m_inputController;
208	MultiplayerController* m_multiplayer;
209
210	struct GameControllerLux : GBALuminanceSource {
211		GameController* p;
212		uint8_t value;
213	} m_lux;
214	uint8_t m_luxValue;
215	int m_luxLevel;
216
217	GBARTCGenericSource m_rtc;
218};
219
220}
221
222#endif