2022-01-19 16:43:21 -06:00
|
|
|
#include "engine.h"
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2022-02-04 11:36:24 -06:00
|
|
|
#define STB_DS_IMPLEMENTATION
|
2022-02-07 08:50:34 -06:00
|
|
|
#include <stb_ds.h>
|
2022-02-04 11:36:24 -06:00
|
|
|
|
2022-06-30 10:31:23 -05:00
|
|
|
#define STB_TRUETYPE_IMPLEMENTATION
|
|
|
|
#include <stb_truetype.h>
|
2022-06-21 12:48:19 -05:00
|
|
|
|
2022-07-03 00:43:42 -05:00
|
|
|
#define STB_IMAGE_IMPLEMENTATION
|
2022-11-17 16:48:20 -06:00
|
|
|
#define STBI_FAILURE_USERMSG
|
2022-07-03 00:43:42 -05:00
|
|
|
#include "stb_image.h"
|
|
|
|
|
2023-01-04 18:09:42 -06:00
|
|
|
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
|
|
|
#include "stb_image_write.h"
|
|
|
|
|
2022-06-23 02:34:51 -05:00
|
|
|
#define PL_MPEG_IMPLEMENTATION
|
|
|
|
#include <pl_mpeg.h>
|
|
|
|
|
2023-01-04 18:09:42 -06:00
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
#ifdef EDITOR
|
|
|
|
#include "editor.h"
|
|
|
|
#endif
|
|
|
|
|
2022-02-06 10:14:57 -06:00
|
|
|
#include "render.h"
|
|
|
|
|
2021-11-30 21:29:18 -06:00
|
|
|
#include "openglrender.h"
|
|
|
|
#include "window.h"
|
|
|
|
#include "camera.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "sprite.h"
|
|
|
|
#include "2dphysics.h"
|
|
|
|
#include "gameobject.h"
|
2022-01-19 16:43:21 -06:00
|
|
|
#include "log.h"
|
|
|
|
#include "resources.h"
|
2022-02-06 10:14:57 -06:00
|
|
|
#include "timer.h"
|
|
|
|
#include "script.h"
|
2022-08-26 09:19:17 -05:00
|
|
|
|
2022-02-06 10:14:57 -06:00
|
|
|
#include "sound.h"
|
2022-01-19 16:43:21 -06:00
|
|
|
|
|
|
|
#include "engine.h"
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2022-02-06 10:14:57 -06:00
|
|
|
void error_callback(int error, const char *description)
|
2021-11-30 21:29:18 -06:00
|
|
|
{
|
2022-02-06 10:14:57 -06:00
|
|
|
fprintf(stderr, "Error: %s\n", description);
|
2022-11-18 12:03:07 -06:00
|
|
|
YughError("GLFW Error: %s", description);
|
2022-02-06 10:14:57 -06:00
|
|
|
}
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2022-02-06 10:14:57 -06:00
|
|
|
void engine_init()
|
|
|
|
{
|
2022-06-22 23:04:35 -05:00
|
|
|
glfwSetErrorCallback(error_callback);
|
2022-02-06 10:14:57 -06:00
|
|
|
/* Initialize GLFW */
|
|
|
|
if (!glfwInit()) {
|
2022-11-23 17:29:50 -06:00
|
|
|
YughError("Could not init GLFW. Exiting.");
|
|
|
|
exit(1);
|
2022-01-19 16:43:21 -06:00
|
|
|
}
|
2022-06-22 23:04:35 -05:00
|
|
|
|
2022-02-01 14:50:25 -06:00
|
|
|
resources_init();
|
2023-01-02 07:55:26 -06:00
|
|
|
|
|
|
|
YughInfo("Starting scripts ...");
|
2022-02-01 14:50:25 -06:00
|
|
|
script_init();
|
2021-11-30 21:29:18 -06:00
|
|
|
|
2023-01-02 07:55:26 -06:00
|
|
|
YughInfo("Starting physics ...");
|
2021-11-30 21:29:18 -06:00
|
|
|
phys2d_init();
|
|
|
|
|
2023-01-02 07:55:26 -06:00
|
|
|
YughInfo("Starting sound ...");
|
2023-02-28 17:03:28 -06:00
|
|
|
sound_init();
|
2022-02-06 10:14:57 -06:00
|
|
|
}
|