Nuclide
Software Development Kit for id Technology (BETA)
All Classes Functions Variables Typedefs Enumerations Enumerator Modules Pages
api_func.h
1/*
2 * Copyright (c) 2016-2024 Vera Visions LLC.
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
13 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
14 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15*/
16
18typedef enum
19{
25
28typedef enumflags
29{
30 AF_LEFT,
31 AF_TOP,
32 AF_RIGHT,
33 AF_BOTTOM
34} alignflags_t;
35#define AF_NONE 0
36
38typedef struct
39{
40 int iID;
41 int iScaleX;
42 int iScaleY;
43 vector vecColor;
44 float flAlpha;
45 int iFlags;
46 string hexColor;
47} font_s;
48
141typedef struct
142{
153 float GetID(font_s fnt);
154
159 void Load(string fontDef,font_s &fntNew);
160
165 string RGBtoHex(vector normalizedColor);
166
172
186 float StringWidth(string inputText,bool hasColor,font_s fnt);
187} fontAPI_t;
192typedef struct
193{
194 vector Mins(void);
195 vector Size(void);
196 float Width(void);
197 float Height(void);
198 vector HUDMins(void);
199 vector HUDSize(void);
204typedef struct
205{
212 void Rect(vector rectPos, vector rectSize, vector rectRGB , float rectAlpha);
220 void RectOutline(vector rectPos, vector rectSize, float outlineThickness, vector rectColor, float rectAlpha);
221
228 void RoundedBox(vector boxPos, vector boxSize, vector boxColor, float boxAlpha);
229
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);
251 void Text(vector vecOrigin, string strText, font_s fnt);
258 void Text_A(vector vecOrigin, string strText, float a, font_s fnt);
265 void Text_RGB(vector vecOrigin, string strText, vector col, font_s fnt);
274 void Text_RGBA(vector vecOrigin, string strText, vector col, float a, font_s fnt);
277 void RText(vector vecOrigin, string strText, font_s fnt);
280 void RText_A(vector vecOrigin, string strText, float a, font_s fnt);
283 void RText_RGB(vector vecOrigin, string strText, vector col, font_s fnt);
286 void RText_RGBA(vector vecOrigin, string strText, vector col, float a, font_s fnt);
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);
304} drawAPI_t;
308typedef struct
309{
310
314 vector GetCameraPosition(void);
318 vector GetCameraAngles(void);
322 float GetArmor(void);
326 float GetHealth(void);
330 float GetStamina(void);
334 int GetTeam(void);
339 bool IsStanding(void);
343 bool IsLeaning(void);
347 bool IsSprinting(void);
351 bool IsCrouched(void);
355 bool IsProne(void);
360 bool HasItem(string itemClassName);
365typedef struct
366{
367
372 bool IsValid(entity weaponRef);
377 string GetTitle(entity weaponRef);
382 int GetSlot(entity weaponRef);
387 int GetSlotPos(entity weaponRef);
392 string GetIcon(entity weaponRef);
397 string GetSelectedIcon(entity weaponRef);
401 int GetAmmo1(void);
405 int GetAmmo2(void);
409 int GetClip(void);
413 int GetClipSize(void);
421 bool AmmoRequired(void);
422
426 entity GetActiveWeapon(void);
435
441
446 entity GetPreviousWeaponRelativeTo(entity playerWeapon);
447
451 void SelectWeapon(entity);
453var weaponAPI_t weapon; // end of hudC
457
458/* To be implemented by HUD */
459void HUD_Init(void);
460
461__variant
462linkToClientProgs(string funcName)
463{
464 static void empty(void)
465 {
466 print("Called unimplemented client-side API call.\n");
467 breakpoint();
468 }
469
470 void *func = externvalue(0, funcName);
471
472 if (func) {
473 return ((__variant)func);
474 } else {
475 return (empty);
476 }
477}
478
479void
480_client_main(void)
481{
482 font.GetHeight = linkToClientProgs("Font_GetHeight");
483 font.GetID = linkToClientProgs("Font_GetID");
484 font.Load = linkToClientProgs("Font_Load");
485 font.RGBtoHex = linkToClientProgs("Font_RGBtoHex");
486 font.StringWidth = linkToClientProgs("Font_StringWidth");
487
488 screen.Width = linkToClientProgs("Surface_ScreenHeight");
489 screen.Height = linkToClientProgs("Surface_ScreenHeight");
490 screen.Size = linkToClientProgs("Surface_ScreenSize");
491 screen.Mins = linkToClientProgs("Surface_ScreenMins");
492 screen.HUDMins = linkToClientProgs("Surface_HUDMins");
493 screen.HUDSize = linkToClientProgs("Surface_HUDSize");
494
495 player.GetCameraPosition = linkToClientProgs("Player_GetCameraPosition");
496 player.GetCameraAngles = linkToClientProgs("Player_GetCameraAngles");
497 player.GetHealth = linkToClientProgs("Player_GetHealth");
498 player.GetArmor = linkToClientProgs("Player_GetArmor");
499 player.GetStamina = linkToClientProgs("Player_GetStamina");
500 player.GetTeam = linkToClientProgs("Player_GetTeam");
501 player.HasItem = linkToClientProgs("Player_HasItem");
502 player.IsStanding = linkToClientProgs("Player_IsStanding");
503 player.IsLeaning = linkToClientProgs("Player_IsLeaning");
504 player.IsSprinting = linkToClientProgs("Player_IsSprinting");
505 player.IsCrouched = linkToClientProgs("Player_IsCrouched");
506 player.IsProne = linkToClientProgs("Player_IsProne");
507
508 weapon.IsValid = linkToClientProgs("Weapon_IsValid");
509 weapon.GetTitle = linkToClientProgs("Weapon_GetTitle");
510 weapon.GetIcon = linkToClientProgs("Weapon_GetIcon");
511 weapon.GetSelectedIcon = linkToClientProgs("Weapon_GetSelectedIcon");
512 weapon.GetSlot = linkToClientProgs("Weapon_GetSlot");
513 weapon.GetSlotPos = linkToClientProgs("Weapon_GetSlotPos");
514 weapon.GetAmmo1 = linkToClientProgs("Weapon_GetAmmo1");
515 weapon.GetAmmo2 = linkToClientProgs("Weapon_GetAmmo2");
516 weapon.GetClip = linkToClientProgs("Weapon_GetClip");
517 weapon.GetClipSize = linkToClientProgs("Weapon_GetClipSize");
518 weapon.UsesSecondaryAmmo = linkToClientProgs("Weapon_UsesSecondaryAmmo");
519 weapon.AmmoRequired = linkToClientProgs("Weapon_AmmoRequired");
520 weapon.GetActiveWeapon = linkToClientProgs("Weapon_GetActiveWeapon");
521 weapon.GetFirstWeaponInInventory = linkToClientProgs("Weapon_GetFirstWeaponInInventory");
522 weapon.GetLastWeaponInInventory = linkToClientProgs("Weapon_GetLastWeaponInInventory");
523 weapon.GetNextWeaponRelativeTo = linkToClientProgs("Weapon_GetNextWeaponRelativeTo");
524 weapon.GetPreviousWeaponRelativeTo = linkToClientProgs("Weapon_GetPreviousWeaponRelativeTo");
525 weapon.SelectWeapon = linkToClientProgs("Weapon_SelectWeapon");
526
527 draw.Rect = linkToClientProgs("Draw_Rect");
528 draw.RectOutline = linkToClientProgs("Draw_RectOutline");
529 draw.RoundedBox = linkToClientProgs("Draw_RoundedBox");
530 draw.Line = linkToClientProgs("Draw_Line");
531 draw.Pic = linkToClientProgs("Draw_Pic");
532 draw.TextField = linkToClientProgs("Font_DrawField");
533 draw.TextFieldAtHeight = linkToClientProgs("Font_DrawFieldAtHeight");
534 draw.RText = linkToClientProgs("Font_DrawRText");
535 draw.RText_A = linkToClientProgs("Font_DrawRText_A");
536 draw.RText_RGB = linkToClientProgs("Font_DrawRText_RGB");
537 draw.RText_RGBA = linkToClientProgs("Font_DrawRText_RGBA");
538 draw.Text = linkToClientProgs("Font_DrawText");
539 draw.Text_A= linkToClientProgs("Font_DrawText_A");
540 draw.Text_RGB= linkToClientProgs("Font_DrawText_RGB");
541 draw.Text_RGBA = linkToClientProgs("Font_DrawText_RGBA");
542}
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.