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
|
#ifndef WORLD_H
#define WORLD_H
#include <common.h> // For HLINE, vec2, OpenGL utilities, etc.
#include <entities.h>
#define GEN_INC 10 // Defines at what interval y values should be calculated for the array 'line'.
// As explained in World(), the last few lines in the array 'line' are incorrectly calculated
// or not calculated at all, so GEN_INC is also used to decrease 'lineCount' in functions like draw()
// and detect().
struct line_t {
bool gs;
float y,gh[2];
unsigned char color;
} __attribute__ ((packed));
/*
* World - creates and handles an area of land
*/
class World {
protected:
/*
* struct line_t
*
* The world is stored in an array of lines. Example:
*
* ||
* ||| || |
* |||||||||
* line no. 123456789...
*
*/
struct line_t *line;
/*
* Keeps a dynamically allocated array of platforms in the world.
*/
/*
* Contains the starting x-coordinate to draw the world at. This should be equal to
* - getWidth() (see world.cpp) / 2
*/
int x_start;
/*
* Runs world detection for a single entity. This function is used in World->detect()
* to detect the player and all entities in the world.
*/
void singleDetect(Entity *e);
/*
* The size of the line array. This is set once by World->generate().
*/
unsigned int lineCount;
public:
/*
* These pointers keep track of worlds that are adjacent to this one. Used in ui.cpp
* for world jumping.
*/
World *toLeft,
*toRight,
*behind,
*infront;
/*
* Entity arrays.
*/
std::vector<NPC *> npc;
std::vector<Structures *> build;
std::vector<Mob *> mob;
std::vector<Entity *> entity;
void addStructure(_TYPE t,float x,float y,void *inside);
void addMob(int t,float x,float y);
void addNPC(float x,float y);
void update(Player *p,unsigned int delta);
/*
* Constructor and deconstructor, these do what you would expect.
*/
World(void);
~World(void); // Frees the 'line' array.
/*
* Generate a world of width `width`. This function is virtual so that other world
* classes that are based on this one can generate themselves their own way.
*/
virtual void generate(unsigned int width);
void generateFunc(unsigned int width,float(*func)(float));
/*
* Looks for the furthest back layer in this world and adds a new layer of width `width` behind it.
*/
void addLayer(unsigned int width);
/*
* Draw the world and entities based on the player's coordinates. Virtual for the same
* reason generate() is.
*/
virtual void draw(Player *p);
/*
* Detect the player and any entities in the current world.
*/
void detect(Player *p);
/*
* These functions return the pointer to the world in the direction that is requested if it
* exists and the player is in a condition that it can make the switch, otherwise they
* return the current world.
*/
World *goWorldLeft(Player *p);
World *goWorldRight(Player *p);
World *goWorldBack(Player *p);
World *goWorldFront(Player *p);
/*
* Called to enter/exit a structure.
*/
World *goInsideStructure(Player *p);
/*
* These functions add features to the world.
*/
void addHole(unsigned int start,unsigned int end);
/*
* Get's the world's width.
*/
int getTheWidth(void);
/*
* Stores all of this class's contents in a string for saving to a file. This array should
* be freed after being written to a file.
*/
char *save(unsigned int *ssize);
/*
* Loads a previous world's contents (from save()) into this one.
*/
void load(char *buf);
};
/*
* Gets a good base y value for background rendering.
*/
float worldGetYBase(World *w);
/*
* IndoorWorld - Indoor settings stored in a World class ;)
*/
class IndoorWorld : public World {
public:
World *outside;
IndoorWorld(void);
~IndoorWorld(void);
void generate(unsigned int width); // Generates a flat world of width 'width'
void draw(Player *p); // Draws the world (ignores layers)
};
extern int worldShade;
#endif // WORLD_H
|