Nuclide
Software Development Kit for id Tech
|
Functions | |
float | Font_GetID (font_s fnt) |
Get the internal font id. More... | |
void | Font_Load (string strFile, font_s &fntNew) |
Load a desired .font definition into memory. More... | |
void | Font_DrawText (vector vecOrigin, string strText, font_s fnt) |
Draw text on the screen at the desired position with a desired font. More... | |
void | Font_DrawText_A (vector vecOrigin, string strText, float a, font_s fnt) |
Draw alpha-blended text on the screen at the desired position with a desired font. More... | |
void | Font_DrawText_RGB (vector vecOrigin, string strText, vector rgb, font_s fnt) |
Draw tinted text on the screen at the desired position with a desired font. More... | |
void | Font_DrawText_RGBA (vector vecOrigin, string strText, vector rgb, float a, font_s fnt) |
Draw tinted and alpha blended text on the screen at the desired position with a desired font. More... | |
void | Font_DrawRText (vector vecOrigin, string strText, font_s fnt) |
Right-aligned variant of Font_DrawText. More... | |
void | Font_DrawRText_A (vector vecOrigin, string strText, float a, font_s fnt) |
Right-aligned variant of Font_DrawText_A. More... | |
void | Font_DrawRText_RGB (vector vecOrigin, string strText, vector rgb, font_s fnt) |
Right-aligned variant of Font_DrawText_RGB. More... | |
void | Font_DrawRText_RGBA (vector vecOrigin, string strText, vector rgb, float a, font_s fnt) |
Right-aligned variant of Font_DrawText_RGBA. More... | |
void | Font_DrawField (vector vecOrigin, vector vecSize, string strText, font_s fnt, alignflags_t iAlignFlags) |
Draws a textfield with line wrapping. More... | |
void | Font_DrawFieldAtHeight (vector vecOrigin, vector vecSize, int iTextHeight, string strText, font_s fnt, alignflags_t iAlignFlags) |
Draws a textfield with line wrapping at a custom text height. More... | |
string | Font_RGBtoHex (vector vecColor) |
Converts a normalized RGB color vector to a hex color string. More... | |
int | Font_GetHeight (font_s fnt) |
Returns the height of a specified font in pixels. More... | |
float | Font_StringWidth (string strText, bool hasColor, font_s fnt) |
Returns the width of a series of characters in pixels. More... | |