diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-03 08:45:29 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-11-03 08:45:29 -0500 |
commit | 505027ab6dec50f991e2c21abf270c491128487a (patch) | |
tree | f4ae696cfaeac81fc05a9405f65c204d50625f33 /include/ui.h | |
parent | f8ebf8fd3d5691cd45566281a1f54c5ecbc43762 (diff) |
ui improvements
Diffstat (limited to 'include/ui.h')
-rw-r--r-- | include/ui.h | 80 |
1 files changed, 64 insertions, 16 deletions
diff --git a/include/ui.h b/include/ui.h index 79ca9a7..6ebbd1f 100644 --- a/include/ui.h +++ b/include/ui.h @@ -2,39 +2,87 @@ #define UI_H #include <common.h> -#include <cstdarg> // For putText() +#include <cstdarg> -#include <world.h> // World-switching stuff -#include <ft2build.h> // FreeType stuff +#include <world.h> +#include <ft2build.h> #include FT_FREETYPE_H #define DEBUG -namespace ui { // Functions are kept in a namespace simply - // for organization +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 bool dialogBoxExists; extern unsigned int fontSize; - void initFonts(void); // Checks for and initializes the FreeType 2 library + /* + * Initializes the FreeType system. + */ + + void initFonts(void); + + /* + * Sets the current font/font size. + */ + + void setFontFace(const char *ttf); + void setFontSize(unsigned int size); + + /* + * Draws a string of text at the given coordinates. + */ + + float putString(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 *text,...); + + /* + * 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); - void setFontFace(const char *ttf); // Checks and unpacks the TTF file for use by putString() and putText() - void setFontSize(unsigned int size); // Sets the size of the currently loaded font to 'size' pixels + /* + * Handle keyboard/mouse events. + */ - float putString(const float x,const float y,const char *s); // Draws the string 's' to the coordinates ('x','y'). The height (and therefore the width) - // are determined by what's currently set by setFontSize() - float putText(const float x,const float y,const char *str,...); // Draws the formatted string 'str' using putString() + void handleEvents(void); - void dialogBox(const char *name,const char *text,...); // Prepares a dialog box to be drawn (its drawn as a black background at the top of the - // screen and then 'text' is putString()'d + /* + * Toggle the black overlay thing. + */ - void draw(void); // Draws things like dialogBox's if necessary + void toggleBlack(void); - void handleEvents(void); // Handles keyboard and mouse events } #endif // UI_H |