1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// -- internal --
// public
#include "rodeo.h"
#include "rodeo_types.h"
// -- external --
#if __EMSCRIPTEN__
#include <emscripten/emscripten.h>
#endif
#include "bgfx/c99/bgfx.h"
// -- system --
#include <time.h>
#include <inttypes.h>
// intialize all subsystems
void
rodeo_init(float width, float height, cstr window_name, uint32_t audio_channels)
{
rodeo_window_init((uint32_t)width, (uint32_t)height, window_name);
rodeo_math_rng_init();
rodeo_audio_init(audio_channels);
rodeo_gfx_init(width, height);
}
// deintialize all subsystems
void
rodeo_deinit(void)
{
rodeo_window_deinit();
rodeo_math_rng_deinit();
rodeo_audio_deinit();
rodeo_gfx_deinit();
}
void
rodeo_mainLoop_run(
rodeo_mainLoop_function main_loop_func
)
{
#if __EMSCRIPTEN__
emscripten_set_main_loop(main_loop_func, 0, 1);
#else
while(!rodeo_window_shouldQuit())
{
main_loop_func();
}
#endif
}
void
rodeo_debug_text_draw(uint16_t x, uint16_t y, const char *format, ...)
{
mrodeo_vargs_do(format)
{
bgfx_dbg_text_vprintf(x, y, 0x65, format, vargs);
}
}
|