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 setAutofire(int key, bool enable);
122 void setAudioBufferSamples(int samples);
123 void setAudioSampleRate(unsigned rate);
124 void setAudioChannelEnabled(int channel, bool enable = true);
125 void setVideoLayerEnabled(int layer, bool enable = true);
126 void setFPSTarget(float fps);
127 void loadState(int slot = 0);
128 void saveState(int slot = 0);
129 void loadBackupState();
130 void saveBackupState();
131 void setVideoSync(bool);
132 void setAudioSync(bool);
133 void setFrameskip(int);
134 void setVolume(int);
135 void setMute(bool);
136 void setTurbo(bool, bool forced = true);
137 void setTurboSpeed(float ratio = -1);
138 void setAVStream(GBAAVStream*);
139 void clearAVStream();
140 void reloadAudioDriver();
141
142#ifdef USE_PNG
143 void screenshot();
144#endif
145
146 void setLuminanceValue(uint8_t value);
147 uint8_t luminanceValue() const { return m_luxValue; }
148 void setLuminanceLevel(int level);
149 void increaseLuminanceLevel() { setLuminanceLevel(m_luxLevel + 1); }
150 void decreaseLuminanceLevel() { setLuminanceLevel(m_luxLevel - 1); }
151
152 void setRealTime();
153 void setFixedTime(const QDateTime& time);
154 void setFakeEpoch(const QDateTime& time);
155
156 void setLogLevel(int);
157 void enableLogLevel(int);
158 void disableLogLevel(int);
159
160private slots:
161 void openGame(bool bios = false);
162 void crashGame(const QString& crashMessage);
163
164 void pollEvents();
165 void updateAutofire();
166
167private:
168 void updateKeys();
169 void redoSamples(int samples);
170 void enableTurbo();
171
172 uint32_t* m_drawContext;
173 uint32_t* m_frontBuffer;
174 GBAThread m_threadContext;
175 GBAVideoSoftwareRenderer* m_renderer;
176 GBACheatDevice m_cheatDevice;
177 int m_activeKeys;
178 int m_activeButtons;
179 int m_inactiveKeys;
180 int m_logLevels;
181
182 bool m_gameOpen;
183 bool m_dirmode;
184
185 QString m_fname;
186 QString m_bios;
187 bool m_useBios;
188 QString m_patch;
189
190 QThread* m_audioThread;
191 AudioProcessor* m_audioProcessor;
192
193 QAtomicInt m_pauseAfterFrame;
194
195 bool m_videoSync;
196 bool m_audioSync;
197 float m_fpsTarget;
198 bool m_turbo;
199 bool m_turboForced;
200 float m_turboSpeed;
201 QTimer m_rewindTimer;
202 bool m_wasPaused;
203
204 bool m_audioChannels[6];
205 bool m_videoLayers[5];
206
207 bool m_autofire[GBA_KEY_MAX];
208 int m_autofireStatus[GBA_KEY_MAX];
209
210 int m_stateSlot;
211 GBASerializedState* m_backupLoadState;
212 QByteArray m_backupSaveState;
213
214 InputController* m_inputController;
215 MultiplayerController* m_multiplayer;
216
217 struct GameControllerLux : GBALuminanceSource {
218 GameController* p;
219 uint8_t value;
220 } m_lux;
221 uint8_t m_luxValue;
222 int m_luxLevel;
223
224 GBARTCGenericSource m_rtc;
225};
226
227}
228
229#endif