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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
|
#ifndef WORLD_H
#define WORLD_H
/**
* @file world.hpp
* @brief The world system
*/
// local game includes
#include <common.hpp>
#include <entities.hpp>
#include <coolarray.hpp>
/**
* The background type enum.
* This enum contains all different possibilities for world backgrounds; used
* in World::setBackground() to select the appropriate images.
*/
enum class WorldBGType : unsigned int {
Forest, /**< A forest theme. */
WoodHouse /**< An indoor wooden house theme. */
};
/**
* The weather type enum.
* This enum contains every type of weather currently implemented in the game.
* Weather is set by the world somewhere.
*/
enum class WorldWeather : unsigned char {
Sunny = 0, /**< Sunny/daytime */
Dark, /**< Nighttime */
Rain, /**< Rain */
Snowy /**< Snow */
};
/**
* The line structure.
* This structure is used to store the world's ground, stored in vertical
* lines. Dirt color and grass properties are also kept track of here.
*/
typedef struct {
bool grassUnpressed; /**< squishes grass if false */
float grassHeight[2]; /**< height of the two grass blades */
float groundHeight; /**< height of the 'line' */
unsigned char groundColor; /**< a value that affects the ground's color */
} WorldData;
/**
* Contains info necessary for switching worlds.
* This pair contains a pointer to the new world, and the new set of
* coordinates the player should be at in that world.
*/
typedef std::pair<World *, vec2> WorldSwitchInfo;
/**
* Alters how bright world elements are drawn.
* This value is based off of the current time of day (tick count), set in
* main.cpp.
*/
extern int worldShade;
/**
* The file path to the currently loaded XML file.
*/
extern std::string currentXML;
/**
* Defines how many game ticks it takes to go from day to night or vice versa.
*/
constexpr const unsigned int DAY_CYCLE = 12000;
/**
* Defines the velocity of player when moved by the keyboard
*/
constexpr const float PLAYER_SPEED_CONSTANT = 0.15f;
/**
* Defines the strongest pull gravity can have on an entity.
* This is the most that can be subtracted from an entity's velocity in one
* game tick.
*/
constexpr const float GRAVITY_CONSTANT = 0.001f;
/**
* Defines the thickness of the floor in an indoor world.
*/
constexpr const unsigned int INDOOR_FLOOR_THICKNESS = 50;
/**
* Defines how far each floor can be from the next (height).
*/
constexpr const unsigned int INDOOR_FLOOR_HEIGHTT = 400;
/**
* Gets a combined height of the floor and the area before it.
* This value is commonly used for operations like moving between floors.
*/
constexpr const unsigned int INDOOR_FLOOR_HEIGHT = (INDOOR_FLOOR_HEIGHTT + INDOOR_FLOOR_THICKNESS);
/**
* The village class.
* This class defines an area in a world that is considered to be a village,
* and provides a welcome message when the player enters the area.
*/
class Village {
public:
/**
* The name of the village.
*/
std::string name;
/**
* The start and end coordinates of the village.
*/
vec2 start, end;
/**
* A "player in village" flag.
* This flag is used to trigger displaying the welcome message.
*/
bool in;
/**
* Constructs a village with the given name, inside the given world.
*/
Village(std::string meme, World *w);
/**
* Destructs the village.
*/
~Village(void){}
};
/**
* The world class.
* This class handles entity creation, management, and deletion. Most
* world-related operations have to be done through this class, such as
* drawing.
*/
class World {
protected:
/**
* An array of all the world's ground data, populated through
* World::generate().
*
* @see generate()
*/
std::vector<WorldData> worldData;
/**
* Contains the current state of weather in the world.
*/
WorldWeather weather;
/**
* Contains the size of the 'worldData' array.
*/
unsigned int lineCount;
/**
* The starting x-coordinate of the world.
*/
float worldStart;
/**
* Handles textures for the background elements.
*/
TextureIterator bgTex;
/**
* Defines the set of background images being used for the world.
*
* @see setBackground()
*/
WorldBGType bgType;
/**
* SDL_Mixer's object for the loaded BGM.
*/
Mix_Music *bgmObj;
/**
* The filename of the world's BGM file.
*
* @see setBGM()
*/
std::string bgm;
/**
* The path to the XML file of the world to the left.
*
* @see setToLeft()
*/
std::string toLeft;
/**
* The path to the XML file of the world to the right.
*
* @see setToRight()
*/
std::string toRight;
/**
* A vector of paths for the structure textures.
* The appearance of structures depends on the world's theme.
*
* @see setStyle()
*/
std::vector<std::string> sTexLoc;
/**
* The paths of files to be used for the background textures.
*
* @see setStyle()
*/
std::vector<std::string> bgFiles;
/**
* The paths of files to be used for the indoor background textures.
*
* @see setStyle()
*/
std::vector<std::string> bgFilesIndoors;
/**
* Contains randomly generated coordinates for stars.
*/
std::vector<vec2> star;
/**
* A vector of all light elements in the world.
*
* @see addLight()
* @see getLastLight()
*/
std::vector<Light> light;
/**
* A vector of all mobs in the world.
*
* @see addMob()
* @see getLastMob()
* @see getNearMob()
*/
std::vector<Mob *> mob;
/**
* A vector of all objects in the world.
*
* @see addObject()
*/
std::vector<Object> object;
/**
* A vector of all particles in the world.
*
* @see addParticle()
*/
CoolArray<Particles> particles;
/**
* A vector of all structures in the world.
*
* @see addStructure()
* @see getStructurePos()
*/
/**
* A vector of all villages in the world.
*
* @see addVillage()
*/
std::vector<Village> village;
/**
* Handles death, gravity, etc. for a single entity
*/
virtual void singleDetect(Entity *e);
/**
* Destroys entities and clears vectors that contain them.
* This function is only called in the world destructor.
*/
void deleteEntities(void);
/**
* Draws background textures.
*/
void drawBackgrounds();
public:
std::vector<Structures *> build;
/**
* A vector of pointers to all entities from the other vectors.
* This is used to mass-manage entities, or operate on entities
* outside of what the world does.
*
* @see getNearInteractable()
*/
std::vector<Entity *> entity;
/**
* A vector of all NPCs in the world.
*
* @see addNPC()
*/
std::vector<NPC *> npc;
/**
* A vector of all merchants in the world.
*
* @see addMerchant()
*/
std::vector<Merchant *> merchant;
/**
* Constructs the world, resets variables.
*/
World(void);
/**
* Destructs the world, frees memory.
*/
virtual ~World(void);
/**
* Generates a world of the specified width.
* This will populate the 'worldData' array and create star coordinates.
* It's necessary to call this function to actually use the world.
*/
void generate(int width);
/**
* Draws everything the world handles to the screen (and the player).
* Drawing is based off of the player so that off-screen elements are not
* drawn.
*/
virtual void draw(Player *p);
/**
* Handles physics for all entities and the player.
*
* @see singleDetect()
*/
void detect(Player *p);
/**
* Updates entity positions, time of day, and music.
*/
void update(Player *p, unsigned int delta, unsigned int ticks);
/**
* Gets the width of the world, presumably in pixels.
* TODO
*/
int getTheWidth(void) const;
/**
* Gets the starting x-coordinate of the world.
*
* @see worldStart
*/
float getWorldStart(void) const;
/**
* Gets a pointer to the most recently created light.
* This is used to update properties of the light outside of the
* world class.
*/
Light *getLastLight(void);
/**
* Gets a pointer ot the most recently created mob.
* This is used to update properties of the mob outside of the
* world class.
*/
Mob *getLastMob(void);
/**
* Finds the entity nearest to the provided one.
*/
Entity *getNearInteractable(Entity &e);
/**
* Finds the mob nearest to the given entity.
*/
Mob *getNearMob(Entity &e);
/**
* Gets the coordinates of the `index`th structure.
*/
vec2 getStructurePos(int index);
/**
* Gets the texture path of the `index`th structure
*/
std::string getSTextureLocation(unsigned int index) const;
// saves the world's data to an XML file
void save(void);
// plays/pauses the world's music, according to if a new world is being entered
void bgmPlay(World *prev) const;
// sets and loads the specified BGM
void setBGM(std::string path);
// sets the world's background theme
void setBackground(WorldBGType bgt);
// sets the folder to collect entity textures from
void setStyle(std::string pre);
// gets the string that represents the current weather
std::string getWeatherStr(void) const;
const WorldWeather& getWeatherId(void) const;
// sets / gets pathnames of XML files for worlds to the left and right
std::string setToLeft(std::string file);
std::string setToRight(std::string file);
std::string getToLeft(void) const;
std::string getToRight(void) const;
// attempts to enter the left/right adjacent world, returning either that world or this
WorldSwitchInfo goWorldLeft(Player *p);
WorldSwitchInfo goWorldRight(Player *p);
/**
* Attempts to move an NPC to the left adjacent world, returning true on success.
*/
bool goWorldLeft(NPC *e);
/**
* Attempts to move an NPC to the world to the right, returning true on success.
*/
bool goWorldRight(NPC *e);
// attempts to enter a structure that the player would be standing in front of
WorldSwitchInfo goInsideStructure(Player *p);
/**
* Adopts an NPC from another world, taking its ownership.
*/
void adoptNPC(NPC *e);
/**
* Adopts a mob from another world, taking its ownership.
*/
void adoptMob(Mob *e);
// adds a hole at the specified start and end x-coordinates
void addHole(unsigned int start,unsigned int end);
// adds a hill that peaks at the given coordinate and is `width` HLINEs wide
void addHill(ivec2 peak, unsigned int width);
// functions to add entities to the world
void addLight(vec2 xy, float radius, Color color);
void addMerchant(float x, float y, bool housed);
void addMob(Mob *m, vec2 coord);
void addNPC(NPC *n);
void addObject(std::string in, std::string pickupDialog, float x, float y);
void addParticle(float x, float y, float w, float h, float vx, float vy, Color color, int dur);
void addParticle(float x, float y, float w, float h, float vx, float vy, Color color, int dur, unsigned char flags);
void addStructure(Structures *s);
Village *addVillage(std::string name, World *world);
};
/**
* IndoorWorld - Indoor settings stored in a World class
*/
class IndoorWorld : public World {
private:
// like lines, but split into floors
std::vector<std::vector<float>> floor;
// the x coordinate to start each floor at
std::vector<float> fstart;
// handles physics for a single entity
void singleDetect(Entity *e);
public:
// creates an IndoorWorld object
IndoorWorld(void);
// frees memory used by this object
~IndoorWorld(void);
// adds a floor of the desired width
void addFloor(unsigned int width);
// adds a floor at the desired x coordinate with the given width
void addFloor(unsigned int width, unsigned int start);
// attempts to move the entity provided to the given floor
bool moveToFloor(Entity *e, unsigned int _floor);
// checks for a floor above the given entity
bool isFloorAbove(Entity *e);
// checks for a floor below the given entity
bool isFloorBelow(Entity *e);
// draws the world about the player
void draw(Player *p);
};
/**
* The arena class - creates an arena.
*
* This world, when created, expects a pointer to a Mob. This mob will be
* transported to a temporary world with the player, and the Mob will be
* killed upon exiting the arena.
*/
class Arena : public World {
private:
// the mob that the player is fighting
Mob *mmob;
public:
// creates the arena with the world being left for it
Arena(void);
// frees memory
~Arena(void);
// starts a new fight??
void fight(World *leave, const Player *p, Mob *m);
// attempts to exit the arena, returning what world the player should be in
WorldSwitchInfo exitArena(Player *p);
};
/**
* Constructs an XML object for accessing/modifying the current world's XML
* file.
*/
const XMLDocument& loadWorldXML(void);
/**
* Loads the player into the world created by the given XML file. If a world is
* already loaded it will be saved before the transition is made.
*/
World *loadWorldFromXML(std::string path);
/**
* Loads the player into the XML-scripted world, but does not save data from the
* previous world if one was loaded.
*/
World *loadWorldFromXMLNoSave(std::string path);
/**
* Loads a world using a pointer to the current world (used for loading adjacent
* worlds that have already been read into memory.
*/
World *loadWorldFromPtr(World *ptr);
/**
* Casts a normal world to an indoor world, to access IndoorWorld-exclusive
* elements.
*/
constexpr IndoorWorld *Indoorp(World *w)
{
return (IndoorWorld *)w;
}
#endif // WORLD_H
|