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