blob: 83c7b6e411bf55ad4c123c24996a96297ebd5051 (
plain)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
#include "core.h"
#include <stdlib.h>
#include "glfw3.h"
#include "input.h"
#include "keys.h"
#include "log.h"
#include "render.h"
#include "render_types.h"
#include "scene.h"
// #include "threadpool.h"
#define SCR_WIDTH 1000
#define SCR_HEIGHT 1000
core g_core; /** @brief global `core` that other files can use */
inline core* get_global_core() { return &g_core; }
void core_bringup() {
INFO("Initiate Core bringup");
renderer_config conf = { .window_name = { "Celeritas Engine Core" },
.scr_width = SCR_WIDTH,
.scr_height = SCR_HEIGHT,
.clear_colour = (vec3){ .08, .08, .1 } };
g_core.renderer.config = conf;
g_core.renderer.backend_context = NULL;
// threadpool_create(&c->threadpool, 6, 256);
// threadpool_set_ctx(&c->threadpool, c); // Gives the threadpool access to the core
// initialise all subsystems
if (!renderer_init(&g_core.renderer)) {
// FATAL("Failed to start renderer");
ERROR_EXIT("Failed to start renderer\n");
}
if (!input_system_init(&g_core.input, g_core.renderer.window)) {
// the input system needs the glfw window which is created by the renderer
// hence the order here is important
FATAL("Failed to start input system");
ERROR_EXIT("Failed to start input system\n");
}
/*
if (!text_system_init(&c->text)) {
// FATAL("Failed to start text system");
ERROR_EXIT("Failed to start text system\n");
}
if (!screenspace_2d_init(&c->screenspace)) {
// FATAL("Failed to start screenspace 2d plugin");
ERROR_EXIT("Failed to start screenspace 2d plugin\n");
}
*/
INFO("Creating default scene");
scene_init(&g_core.default_scene);
}
#include <glfw3.h>
/* bool should_window_close(core* core) { glfwWindowShouldClose(core->renderer.window); } */
void core_input_update() { input_update(&g_core.input); }
void core_frame_begin(core* core) { render_frame_begin(&core->renderer); }
void core_frame_end(core* core) { render_frame_end(&core->renderer); }
void core_shutdown() {
// threadpool_destroy(&core->threadpool);
input_system_shutdown(&g_core.input);
renderer_shutdown(&g_core.renderer);
}
bool should_exit() {
return key_just_released(KEYCODE_ESCAPE) || glfwWindowShouldClose(g_core.renderer.window);
}
void frame_begin() {
glfwPollEvents();
render_frame_begin(&g_core.renderer);
}
void frame_draw() {}
void frame_end() {
render_frame_end(&g_core.renderer);
}
|