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 | |
parent | f8ebf8fd3d5691cd45566281a1f54c5ecbc43762 (diff) |
ui improvements
Diffstat (limited to 'include')
-rw-r--r-- | include/common.h | 2 | ||||
-rw-r--r-- | include/ui.h | 80 | ||||
-rw-r--r-- | include/world.h | 1 |
3 files changed, 66 insertions, 17 deletions
diff --git a/include/common.h b/include/common.h index b016020..db60dd6 100644 --- a/include/common.h +++ b/include/common.h @@ -58,7 +58,7 @@ typedef struct { #define GAME_NAME "Independent Study v.0.3 alpha" -#define SCREEN_WIDTH 1280 +#define SCREEN_WIDTH 1200 #define SCREEN_HEIGHT 720 //#define FULLSCREEN 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 diff --git a/include/world.h b/include/world.h index 85b02c9..81ec335 100644 --- a/include/world.h +++ b/include/world.h @@ -82,6 +82,7 @@ public: */ virtual void generate(unsigned int width); + void generateFunc(unsigned int width,unsigned int (*func)(unsigned int)); /* * Looks for the furthest back layer in this world and adds a new layer of width `width` behind it. |