root / proj / include / ent.h @ 339
History | View | Annotate | Download (3.63 KB)
1 |
#ifndef ENT_H_INCLUDED
|
---|---|
2 |
#define ENT_H_INCLUDED
|
3 |
|
4 |
/**
|
5 |
* @defgroup ent ent
|
6 |
* @brief Entities module
|
7 |
*
|
8 |
* @{
|
9 |
*/
|
10 |
|
11 |
#include "basic_sprite.h" |
12 |
#include "list.h" |
13 |
|
14 |
void (ent_set_scale) (double n); |
15 |
void (ent_set_origin)(double x, double y); |
16 |
|
17 |
double (ent_get_scale) (void); |
18 |
double (ent_get_XLength)(void); |
19 |
double (ent_get_YLength)(void); |
20 |
|
21 |
/**
|
22 |
* @}
|
23 |
*/
|
24 |
|
25 |
/**
|
26 |
* @defgroup gunner_t gunner_t
|
27 |
* @ingroup ent
|
28 |
* @brief Gunner module.
|
29 |
*
|
30 |
* @{
|
31 |
*/
|
32 |
|
33 |
#define GUNNER_MELEE BIT(0) |
34 |
#define GUNNER_RANGED BIT(1) |
35 |
#define GUNNER_PLAYER BIT(2) |
36 |
#define GUNNER_FOLLOW BIT(3) |
37 |
|
38 |
typedef struct gunner gunner_t; |
39 |
gunner_t* (gunner_ctor)(basic_sprite_t *dude, basic_sprite_t *weapon, uint16_t type, int team);
|
40 |
void (gunner_dtor)(gunner_t *p);
|
41 |
void (gunner_set_pos) (gunner_t *p, double x, double y); |
42 |
void (gunner_set_spawn) (gunner_t *p, double x, double y); |
43 |
void (gunner_set_angle) (gunner_t *p, double angle ); |
44 |
void (gunner_set_health) (gunner_t *p, double health); |
45 |
void (gunner_set_curr_health) (gunner_t *p, double health); |
46 |
double (gunner_get_x) (const gunner_t *p); |
47 |
double (gunner_get_y) (const gunner_t *p); |
48 |
double (gunner_get_spawn_x) (const gunner_t *p); |
49 |
double (gunner_get_spawn_y) (const gunner_t *p); |
50 |
double (gunner_get_angle) (const gunner_t *p); |
51 |
double (gunner_get_health) (const gunner_t *p); |
52 |
double (gunner_get_curr_health) (const gunner_t *p); |
53 |
int16_t (gunner_get_x_screen) (const gunner_t *p);
|
54 |
int16_t (gunner_get_y_screen) (const gunner_t *p);
|
55 |
uint16_t (gunner_get_type) (const gunner_t *p);
|
56 |
int (gunner_get_team) (const gunner_t *p); |
57 |
void (gunner_draw)(gunner_t *p);
|
58 |
void (gunner_draw_health)(const gunner_t *p); |
59 |
void (gunner_draw_list)(list_t *shooter_list);
|
60 |
double (gunner_distance)(const gunner_t *p1, const gunner_t *p2); |
61 |
int (gunner_collides_gunner)(const gunner_t *shooter1, const gunner_t *shooter2); |
62 |
|
63 |
/**
|
64 |
* @}
|
65 |
*/
|
66 |
|
67 |
/**
|
68 |
* @defgroup bullet_t bullet_t
|
69 |
* @ingroup ent
|
70 |
* @brief Bullet module.
|
71 |
*
|
72 |
* @{
|
73 |
*/
|
74 |
|
75 |
typedef struct bullet bullet_t; |
76 |
bullet_t* (bullet_ctor)(const gunner_t *shooter, const basic_sprite_t *b, double x, double y, double vx, double vy); |
77 |
void (bullet_dtor)(bullet_t *p);
|
78 |
double (bullet_get_x) (const bullet_t *p); |
79 |
double (bullet_get_y) (const bullet_t *p); |
80 |
double (bullet_get_vx) (const bullet_t *p); |
81 |
double (bullet_get_vy) (const bullet_t *p); |
82 |
int16_t (bullet_get_x_screen)(const bullet_t *p);
|
83 |
int16_t (bullet_get_y_screen)(const bullet_t *p);
|
84 |
double (bullet_get_damage) (const bullet_t *p); |
85 |
void (bullet_set_damage) (bullet_t *p, double damage); |
86 |
const gunner_t* (bullet_get_shooter)(const bullet_t *p); |
87 |
void (bullet_update_movement)(bullet_t *p);
|
88 |
void (bullet_update_movement_list)(list_t *bullet_list);
|
89 |
void (bullet_draw)(bullet_t *p);
|
90 |
void (bullet_draw_list)(list_t *bullet_list);
|
91 |
|
92 |
/**
|
93 |
* @}
|
94 |
*/
|
95 |
|
96 |
/**
|
97 |
* @defgroup map_t map_t
|
98 |
* @ingroup ent
|
99 |
* @brief Bullet module.
|
100 |
*
|
101 |
* @{
|
102 |
*/
|
103 |
|
104 |
typedef struct map map_t; |
105 |
map_t* (map_ctor)(const char *const *background, const char *const *collide); |
106 |
void (map_dtor)(map_t *p);
|
107 |
uint16_t (map_get_width) (const map_t *p);
|
108 |
uint16_t (map_get_height) (const map_t *p);
|
109 |
int (map_make_dijkstra)(map_t *p, double x_, double y_); |
110 |
int (map_where_to_follow)(const map_t *p, double x, double y, double *theta); |
111 |
void (map_draw)(map_t *p);
|
112 |
int (map_collides_point)(const map_t *p, double x, double y); |
113 |
|
114 |
/**
|
115 |
* @}
|
116 |
*/
|
117 |
|
118 |
int (map_collides_gunner)(const map_t *p, const gunner_t *gunner); |
119 |
int (map_collides_bullet)(const map_t *p, const bullet_t *bullet); |
120 |
int (gunner_collides_bullet)(const gunner_t *shooter, const bullet_t *bull); |
121 |
|
122 |
#endif //ENT_H_INCLUDED |