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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
|
/* ----------------------------------------------------------------------------
** The entity stuffs.
**
** Entities.
** --------------------------------------------------------------------------*/
#ifndef ENTITIES_H
#define ENTITIES_H
#define DEBUG
/* ----------------------------------------------------------------------------
** Includes section
** --------------------------------------------------------------------------*/
// local game includes
#include <common.hpp>
#include <quest.hpp>
#include <inventory.hpp>
#include <texture.hpp>
// local library includes
#include <tinyxml2.h>
using namespace tinyxml2;
/* ----------------------------------------------------------------------------
** Structures section
** --------------------------------------------------------------------------*/
/**
* An entity type enumerator for identifying entities.
*/
enum _TYPE {
UNKNOWNT = -999, /**< who knows? */
OBJECTT = -2, /**< an object (Object) */
STRUCTURET, /**< a structure (Structures *) */
PLAYERT, /**< the player (Player *) */
NPCT, /**< an NPC (NPC *) */
MERCHT, /**< a merchant (Merchant *) */
MOBT /**< A mob (Mob *) */
};
/**
* An enumerator for entity gender.
*/
enum GENDER{
MALE, /**< male */
FEMALE /**< female */
};
/**
* An enumerator for strcture types.
* The subtype of a structure will affect how it is drawn and how it functions.
*/
enum BUILD_SUB{
TOWN_HALL = 0, /**< a town hall */
HOUSE, /**< a generic house */
HOUSE2, /**< a generic house of a different style */
HOUSE3, /**< a generic house of a different style */
HOUSE4, /**< a generic house of a different style */
FOUNTAIN, /**< a fountain, creates water particles */
LAMP_POST, /**< a lamppost, creates light */
FIRE_PIT, /**< a firepit, creates fire particles / light */
STALL_MARKET = 70, /**< a stall for a merchant */
STALL_TRADER
};
/**
* A structure for tracking potential trades between the player and a merchant.
*/
struct Trade {
// the names of the items up for trade
std::string item[2];
// how much of each item to trade
int quantity[2];
// constructs a trade with the given values
Trade(int qo, std::string o, int qt, std::string t) {
item[0] = o;
item[1] = t;
quantity[0] = qo;
quantity[1] = qt;
}
// creates an empty trade item
Trade(void) {
item[0] = "";
item[1] = "";
quantity[0] = 0;
quantity[1] = 0;
}
};
typedef struct Trade Trade;
/* ----------------------------------------------------------------------------
** Variables section
** --------------------------------------------------------------------------*/
// the size of the player's inventory
extern const unsigned int PLAYER_INV_SIZE;
// the size of an NPC's inventory
extern const unsigned int NPC_INV_SIZE;
/* ----------------------------------------------------------------------------
** Classes / function prototypes section
** --------------------------------------------------------------------------*/
// a prototype of the world class, necessary for some function prototypes
class World;
/**
* The entity class.
* This class contains common functions and variables for all types of
* entities, i.e. a common structure.
*/
class Entity{
protected:
// an incrementer for invincibility after a hit
unsigned int hitCooldown;
// an incrementer for triggering change of movement with wander()
int ticksToUse;
// entity handles an applied hit (sword) if set true
bool forcedMove;
// if set false, entity will be destroyed
bool alive;
// TODO
float targetx;
// the cooldown display (red overlay)
float hitDuration;
// the max cooldown display
float maxHitDuration;
// the entity's XML element, for saving/loading stuff
XMLElement *xmle;
public:
// contains the entity's coordinates, in pixels
vec2 loc;
float z;
// contains the entity's velocity, in pixels
vec2 vel;
// the entity's width, in pixels
float width;
// the entity's height, in pixels
float height;
// a speed multiplier, applied to velocity
float speed;
// when true player may interact, and the entity's name will be drawn
bool near;
// when true, the entity can move
bool canMove;
// tells direction entity is facing
bool right, left;
// tells if the entity is from another world
char outnabout;
// set to 1 if entity is on the ground, 0 if in the air
unsigned char ground;
// the entity's inventory
Inventory *inv;
// the entity's health
float health;
// the most health the entity can have
float maxHealth;
// the type of the entity
_TYPE type;
// the entity's subtype, if applicable
int subtype;
// the entity's name, randomly generated on spawn
std::string name;
// the entity's gender
GENDER gender;
// a texture handler for the entity
TextureIterator tex;
// draws the entity to the screen
void draw(void);
// spawns the entity at the given coordinates
void spawn(float, float);
// allows the entity to wander, according to what class is deriving this.
virtual void wander(int){}
virtual void wander(void){}
// allows the entity to interact with the player
virtual void interact(void){}
// causes the entity to move to the given x coordinate
void moveTo(float dest_x);
// causes the entity to follow the one provided
void follow(Entity *e);
// causes the entity to take a player-inflicted hit
void takeHit(unsigned int _health, unsigned int cooldown);
// returns the amount of cool down before next hit
unsigned int coolDown();
// set the cool down
void setCooldown(unsigned int c);
// handles hits if they've been taken
void handleHits(void);
// insures that the entity is dead
void die(void);
// checks if the entity is alive
bool isAlive(void) const;
// checks if the entity is hit in some way
bool isHit(void) const;
// returns true if this entity is near the one provided
bool isNear(const Entity *e);
// returns true if the coordinate is within the entity
bool isInside(vec2 coord) const;
// constructs the entity with an XML thing-thang
virtual void createFromXML(XMLElement *e, World *w=nullptr) =0;
// a common constructor, clears variables
Entity(void);
// frees memory taken by the entity
virtual ~Entity(){}
};
class Player : public Entity {
public:
Entity *ride;
QuestHandler qh;
Player();
~Player();
void save(void);
void sspawn(float x,float y);
void createFromXML(XMLElement *e, World *w);
};
class Structures : public Entity {
public:
BUILD_SUB bsubtype;
World *inWorld;
std::string inside;
std::string textureLoc;
Structures();
~Structures();
unsigned int spawn(BUILD_SUB, float, float);
void createFromXML(XMLElement *e, World *w);
};
class NPC : public Entity {
private:
// the number of the random dialog to use
unsigned int randDialog;
unsigned int dialogCount;
public:
int dialogIndex;
NPC();
~NPC();
void drawThingy(void) const;
void addAIFunc(bool preload);
virtual void interact();
virtual void wander(int);
void createFromXML(XMLElement *e, World *w);
};
class Merchant : public NPC {
public:
std::vector<Trade>trade;
uint currTrade;
std::string text[4];
std::string *toSay;
//greeting
//accept
//deny
//farewell
void interact();
Structures *inside;
Merchant();
~Merchant();
void wander(int);
};
class Object : public Entity{
private:
std::string iname;
public:
std::string pickupDialog;
bool questObject = false;
Object();
Object(std::string in,std::string pd);
~Object();
void reloadTexture(void);
void interact(void);
bool operator==(const Object &o) {
return (name == o.name) && (loc == o.loc);
}
void createFromXML(XMLElement *e, World *w);
};
/**
* The light structure, used to store light coordinates and color.
*/
class Light{
public:
vec2 loc; /**< Light location */
Color color; /**< Light color */
float radius; /**< Light radius */
bool belongsTo;
Entity *following;
bool flame;
float fireFlicker;
vec2 fireLoc;
Light(vec2 l, Color c, float r){
loc = l;
color = c;
radius = r;
belongsTo = false;
following = nullptr;
flame = false;
}
void makeFlame(void){
flame = true;
}
void createFromXML(XMLElement *e);
};
/**
* The particle class, handles a single particle.
*/
class Particles{
public:
// the location of the particle
vec2 loc;
float zOffset;
// the width of the particle, in pixels
float width;
// the height of the particle, in pixels
float height;
// the velocity of the particle, in pixels
vec2 vel;
// the color of the particle
Color color;
// TODO
vec2 index;
// the amount of milliseconds left for the particle to live
float duration;
// when true, the particle will move
bool canMove;
// TODO
bool fountain;
// when true, the particle will be affected by gravity
bool gravity;
// when true, draws the particle behind structures
bool behind;
// when true, the particle will bounce on impact with ground
bool bounce;
Structures *stu;
Particles(void){}
// creates a particle with the desired characteristics
Particles(float x, float y, float w, float h, float vx, float vy, Color c, float d);
// allows the particle to be destroyed
~Particles(void){}
// draws the particle
void draw(GLfloat*& p) const;
// updates a particle
void update(float _gravity, float ground_y);
// returns true if the particle should be killed
bool timeUp(void);
};
#include <mob.hpp>
constexpr Object *Objectp(Entity *e) {
return (Object *)e;
}
constexpr NPC *NPCp(Entity *e) {
return (NPC *)e;
}
constexpr Structures *Structurep(Entity *e) {
return (Structures *)e;
}
constexpr Merchant *Merchantp(Entity *e) {
return (Merchant *)e;
}
#endif // ENTITIES_H
/**
ENTITY TYPES
-1 STRUCTURES
|->1 Village
|->2 Castle
|
0 PLAYERS
|->Player
|
1 NPCS
|->0 Base
|->1 Merchant
|
2 MOBS
|->1 Rabbit
|->2 Bird
**/
|