Skip to content

Commit 0f0f6be

Browse files
committed
Refactor to use SDL main callbacks
1 parent 7bfc87b commit 0f0f6be

6 files changed

+23
-11
lines changed

src/bas_gameengine.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ bool GameEngine::update(float elapsed, TCOD_key_t &k,TCOD_mouse_t &mouse) {
235235

236236
void GameEngine::init() {
237237
gameEngine = this;
238-
engine.setKeyboardMode( UMBRA_KEYBOARD_PRESSED_RELEASED );
238+
engine.setKeyboardMode( UMBRA_KEYBOARD_SDL );
239239
}
240240

241241
void GameEngine::pauseGame() {

src/main.cpp

+18-6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2424
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2525
*/
26+
#define SDL_MAIN_USE_CALLBACKS
27+
#include <SDL3/SDL_main.h>
2628
#include <time.h>
2729
#include <stdio.h>
2830
#include "main.hpp"
@@ -155,7 +157,12 @@ public :
155157
}
156158
};
157159

158-
int main (int argc, char *argv[]) {
160+
161+
SDL_AppResult SDL_AppEvent(void*, SDL_Event* event) { return engine.onEvent(*event); }
162+
163+
SDL_AppResult SDL_AppIterate(void*) { return engine.onFrame(); }
164+
165+
SDL_AppResult SDL_AppInit(void**, int argc, char** argv) {
159166
// read main configuration file
160167
config.run("data/cfg/config.txt",NULL);
161168
ConditionType::init();
@@ -185,12 +192,17 @@ int main (int argc, char *argv[]) {
185192
engine.loadModuleConfiguration("data/cfg/modules.cfg", new ModuleFactory());
186193

187194
sound.initialize();
195+
engine.setKeyboardMode(UMBRA_KEYBOARD_SDL);
188196
if (engine.initialise(TCOD_RENDERER_SDL2)) {
189-
engine.run();
190-
saveGame.save();
191-
userPref.save();
192-
return 0;
197+
//engine.run();
198+
//return SDL_APP_SUCCESS;
199+
return SDL_APP_CONTINUE;
193200
}
201+
return SDL_APP_FAILURE;
202+
}
194203

195-
return 1;
204+
void SDL_AppQuit(void*, SDL_AppResult) {
205+
saveGame.save();
206+
userPref.save();
207+
engine.onQuit();
196208
}

src/screen_end.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void EndScreen::onInitialise() {
4242
void EndScreen::onActivate() {
4343
// set keyboard mode to RELEASED only
4444
Screen::onActivate();
45-
engine.setKeyboardMode( UMBRA_KEYBOARD_RELEASED );
45+
engine.setKeyboardMode( UMBRA_KEYBOARD_SDL );
4646
Screen::onActivate();
4747
const char *al=getStringParam("alignment");
4848
if (al) {

src/screen_mainmenu.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void MainMenu::onInitialise() {
107107

108108
void MainMenu::onActivate() {
109109
// revert keyboard mode to RELEASED only
110-
engine.setKeyboardMode( UMBRA_KEYBOARD_RELEASED );
110+
engine.setKeyboardMode( UMBRA_KEYBOARD_SDL );
111111
Screen::onActivate();
112112
sound.load("data/snd/menu.ogg");
113113
sound.playLoop();

src/screen_school.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void SchoolScreen::generateWorld(uint32_t seed) {
148148
}
149149

150150
void SchoolScreen::onActivate() {
151-
engine.setKeyboardMode( UMBRA_KEYBOARD_RELEASED );
151+
engine.setKeyboardMode( UMBRA_KEYBOARD_SDL );
152152
if (! worldGenerated) MainMenu::instance->waitForWorldGen();
153153
selectSchool(0);
154154
offx = rng->getFloat(MAP_WIDTH,HM_WIDTH-MAP_WIDTH-1);

umbra

0 commit comments

Comments
 (0)