summaryrefslogtreecommitdiff
path: root/src/game/game.hpp
blob: 0bc2da2b745cc91dee448d8cd106f8e83fc11504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
#include "../common.hpp"

namespace game {
	enum {
		ET_UNIT,
		ET_EFFECT,
		ET_DECO
	};

	enum {
		TILE_NONE,
		TILE_DIRT,
		TILE_STONE,
		TILE_WATER
	};

	enum {
		CF_BACKGROUND = 1,
		CF_SOLID      = 2,
		CF_BODY       = 4,
		CF_BODY_SMALL = 8,
		CF_WATER      = 16
	};

	extern size_t selection_cookie;

	void worldgen(world::world_t *world, world::sector_index_t index, world::sector_t *sector,
	              bool gen_tiles, bool gen_decos, void *data);

	namespace assets {
		typedef struct {
			render::oriented_sprite_4M_t head_idle, body_idle;
			render::oriented_sprite_4M_t body_aiming, body_firing;
			render::oriented_sprite_4M2_t legs_idle, legs_walking;
			render::animated_texture_t dead;
		} soldier_assets_t;

		typedef struct {
			render::oriented_sprite_4M_t idle, walking;
			render::animated_texture_t dead;
		} spider_assets_t;

		typedef struct {
			render::animated_texture_t idle, dead;
		} nest_assets_t;

		typedef struct {
			render::animated_texture_t blood;
		} fx_assets_t;

		typedef struct {
			render::animated_texture_t stone, eyething;
			render::animated_texture_t spike, spike_small;
		} deco_assets_t;

		extern soldier_assets_t soldier;
		extern spider_assets_t spider;
		extern nest_assets_t nest;
		extern fx_assets_t fx;
		extern deco_assets_t deco;

		void load(void);
	}

	namespace text {
		typedef enum {
			LANG_ENGLISH,
			LANG_POLISH
		} language_t;

		extern language_t language;

		typedef enum {
			PAUSED,
			UNPAUSED,
			SAY_NO_PATH,
			SAY_BLOCKED,
			SAY_READY,
			SAY_MOVING,
			UNIT_NAME_SPIDER,
			UNIT_NAME_SOLDIER,
			UNIT_NAME_NEST,
			UNIT_DEATH,
			UNIT_ATTACK,
			UNIT_MISS,
			UNIT_CRITICAL_MISS,
			UNIT_CRITICAL_HIT,
			UNIT_DAMAGE
		} index_t;

		std::string get(index_t index);
	}

	class entity_t : public world::entity_t {
	public:
		game::state_t *game = 0;
		v2f_t x;
		rectf_t size, render_size;

		entity_t(game::state_t *game, int type_);
		virtual ~entity_t(void) = 0;
		void destroy(void);

		void place(world::world_t *world);
		void place(world::world_t *world, v2f_t x_);

		bool ignore_waking = false;
		bool awake = false;
		double wake_time = -INFINITY;
		void wake(void);
		void sleep(void);

		virtual void on_think(void) = 0;
		virtual void on_spawn(void) = 0;
		virtual void on_wake(void) = 0;
	};

	class unit_t : public entity_t {
	protected:
		double next_targetting = -INFINITY;
		double last_attack = -INFINITY;

	public:
		size_t selected = 0;

		typedef enum {
			UNIT_SOLDIER,
			UNIT_SPIDER,
			UNIT_NEST
		} type_t;

		type_t type;
		std::string name;

		unit_t(game::state_t *game_, type_t type_);

		bool friendly = false;
		bool controllable = false;

		struct {
			bool moving = false;
			v2f_t dst;
			float angle = 0.0f;

			std::list<v2f_t> path;

			bool blocked;
			size_t attempts_left;
			float next_attempt;
		} move;

		bool keep_moving(double speed);
		bool start_moving(v2f_t dst, world::cflags_t cflags);

		struct {
			size_t armor_class;
			die_t hit_die;
		} cs;

		bool dead = false;
		double death_time = -INFINITY;
		int health = 1, max_health = 1;
		void damage(int points, unit_t *attacker);
		void try_attack(unit_t *target);
		void die(unit_t *killer);
		virtual void on_death() = 0;

		std::string say_text;
		double say_time = -INFINITY;
		void say(std::string str);

		void render_to(render::state_t *render);

	};

	class unit_soldier_t : public unit_t {
		double last_target_time = -INFINITY;
		v2f_t last_target_x;

	public:
		unit_soldier_t(game::state_t *game_);
		~unit_soldier_t(void) {};
		void render_to(render::state_t *render);

		void target_and_attack(void);

		void on_think(void);
		void on_spawn(void) {}; 
		void on_wake(void) {};
		void on_death(void);
	};

	class unit_spider_t : public unit_t {
	public:
		unit_spider_t(game::state_t *game_);
		~unit_spider_t(void) {};
		void render_to(render::state_t *render);

		void target_and_attack(void);

		void on_think(void);
		void on_spawn(void) {};
		void on_wake(void);
		void on_death(void);
	};

	class unit_nest_t : public unit_t {
		double next_spawning = -INFINITY;

	public:
		unit_nest_t(game::state_t *game_);
		~unit_nest_t(void) {};
		void render_to(render::state_t *render);

		void on_think(void);
		void on_spawn(void);
		void on_death(void);
		void on_wake(void) {};
	};

	class effect_t : public game::entity_t {
	public:
		double ttl = +INFINITY;

		effect_t(game::state_t *game_);
		virtual ~effect_t() {};

		void on_think(void);
		void on_spawn(void) {};
		void on_wake(void) {};
	};

	class fx_tracer_t : public effect_t {
		v2f_t x0, x1;

	public:
		fx_tracer_t(game::state_t *game_, v2f_t x0_, v2f_t x1_);
		~fx_tracer_t(void) {};

		void render_to(render::state_t *render);
	};

	class fx_blood_t : public effect_t {
		bool alien;
		v2f_t x;

	public:
		fx_blood_t(game::state_t *game_, v2f_t x_, bool alien_);
		~fx_blood_t(void) {};

		void render_to(render::state_t *render);
	};

	typedef enum {
		DECO_STONE,
		DECO_STONE_SMALL,
		DECO_EYETHING,
		DECO_SPIKE,
		DECO_SPIKE_SMALL
	} deco_type_t;

	class deco_t : public game::entity_t {
		deco_type_t type;

	public:
		double phase_shift;

		deco_t(game::state_t *game, deco_type_t type_);
		void render_to(render::state_t *render);

		void on_think(void) {};
		void on_spawn(void) {};
		void on_wake(void) {};
	};
};