Skip to content

Commit 187d03e

Browse files
committed
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! Add Emscripten builds
1 parent bf351bd commit 187d03e

File tree

4 files changed

+3
-19
lines changed

4 files changed

+3
-19
lines changed

.gitmodules

-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,3 @@
66
path = umbra
77
url = https://github.com/libtcod/umbra.git
88
shallow = true
9-
[submodule "libtcod"]
10-
path = libtcod
11-
url = https://github.com/libtcod/libtcod.git

emscripten/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919

2020
canvas {
21-
display: contents;
21+
display: block;
2222
width: calc(min(100vw, 80 / 60 * 100vh));
2323
}
2424
</style>

libtcod

-1
This file was deleted.

src/main.cpp

+2-14
Original file line numberDiff line numberDiff line change
@@ -159,22 +159,12 @@ public :
159159
};
160160

161161

162-
SDL_AppResult SDL_AppEvent(void*, SDL_Event* event) {
163-
SDL_LogInfo(0, "%s:%i:event", __FILE__, __LINE__);
164-
return engine.onEvent(*event); }
162+
SDL_AppResult SDL_AppEvent(void*, SDL_Event* event) { return engine.onEvent(*event); }
165163

166-
SDL_AppResult SDL_AppIterate(void*) {
167-
auto i = engine.onFrame();
168-
SDL_LogInfo(0, "%s:%i:iterate:%i", __FILE__, __LINE__, i);
169-
tcod::draw_rect(*TCODConsole::root->get_data(), {0,0,10,10}, 'x', tcod::ColorRGB{255,255,255}, {});
170-
TCODConsole::root->flush();
171-
return i;
172-
}
173-
//return engine.onFrame(); }
164+
SDL_AppResult SDL_AppIterate(void*) { return engine.onFrame(); }
174165

175166
SDL_AppResult SDL_AppInit(void**, int argc, char** argv) {
176167
SDL_SetLogPriorities(SDL_LOG_PRIORITY_VERBOSE);
177-
SDL_LogInfo(0, "%s:%i:setup", __FILE__, __LINE__);
178168
// read main configuration file
179169
config.run("data/cfg/config.txt",NULL);
180170
ConditionType::init();
@@ -206,12 +196,10 @@ SDL_AppResult SDL_AppInit(void**, int argc, char** argv) {
206196
sound.initialize();
207197
engine.setKeyboardMode(UMBRA_KEYBOARD_SDL);
208198
if (!engine.initialise(TCOD_RENDERER_SDL2)) return SDL_APP_FAILURE;
209-
SDL_LogInfo(0, "%s:%i:setup-done", __FILE__, __LINE__);
210199
return SDL_APP_CONTINUE;
211200
}
212201

213202
void SDL_AppQuit(void*, SDL_AppResult) {
214-
SDL_LogInfo(0, "%s:%i:quit", __FILE__, __LINE__);
215203
saveGame.save();
216204
userPref.save();
217205
engine.onQuit();

0 commit comments

Comments
 (0)