2023-10-10 18:01:15 +00:00
|
|
|
|
|
|
|
#ifndef TC_STATE_H
|
|
|
|
#define TC_STATE_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
|
2023-10-11 13:01:54 +00:00
|
|
|
#include "assets.h"
|
2023-10-10 18:01:15 +00:00
|
|
|
#include "shaders.h"
|
2023-10-10 19:23:07 +00:00
|
|
|
#include "blocks.h"
|
2023-10-11 08:10:06 +00:00
|
|
|
#include "world.h"
|
|
|
|
#include "utility.h"
|
2023-10-10 18:01:15 +00:00
|
|
|
|
|
|
|
typedef struct tc_camera
|
|
|
|
{
|
|
|
|
tc_vec3_s position;
|
|
|
|
tc_vec3_s rotation;
|
|
|
|
float fov;
|
|
|
|
|
|
|
|
} tc_camera_s;
|
|
|
|
|
|
|
|
typedef struct tc_renderer
|
|
|
|
{
|
|
|
|
tc_camera_s active_camera;
|
|
|
|
tc_shader_program_s draw_shader;
|
|
|
|
|
|
|
|
SDL_Window *window;
|
|
|
|
SDL_GLContext gl_context;
|
|
|
|
|
|
|
|
} tc_renderer_s;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
tc_renderer_s renderer;
|
2023-10-11 13:01:54 +00:00
|
|
|
tc_asset_storage_s asset_storage;
|
2023-10-10 19:23:07 +00:00
|
|
|
tc_block_registry_s block_registry;
|
2023-10-11 08:10:06 +00:00
|
|
|
tc_world_s main_world;
|
2023-10-10 18:01:15 +00:00
|
|
|
|
2023-10-11 13:01:54 +00:00
|
|
|
tc_image_s *block_texture_atlas;
|
|
|
|
|
2023-10-10 18:01:15 +00:00
|
|
|
} techneck_s;
|
|
|
|
|
|
|
|
extern techneck_s tc_game_state_g;
|
|
|
|
|
2023-10-12 06:18:43 +00:00
|
|
|
void tc_init ();
|
|
|
|
void tc_cleanup ();
|
|
|
|
|
|
|
|
void tc_load_textures ();
|
2023-10-10 18:01:15 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|