4#include <unordered_map>
19using std::unordered_map;
52 unordered_map<uint32_t, GUICharacter*>
chars;
70 static GUIFont*
parse(
const string& pathName,
const string& fileName);
112 auto charIt =
chars.find(charId);
113 if (charIt !=
chars.end())
return charIt->second;
199 void drawString(
GUIRenderer* guiRenderer,
int x,
int y,
const MutableString& text,
int offset,
int length,
const GUIColor& color,
int selectionStartIndex = -1,
int selectionEndIndex = -1,
const GUIColor& backgroundColor = GUIColor::GUICOLOR_TRANSPARENT);
GUI screen node that represents a screen that can be rendered via GUI system.
The definition of a single character as defined in the AngelCode file format.
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
void drawString(GUIRenderer *guiRenderer, int x, int y, const MutableString &text, int offset, int length, const GUIColor &color, int selectionStartIndex=-1, int selectionEndIndex=-1, const GUIColor &backgroundColor=GUIColor::GUICOLOR_TRANSPARENT)
Draw string.
unordered_map< uint32_t, GUICharacter * > chars
GUICharacter * getCharacter(uint32_t charId)
Get character defintion.
void drawCharacter(GUIRenderer *guiRenderer, GUICharacter *character, int x, int y, const GUIColor &color=GUIColor::GUICOLOR_WHITE)
Draw character.
void drawCharacterBackground(GUIRenderer *guiRenderer, GUICharacter *character, int x, int y, int lineHeight, const GUIColor &color)
Draw background.
int getTextIndexX(const MutableString &text, int offset, int length, int index)
Get text index X of given text and index.
int getTextIndexByX(const MutableString &text, int offset, int length, int textX)
Get text index by text and X in space of text.
GUIFont()
Public constructor.
static GUIFont * parse(const string &pathName, const string &fileName)
Parse the font definition file.
GUICharacter * parseCharacter(const string &line)
Parse a single character line from the definition.
int getTextIndexXAtWidth(const MutableString &text, int width)
Get text index X at width.
int getTextWidth(const MutableString &text)
Text width.