aboutsummaryrefslogtreecommitdiffstats
path: root/include/common.hpp
blob: 7b98ea928533f9d9cd86122e6ed25ebb1c58ca09 (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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
#ifndef COMMON_H
#define COMMON_H

/**
 * @file common.h
 * @brief Common items needed by most other files.
 */

// standard library includes
#include <iostream>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
#include <list>
#include <iterator>
#include <unordered_map>

// alternative windows thread library
#ifndef __WIN32__
#include <thread>
#else
#include <win32thread.hpp>
#endif // __WIN32__

// local library includes
#define GLEW_STATIC
#include <GL/glew.h>

#include <SDL2/SDL.h>
#include <SDL2/SDL_opengl.h>
#include <SDL2/SDL_image.h>
#include <SDL2/SDL_mixer.h>

#include <shader_utils.hpp>

#define GLM_FORCE_RADIANS
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include <glm/gtc/noise.hpp>

// game library includes
#include <config.hpp>



// windows stuff
#ifdef __WIN32__
typedef unsigned int uint;
#undef near
#endif

/**
 * Prints a formatted string to the terminal with file and line number, for debugging
 */
#define DEBUG_printf(message, ...) DEBUG_prints(__FILE__, __LINE__, message, __VA_ARGS__)

#define BREAKPOINT __asm__("int $3")

template<typename T>
inline const T * const& coalesce(const void * &p1, const void * &p2)
{
	return ((p1 == nullptr) ? reinterpret_cast<T*>(p2) : p1);
}

/**
 * Creates a coordinate of integers.
 */
typedef struct {
	int x; /**< The x coordinate */
	int y; /**< The y coordinate */
} ivec2;

/**
 * A pair of x and y for dimensions (i.e. width and height).
 */
typedef ivec2 dim2;

/**
 * Creates a coordinate out of floating point integers.
 */
struct vec2 {
	float x; /**< The x coordinate */
	float y; /**< The y coordinate */

	/**
	 * Constructs a vec2 with the specified coordinates.
	 */
	vec2(float _x = 0.0f, float _y = 0.0f)
		: x(_x), y(_y) {}

	bool operator==(const vec2 &v) const {
		return (x == v.x) && (y == v.y);
	}

	template<typename T>
	const vec2 operator=(const T &n) {
		x = y = n;
		return *this;
	}

	template<typename T>
	const vec2 operator+(const T &n) {
		return vec2 (x + n, y + n);
	}

	const vec2 operator+(const vec2 &v) {
		return vec2 (x + v.x, y + v.y);
	}

	template<typename T>
	const vec2 operator*(const T &n) {
		return vec2 (x * n, y * n);
	}

	// std::swap can't work due to being packed

	inline void swapX(vec2 &v) {
		float t = x;
		x = v.x, v.x = t;
	}

	inline void swapY(vec2 &v) {
		float t = y;
		y = v.y, v.y = t;
	}

} __attribute__ ((packed));

/**
 * A structure for three-dimensional points.
 */
struct vec3 {
	float x; /**< The x coordinate */
	float y; /**< The y coordinate */
	float z; /**< The z coordinate */

	vec3(float _x = 0.0f, float _y = 0.0f, float _z = 1.0f)
		: x(_x), y(_y), z(_z) {}

} __attribute__ ((packed));

/**
 * This structure contains two sets of coordinates for ray drawing.
 */

typedef struct {
	vec2 start; /**< The start coordinate of the ray */
	vec2 end;   /**< The end coordinate of the ray */
} Ray;

/**
 * Keeps track of an RGBA color.
 */
class Color{
public:
	float red;   /**< The amount of red, 0-255 or 0.0-1.0 depending on usage */
	float green; /**< The amount of green */
	float blue;  /**< The amount of blue */
	float alpha; /**< Transparency */

    Color() {
		red = green = blue = alpha = 0.0f;
	}

	Color(float r, float g ,float b) {
		red = r;
		green = g;
		blue = b;
        alpha = 255;
	}

    Color(float r, float g, float b, float a) {
        red = r;
        green = g;
        blue = b;
        alpha = a;
    }

	Color operator-=(float a) {
		red -= a;
		green -= a;
		blue -= a;
		return{red+a,green+a,blue+a};
	}
	Color operator+=(float a) {
		return{red+a,green+a,blue+a};
	}
	Color operator=(float a) {
		return{red=a,green=a,blue=a};
	}
};

extern GLuint colorIndex;

/**
 * The amount of game ticks that should occur each second.
 */
constexpr const unsigned int TICKS_PER_SEC = 20;

/**
 * The amount of milliseconds it takes for a game tick to fire.
 */
constexpr const float MSEC_PER_TICK = 1000.0f / TICKS_PER_SEC;

/**
 * Separates a string into tokens using the given delimiter.
 *
 * @param  the string to parse
 * @param  the delimiting character
 * @return a vector of the tokens
 */
std::vector<std::string> StringTokenizer(const std::string& str, char delim);

/**
 * A function to draw a colored box for OpenGL.
 * To use it, the lower left hand and upper right hand coords are given.
 *
 * @param the lower left coordinate
 * @param the upper right coordinate
 * @param the z coordinate
 */
void drawRect(vec2 ll, vec2 ur, float z);

/**
 * Returns a measurement in HLINEs
 *
 * @param the number of HLINEs, integer or decimal
 * @return the number in HLINEs
 */
template<typename T>
inline T HLINES(const T &n)
{
	return (static_cast<T>(game::HLINE) * n);
}

/**
 * A generically-named function to start the random number generator.
 * This currently redirects to the library's default, but allows for
 * a custom generator to be easily implemented.
 */
#define randInit srand

/**
 * Gets a random number (is a function).
 */
#define randGet rand

// defines pi for calculations that need it.
constexpr const float PI = 3.1415926535f;

// references the variable in main.cpp, used for drawing with the player
extern vec2 offset;

/**
 *	Prints a formatted debug message to the console, along with the callee's file and line
 *	number.
 */
void DEBUG_prints(const char* file, int line, const char *s,...);

// TODO make sure we don't use these. Then burn them.
/**
 * Sets color using glColor3ub(), but handles potential overflow.
 */
void safeSetColor(int r,int g,int b);

/**
 * Sets color using glColor4ub(), but handles potential overflow.
 */
void safeSetColorA(int r,int g,int b,int a);

unsigned int millis(void);

// reads the names of files in a directory into the given string vector
int getdir(std::string dir, std::vector<std::string> &files);

// sorts a vector of strings alphabetically
void strVectorSortAlpha(std::vector<std::string> *v);

// reads the given file into a buffer and returns a pointer to the buffer
const char *readFile(const char *path);
std::string readFile(const std::string& path);
std::vector<std::string> readFileA(const std::string& path);

// aborts the program, printing the given error
void UserError(std::string reason);

namespace std {
	template<class T>
	constexpr const T& clamp(const T& v, const T& lo, const T& hi) {
		return (v > hi) ? hi : ((v > lo) ? v : lo);
	}
}

#endif // COMMON_H