blob: 4d30b9b043fa5207de54bbd5415f95e028a4f449 (
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
|
#ifndef UI_H
#define UI_H
#include <common.h>
#include <cstdarg>
#include <world.h>
#include <ft2build.h>
#include FT_FREETYPE_H
#define DEBUG
namespace ui {
/*
* Contains the coordinates of the mouse in 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;
/*
* Initializes the FreeType system.
*/
void initFonts(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,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);
/*
* Handle keyboard/mouse events.
*/
void handleEvents(void);
/*
* Toggle the black overlay thing.
*/
void toggleBlack(void);
}
#endif // UI_H
|