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 uint32_t* m_frontBuffer;
171 GBAThread m_threadContext;
172 GBAVideoSoftwareRenderer* m_renderer;
173 GBACheatDevice m_cheatDevice;
174 int m_activeKeys;
175 int m_activeButtons;
176 int m_inactiveKeys;
177 int m_logLevels;
178
179 bool m_gameOpen;
180 bool m_dirmode;
181
182 QString m_fname;
183 QString m_bios;
184 bool m_useBios;
185 QString m_patch;
186
187 QThread* m_audioThread;
188 AudioProcessor* m_audioProcessor;
189
190 QAtomicInt m_pauseAfterFrame;
191
192 bool m_videoSync;
193 bool m_audioSync;
194 float m_fpsTarget;
195 bool m_turbo;
196 bool m_turboForced;
197 float m_turboSpeed;
198 QTimer m_rewindTimer;
199 bool m_wasPaused;
200
201 bool m_audioChannels[6];
202 bool m_videoLayers[5];
203
204 int m_stateSlot;
205 GBASerializedState* m_backupLoadState;
206 QByteArray m_backupSaveState;
207
208 InputController* m_inputController;
209 MultiplayerController* m_multiplayer;
210
211 struct GameControllerLux : GBALuminanceSource {
212 GameController* p;
213 uint8_t value;
214 } m_lux;
215 uint8_t m_luxValue;
216 int m_luxLevel;
217
218 GBARTCGenericSource m_rtc;
219};
220
221}
222
223#endif