212 void Rect(vector rectPos, vector rectSize, vector rectRGB ,
float rectAlpha);
220 void RectOutline(vector rectPos, vector rectSize,
float outlineThickness, vector rectColor,
float rectAlpha);
228 void RoundedBox(vector boxPos, vector boxSize, vector boxColor,
float boxAlpha);
237 void Line(
float lineThickness, vector startPos, vector endPos, vector lineColor,
float lineAlpha);
245 void Pic(vector imagePos,
string imageName, vector imageSize, vector imageColor,
float imageAlpha);
294 void TextField(vector vecOrigin, vector vecSize,
string strText,
font_s fnt, alignflags_t iAlignFlags);
303 void TextFieldAtHeight(vector vecOrigin, vector vecSize,
int iTextHeight,
string strText,
font_s fnt, alignflags_t iAlignFlags);
462linkToClientProgs(
string funcName)
464 static void empty(
void)
466 print(
"Called unimplemented client-side API call.\n");
470 void *func = externvalue(0, funcName);
473 return ((__variant)func);
483 font.
GetID = linkToClientProgs(
"Font_GetID");
484 font.
Load = linkToClientProgs(
"Font_Load");
488 screen.
Width = linkToClientProgs(
"Surface_ScreenHeight");
489 screen.
Height = linkToClientProgs(
"Surface_ScreenHeight");
490 screen.
Size = linkToClientProgs(
"Surface_ScreenSize");
491 screen.
Mins = linkToClientProgs(
"Surface_ScreenMins");
527 draw.
Rect = linkToClientProgs(
"Draw_Rect");
530 draw.
Line = linkToClientProgs(
"Draw_Line");
531 draw.
Pic = linkToClientProgs(
"Draw_Pic");
534 draw.
RText = linkToClientProgs(
"Font_DrawRText");
535 draw.
RText_A = linkToClientProgs(
"Font_DrawRText_A");
538 draw.
Text = linkToClientProgs(
"Font_DrawText");
539 draw.
Text_A= linkToClientProgs(
"Font_DrawText_A");
var surfaceAPI_t screen
Access surfaceAPI_t functions using this variable.
Definition: api_func.h:201
var fontAPI_t font
Access fontAPI_t functions using this variable.
Definition: api_func.h:188
var weaponAPI_t weapon
Access weaponAPI_t functions using this variable.
Definition: api_func.h:453
var drawAPI_t draw
Access drawAPI_t functions using this variable.
Definition: api_func.h:305
var playerAPI_t player
Access playerAPI_t functions using this variable.
Definition: api_func.h:362
drawflag_t
Flags for 2D drawing operations.
Definition: font.h:27
typedef enumflags
Defines the valid alignment flags for text fields.
Definition: font.h:37
@ DRAWFLAG_ADDITIVE
Render with an additive blend mode.
Definition: api_func.h:21
@ DRAWFLAG_MODULATE
Not implemented in FTEQW.
Definition: api_func.h:22
@ DRAWFLAG_2XMODULATE
Not implemented in FTEQW.
Definition: api_func.h:23
@ DRAWFLAG_NORMAL
The default.
Definition: api_func.h:20
Draw library.
Definition: api_func.h:205
void RText_RGB(vector vecOrigin, string strText, vector col, font_s fnt)
Right-aligned variant of Text_RGB().
void Text(vector vecOrigin, string strText, font_s fnt)
Draw text on the screen at the desired position with a desired font.
void Line(float lineThickness, vector startPos, vector endPos, vector lineColor, float lineAlpha)
Displays a line with a specified thickness and color.
void TextFieldAtHeight(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.
void Text_RGBA(vector vecOrigin, string strText, vector col, float a, font_s fnt)
Draw tinted and alpha blended text on the screen at the desired position with a desired font.
void TextField(vector vecOrigin, vector vecSize, string strText, font_s fnt, alignflags_t iAlignFlags)
Draws a textfield with line wrapping.
void Text_RGB(vector vecOrigin, string strText, vector col, font_s fnt)
Draw tinted text on the screen at the desired position with a desired font.
void Rect(vector rectPos, vector rectSize, vector rectRGB, float rectAlpha)
Displays a solid colored rectangle at the specified position with a specified size.
void RText_RGBA(vector vecOrigin, string strText, vector col, float a, font_s fnt)
Right-aligned variant of Text_RGBA().
void RoundedBox(vector boxPos, vector boxSize, vector boxColor, float boxAlpha)
Displays a colored rounded box at the specified position with a specified size.
void RText_A(vector vecOrigin, string strText, float a, font_s fnt)
Right-aligned variant of Text_A().
void RectOutline(vector rectPos, vector rectSize, float outlineThickness, vector rectColor, float rectAlpha)
Displays a colored rectangle outline at the specified position with a specified size.
void RText(vector vecOrigin, string strText, font_s fnt)
Right-aligned variant of Text().
void Text_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.
void Pic(vector imagePos, string imageName, vector imageSize, vector imageColor, float imageAlpha)
Draws an image from either the virtual file-system, or the materials.
Font library.
Definition: api_func.h:142
float GetID(font_s fnt)
Get the internal font id.
string RGBtoHex(vector normalizedColor)
Converts a normalized RGB color vector to a hex color string.
void Load(string fontDef, font_s &fntNew)
Load a desired .font definition into memory.
int GetHeight(font_s fnt)
Returns the height of a specified font in pixels.
float StringWidth(string inputText, bool hasColor, font_s fnt)
Returns the width of a series of characters in pixels.
Representation of a font.
Definition: api_func.h:39
int iFlags
Rendering flags that the font posesses.
Definition: api_func.h:45
int iScaleX
Suggested maximum width of a character in the font.
Definition: api_func.h:41
int iScaleY
Maximum height of a chracter in the font.
Definition: api_func.h:42
vector vecColor
Suggested default color of the font.
Definition: api_func.h:43
float flAlpha
Suggested default alpha of the font.
Definition: api_func.h:44
int iID
Internal ID, will be passed to 'drawfont' before rendering text.
Definition: api_func.h:40
string hexColor
Definition: api_func.h:46
Player library.
Definition: api_func.h:309
int GetTeam(void)
Get the current player's team ID.
float GetHealth(void)
Get the current player's health value.
float GetArmor(void)
Get the current player's armor value.
bool IsLeaning(void)
Check if the current player is leaning in any direction.
bool IsProne(void)
Check if the current player is actively prone/laying flat on the ground.
bool IsCrouched(void)
Check if the current player is actively crouched/ducked.
vector GetCameraAngles(void)
Get the current 3D viewport's camera angle.
bool HasItem(string itemClassName)
Check if the current player has a particular item.
bool IsStanding(void)
Check if the current player is standing upright.
float GetStamina(void)
Get the current player's stamina value.
bool IsSprinting(void)
Check if the current player is actively sprinting.
vector GetCameraPosition(void)
Get the current 3D viewport's camera position.
Surface library.
Definition: api_func.h:193
vector HUDSize(void)
Returns the size of the HUD.
float Height(void)
The height of the surface or display.
float Width(void)
The width of the surface or display.
vector HUDMins(void)
Returns the top-left starting position of the HUD on the surface.
vector Size(void)
The size of the surface or display.
vector Mins(void)
Returns the top-left starting position of the surface.
Weapon library.
Definition: api_func.h:366
entity GetNextWeaponRelativeTo(entity)
Returns the weapon that comes after (in the player's inventory) the input weapon.
bool IsValid(entity weaponRef)
Returns whether this entity reference to a weapon is still valid.
string GetIcon(entity weaponRef)
Returns the inventory icons of the weapon specified.
entity GetActiveWeapon(void)
Returns the current/active weapon item in the player's inventory.
entity GetLastWeaponInInventory(void)
Returns the last weapon item in the player's inventory.
bool UsesSecondaryAmmo(void)
Returns if the current/active weapon item in the player's inventory makes use of a secondary ammo typ...
string GetSelectedIcon(entity weaponRef)
Returns the selected variant inventory icons of the weapon specified.
bool AmmoRequired(void)
Returns if the current/active weapon item in the player's inventory requires ammo.
int GetSlotPos(entity weaponRef)
Returns if the slot position of the weapon specified.
int GetClip(void)
Returns if the current/active weapons present clip/magazine size.
int GetSlot(entity weaponRef)
Returns the slot number of the weapon specified.
entity GetPreviousWeaponRelativeTo(entity playerWeapon)
Returns the weapon that comes before (in the player's inventory) the input weapon.
entity GetFirstWeaponInInventory(void)
Returns the first weapon item in the player's inventory.
int GetAmmo2(void)
Returns if the current/active weapons present reserve ammo, but for the second ammo type.
int GetClipSize(void)
Returns if the current/active weapons maximum clip/magazine size.
string GetTitle(entity weaponRef)
Returns the title of the weapon specified.
int GetAmmo1(void)
Returns if the current/active weapons present reserve ammo.
void SelectWeapon(entity)
Attempts to make the player switch to the specified weapon reference.