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
|
/** @file world.h
* @brief The world system.
*
* This file contains the classes and variables necessary to create an in-game
* world.
*/
#ifndef WORLD_H
#define WORLD_H
#include <common.hpp>
#include <entities.hpp>
#define GROUND_HEIGHT_INITIAL 80
#define GROUND_HEIGHT_MINIMUM 60
#define GROUND_HEIGHT_MAXIMUM 110
#define GROUND_HILLINESS 10
#define PLAYER_SPEED_CONSTANT 0.15f
/**
* Gravity thing
*/
#define GRAVITY_CONSTANT 0.001f
/**
* Defines how many game ticks it takes for a day to elapse.
*/
#define DAY_CYCLE 12000
#define Indoorp(x) ((IndoorWorld *)x)
/**
* 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 char {
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;
float grassHeight[2];
float groundHeight;
unsigned char groundColor;
} WorldData;
/**
* A value used by World::draw() for shading, ranges from -50 to 50 depending
* on the current time of day.
*/
extern int worldShade;
/**
* The path to the currently loaded XML file.
*/
extern std::string currentXML;
// prototype so Village can reference it
class World;
/**
* 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 follow(Entity *f){
following=f;
belongsTo = true;
}
};
/**
* The village class, used to group structures into villages.
*/
class Village {
public:
std::string name;
vec2 start;
vec2 end;
bool in;
Village(const char *meme, World *w);
~Village(void){}
};
/**
* The world class. This class does everything a world should do.
*/
class World {
protected:
/**
* The line array.
*
* This array is created through 'new' in World::generate(), with an amount
* of elements provided by the function.
*/
std::vector<WorldData> worldData;
/**
* Starting x coordinate.
*
* This x value is the point at which line[0] should reside, can be used to
* calculate the width of the world.
*/
int worldStart;
/**
* Handle physics for a single entity.
*
* This function handles gravity and death for an entity. The public version
* of this, World::detect(), handles all entities in the world as well as
* the player. World::singleDetect() should never be used outside of
* World::detect(), which is why it is declared private.
*/
virtual void singleDetect(Entity *e);
/**
* Empties all entity vectors.
*
* Each entity vector is iterated through, calling delete for each entry.
* Once all specific vectors are cleared, the general entity vector is
* emptied of the pointers to those other vectors. This function should only
* be called in World's destructor, as there shouldn't be another reason to
* call this function.
*/
void deleteEntities(void);
/**
* Number of lines in the world.
*
* While this number is helpful for knowing the world's width, it is kept
* private for security reasons. To compensate for this,
* World::getTheWidth() is provided (see below).
*/
unsigned int lineCount;
/**
* An array of star coordinates.
*/
std::vector<vec2> star;
/**
* The Texturec object that holds the background sprites for this world.
*/
Texturec *bgTex;
/**
* Defines the set of background images that should be used for this world.
*/
WorldBGType bgType;
/**
* The Mix_Music object that holds the background soundtrack for the world.
*/
Mix_Music *bgmObj;
/**
* The file path of the song wished to be loaded by bgmObj.
*/
std::string bgm;
std::vector<std::string> bgFiles;
std::vector<std::string> bgFilesIndoors;
/**
* The filename of the XML file for the world to the left; NULL if no world
* is present.
*/
std::string toLeft;
/**
* The filename of the XML file for the world to the right; NULL if no world
* is present.
*/
std::string toRight;
/**
* Vector of all building textures for the current world style
*/
std::vector<std::string> sTexLoc;
std::vector<Light> light;
std::vector<Village> village;
std::vector<Particles> particles;
std::vector<Object> object;
std::vector<Mob *> mob;
std::vector<Structures *> build;
public:
Light *getLastLight(void);
Mob *getLastMob(void);
Entity *getNearInteractable(Entity e);
vec2 getStructurePos(int index);
std::string getSTextureLocation(unsigned int index) const;
/**
* These handle accessing/modifying pathnames for worlds linked to the left
* and right of this one.
*/
std::string setToLeft(std::string file);
std::string setToRight(std::string file);
std::string getToLeft(void) const;
std::string getToRight(void) const;
/**
* A vector of pointers to every NPC, Structure, Mob, and Object in this
* world.
*/
std::vector<Entity *> entity;
std::vector<NPC *> npc;
std::vector<Merchant *> merchant;
/**
* NULLifies pointers and allocates necessary memory. This should be
* followed by some combination of setBackground(), setBGM(), or
* generate().
*/
World(void);
/**
* Frees resources taken by the world.
*/
virtual ~World(void);
void addLight(vec2 xy, Color color);
void addMerchant(float x, float y, bool housed);
void addMob(int type,float x,float y);
void addMob(int t,float x,float y,void (*hey)(Mob *));
void addNPC(float x,float y);
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 d);
void addParticle(float x, float y, float w, float h, float vx, float vy, Color color, int d, unsigned char flags);
void addStructure(BUILD_SUB subtype,float x,float y, std::string tex, std::string inside);
Village *addVillage(std::string name, World *world);
/**
* Updates the coordinates of everything in the world that has coordinates
* and a velocity. The provided delta time is used for smoother updating.
*/
void update(Player *p, unsigned int delta);
/**
* Generate a world of the provided width. Worlds are drawn centered on the
* y-axis, so the reachable coordinates on the world would be from negative
* half-width to positive half-width.
*/
void generate(unsigned int width);
/**
* Sets the background theme, collecting the required textures into a
* Texturec object.
*/
void setBackground(WorldBGType bgt);
/**
* Sets the background music for the world, required for the world to be
* playable.
*/
void setBGM(std::string path);
/**
* Sets the worlds style folder
*/
void setStyle(std::string pre);
/**
* Plays/stops this world's BGM. If `prev` is not NULL, that world's BGM
* will be faded out followed by the fading in of this world's BGM.
*/
void bgmPlay(World *prev) const;
/**
* Draw the world and entities based on the player's coordinates.
*/
virtual void draw(Player *p);
/**
* Handles collision between the entities and the world, as well as entity
* death.
*/
void detect(Player *p);
/**
* Attempts to let the player enter the left-linked world specified by
* `toLeft`. Returns the world to the left if the movement is possible,
* otherwise returns this world.
*/
World *goWorldLeft(Player *p);
bool goWorldLeft(NPC *e);
/**
* Attempts to let the player enter the right-linked world specified by
* `toRight`. Returns the world to the right if the movement is possible,
* otherwise returns this world.
*/
World *goWorldRight(Player *p);
/**
* This function looks for any structure the player is standing in front of
* that also have an inside world. Returns the inside world if those
* conditions are met, otherwise returns this world.
*/
World *goInsideStructure(Player *p);
/**
* Adds a hole between the specified y coordinates. If the player falls in
* this hole the game will exit.
*/
void addHole(unsigned int start,unsigned int end);
/**
* Adds a hill to the world, given the peak's coordinates and how wide the
* hill can be.
*/
void addHill(ivec2 peak, unsigned int width);
/**
* Gets the world's width.
*/
int getTheWidth(void) const;
void save(void);
void load(void);
};
/*
* IndoorWorld - Indoor settings stored in a World class
*/
class IndoorWorld : public World {
private:
std::vector<std::vector<float>> floor;
std::vector<float> fstart;
void singleDetect(Entity *e);
public:
IndoorWorld(void);
~IndoorWorld(void);
void addFloor(unsigned int width);
void addFloor(unsigned int width, unsigned int start);
bool moveToFloor(Entity *e, unsigned int _floor);
bool isFloorAbove(Entity *e);
bool isFloorBelow(Entity *e);
void draw(Player *p); // Draws the world (ignores layers)
};
/**
* 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 a world with the player and mob, returning the player to the
* world `leave` upon exit.
*/
Arena(World *leave, Player *p, Mob *m);
/**
* Frees resources taken by the arena.
*/
~Arena(void);
/**
* Attempts to exit the world, returning the player to the world they were
* last in.
*/
World *exitArena(Player *p);
};
bool isCurrentWorldIndoors(void);
float getIndoorWorldFloorHeight(void);
std::string getWorldWeatherStr(WorldWeather ww);
/**
* 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);
World *loadWorldFromPtr(World *ptr);
#endif // WORLD_H
|