From 5f0fce4191309e9526b7109a0d87c092ce6a4193 Mon Sep 17 00:00:00 2001 From: jacopo grandi Date: Thu, 18 Feb 2021 14:14:23 +0100 Subject: main --- gst/units.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 gst/units.h (limited to 'gst/units.h') diff --git a/gst/units.h b/gst/units.h new file mode 100644 index 0000000..86f7fd7 --- /dev/null +++ b/gst/units.h @@ -0,0 +1,40 @@ +#ifndef UNITS_H +#define UNITS_H + +#define MAXUNITS 128 +#define MAXSOLVESTEPS 128 + +#include + +typedef struct unit_ { + float pos[2]; + int gridpos[2]; + info_unit info; + int owner; + float hp; + float move_points; + float cooldown[8]; + float charge; +} unit; + +typedef struct army_ { + unit us[MAXUNITS]; + unit **grid; + int uslen; + int sx, sy; +} army; + + +#include + +void unit_init (infos *info, army *ar, map *m, + int x, int y, info_unit *iu, int owner, unit *u); +void unit_remove (army *ar, map *m, unit *u); +void army_grid_init(army *ar); +void army_init (army *ar, map *m); +void army_destory(army *ar); +void army_spawn (army *ar, map *m, unit u); +void army_move (infos *info, army *ar, map *m); +void army_fire (infos *info, army *ar, map *m); + +#endif \ No newline at end of file -- cgit v1.2.3-54-g00ecf