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
|
/** @file ui.h
* @brief Contains functions for handling the user interface.
*/
#ifndef UI_H
#define UI_H
#include <common.h>
#include <cstdarg>
#include <config.h>
#include <world.h>
#include <ft2build.h>
#include <SDL2/SDL_opengl.h>
#include <thread>
#include FT_FREETYPE_H
#define DEBUG
typedef void(*menuFunc)();
struct menuItem{
int member;
union{
struct{
vec2 loc;
dim2 dim;
Color color;
const char* text;
menuFunc func;
}button;
struct{
vec2 loc;
dim2 dim;
Color color;
float minValue;
float maxValue;
const char* text;
float* var;
float sliderLoc;
}slider;
};
};
class Menu{
public:
std::vector<menuItem>items;
Menu *child;
Menu *parent;
void gotoChild();
void gotoParent();
};
typedef uint8_t BYTE;
typedef uint16_t WORD;
typedef uint32_t DWORD;
typedef int32_t LONG;
typedef struct{
WORD bfType;
DWORD bfSize;
WORD bfReserved1, bfReserved2;
DWORD bfOffBits; //how many bytes before the image data
} __attribute__ ((packed)) BITMAPFILEHEADER;
typedef struct{
DWORD biSize; //size of header in bytes
LONG biWidth;
LONG biHeight;
WORD biPlanes;
WORD biBitCount; //how many bits are in a pixel
DWORD biCompression;
DWORD biSizeImage; //size of image in bytes
LONG biXPelsPerMeter;
LONG biYPelsPerMeter;
DWORD biClrUsed; //how many colors there are
DWORD biClrImportant; //important colors
} __attribute__ ((packed)) BITMAPINFOHEADER;
namespace ui {
menuItem createButton(vec2 l, dim2 d, Color c, const char* t, menuFunc f);
menuItem createChildButton(vec2 l, dim2 d, Color c, const char* t);
menuItem createParentButton(vec2 l, dim2 d, Color c, const char* t);
menuItem createSlider(vec2 l, dim2 d, Color c, float min, float max, const char* t, float* v);
/**
* Contains the coordinates of the mouse inside the window.
*/
extern vec2 mouse;
/*
* These flags are used elsewhere.
*/
extern bool debug;
extern bool posFlag;
extern unsigned int fontSize;
extern bool dialogBoxExists;
extern unsigned char dialogOptChosen;
extern bool dialogImportant;
extern unsigned int textWrapLimit;
/*
* Initializes the FreeType system.
*/
void initFonts(void);
void destroyFonts(void);
/*
* Sets the current font/font size.
*/
void setFontFace(const char *ttf);
void setFontSize(unsigned int size);
/*
* Draw a centered string.
*/
float putStringCentered(const float x,const float y,const char *s);
/*
* Draws a formatted string at the given coordinates.
*/
float putText(const float x,const float y,const char *str,...);
/*
* Creates a dialogBox text string (format: `name`: `text`). This function simply sets up
* variables that are drawn in ui::draw(). When the dialog box exists player control is
* limited until a right click is given, closing the box.
*/
void dialogBox(const char *name,const char *opt,bool passive,const char *text,...);
void waitForDialog(void);
/*
* Draws a larger string in the center of the screen. Drawing is done inside this function.
*/
void importantText(const char *text,...);
/*
* Draw various UI elements (dialogBox, player health)
*/
void draw(void);
/*
* Draw various menu items
*/
void quitGame();
void quitMenu();
void optionsMenuF();
void drawMenu(Menu* menu);
/*
* Handle keyboard/mouse events.
*/
void handleEvents(void);
/*
* Toggle the black overlay thing.
*/
void toggleBlack(void);
void toggleBlackFast(void);
void toggleWhite(void);
void toggleWhiteFast(void);
void waitForCover(void);
void waitForNothing(unsigned int);
}
#endif // UI_H
|