]> git.lizzy.rs Git - dungeon_game.git/blob - plugins/game/game.h
21a94339eb0969bf680f1bd4ba4e4ac6e773b3d2
[dungeon_game.git] / plugins / game / game.h
1 #ifndef _GAME_H_
2 #define _GAME_H_
3
4 #include <stdbool.h>
5 #include <sys/ioctl.h>
6 #include <stddef.h>
7 #include <time.h>
8 #define MAP_HEIGHT 1000
9 #define MAP_WIDTH 1000
10 #define LIGHT 10
11
12 /* Type definitions */
13
14 struct color
15 {
16         unsigned char r, g, b;
17 };
18
19 struct material
20 {
21         bool solid;
22         struct color color;
23 };
24
25 struct node
26 {
27         struct material *material;
28 };
29
30 struct entity_step_data
31 {
32         double dtime;
33         int dx;
34         int dy;
35         bool visible;
36 };
37
38 struct entity
39 {
40         char *name;
41         int x, y;
42         struct color color;
43         bool use_color;
44         char *texture;
45         bool remove;
46         void *meta;
47         int health;
48         int max_health;
49         bool collide_with_entities;
50
51         void (*on_step)(struct entity *self, struct entity_step_data stepdata);
52         void (*on_collide)(struct entity *self, int x, int y);
53         void (*on_collide_with_entity)(struct entity *self, struct entity *other);
54         void (*on_spawn)(struct entity *self, void *data);
55         void (*on_remove)(struct entity *self);
56         void (*on_death)(struct entity *self);
57         void (*on_damage)(struct entity *self, int damage);
58 };
59
60 struct list
61 {
62         void *element;
63         struct list *next;
64 };
65
66 struct generator_function
67 {
68         int chance;
69         void (*callback)(int x, int y);
70 };
71
72 struct input_handler
73 {
74         bool run_if_dead;
75         void (*callback)();
76 };
77
78 struct globalstep
79 {
80         bool run_if_dead;
81         void (*callback)(double dtime);
82 };
83
84 enum direction
85 {
86         UP,
87         LEFT,
88         DOWN,
89         RIGHT,
90 };
91
92 extern struct color black;
93
94 extern struct material wall;
95 extern struct material air;
96 extern struct material outside;
97
98 extern struct node map[MAP_WIDTH][MAP_HEIGHT];
99
100 extern struct entity player;
101 extern struct list *entities;
102
103 extern struct entity *entity_collision_map[MAP_WIDTH][MAP_HEIGHT];
104
105 struct color get_color(const char *str);
106 void set_color(struct color color, bool bg);
107 void light_color(struct color *color, double light);
108 void mix_color(struct color *color, struct color other, double ratio);
109 void dir_to_xy(enum direction dir, int *x, int *y);
110 struct list *add_element(struct list *list, void *element);
111 int clamp(int v, int max, int min);
112 int max(int a, int b);
113 int min(int a, int b);
114 void *make_buffer(void *ptr, size_t size);
115 double calculate_dtime(struct timespec from, struct timespec to);
116 void get_roman_numeral(int number, char **ptr, size_t *len);
117
118 void quit();
119 bool player_dead();
120
121 struct node get_node(int x, int y);
122 bool is_outside(int x, int y);
123 bool is_solid(int x, int y);
124
125 bool spawn(struct entity def, int x, int y, void *data);
126 bool move(struct entity *entity, int xoff, int yoff);
127 void add_health(struct entity *entity, int health);
128
129 void register_air_function(struct generator_function func);
130 void register_input_handler(unsigned char c, struct input_handler handler);
131 void register_render_component(void (*callback)(struct winsize ws));
132 void register_globalstep(struct globalstep step);
133
134 #endif