blob: 4b3bd1b8ec9bb608604d5e6847ceed6fec25ab8b (
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
|
#include "core.h"
#include <stdlib.h>
#include "log.h"
#include "render.h"
#include "render_types.h"
#include "threadpool.h"
#define SCR_WIDTH 1000
#define SCR_HEIGHT 1000
core* core_bringup() {
INFO("Initiate Core bringup");
core* c = malloc(sizeof(core));
renderer_config conf = { .window_name = { "Celeritas Engine Core" },
.scr_width = SCR_WIDTH,
.scr_height = SCR_HEIGHT,
.clear_colour = (vec3){ .08, .08, .1 } };
c->renderer.config = conf;
c->renderer.backend_state = 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(&c->renderer)) {
// FATAL("Failed to start renderer");
ERROR_EXIT("Failed to start renderer\n");
}
if (!input_system_init(&c->input, c->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");
}
*/
c->models = model_darray_new(10);
return c;
}
|