Nuclide
Software Development Kit for id Technology (BETA)
api_func.h
1.float deaths;
2
29typedef struct
30{
37 string TimeToString(int realTime, int zoneType, string formatString);
38} utilAPI_t;
42typedef struct
43{
48 bool InMap(string className);
54 bool InPVS(entity lookingEntity, vector visiblePosition);
59 bool InVFS(string fileName);
64typedef struct
65{
73 entity Create(string className, vector spawnPos);
79 entity ChangeToClass(entity targetEntity, string className);
90 entity Input(entity target, string inputName, string dataString, entity activator);
94 bool isAI(entity entityToCheck);
98 bool isAlive(entity entityToCheck);
102 bool isGodMode(entity entityToCheck);
106 bool isPlayer(entity entityToCheck);
110 bool isSentient(entity entityToCheck);
114 bool isBot(entity entityToCheck);
115
116
121 entity NextItem(entity lastItem);
122
123
128 entity NextWeapon(entity lastWeapon);
129
130
135 entity NextActor(entity lastActor);
136
137
142 entity NextPlayer(entity lastPlayer);
143} entsAPI_t;
147typedef struct
148{
150 void LoadNextMap(void);
152 void CleanUpMap(void);
156 string GetMap(void);
160 string GetNextMap(void);
163 void SetSpawnPoint(string spawnPointClass);
166 void TeleportToSpawn(entity teleportingEntity);
170 entity FindRandomClassObject(string entityClassName);
171} gameAPI_t;
175typedef struct
176{
178 void LoadDefault(void);
182 void LoadFromFile(string);
183} motdAPI_t;
187typedef struct
188{
191 string GetInventory(entity targetActor);
194 bool HasItem(entity targetActor, string itemClass);
199 int GetReserveAmmo(entity targetActor, int ammoType);
204 bool MaxAmmo(entity targetActor, int ammoType);
207 int TotalActors(void);
211 int TotalActorsOnTeam(int teamID);
212
213 float AimAtPos(entity, vector);
214 float MoveToPos(entity, vector);
215 bool CanSee(entity, entity);
216 bool CanShoot(entity, vector, vector);
218 entity FindCoverNode(entity);
219} actorAPI_t;
223typedef struct
224{
235 void Damage(entity targetEnt, entity inflictingEnt, entity attackingEnt, string damageDef, vector damageOrigin, vector damageDir, vector hitLocation);
246 void RadiusDamage(vector damageCenter, float damageRange, int damageMin, int damageMax, entity attackingEnt, string damageDef);
253 void Obituary(string targetName, string attackerName, string weaponDef, string meansOfDeath);
255var combatAPI_t combat; // end of multiprogs
258
259__variant
260linkToServerProgs(string funcName)
261{
262 static void empty(void)
263 {
264 print("Called unimplemented server-side API call.\n");
265 breakpoint();
266 }
267
268 void *func = externvalue(0, funcName);
269
270 if (func) {
271 return ((__variant)func);
272 } else {
273 return (empty);
274 }
275}
276
277void
278_server_main(void)
279{
280 game.LoadNextMap = linkToServerProgs("SVPF_game_LoadNextMap");
281 game.CleanUpMap = linkToServerProgs("SVPF_game_CleanUpMap");
282 game.GetMap = linkToServerProgs("SVPF_game_GetMap");
283 game.GetNextMap = linkToServerProgs("SVPF_game_GetNextMap");
284 game.SetSpawnPoint = linkToServerProgs("SVPF_game_SetSpawnPoint");
285 game.TeleportToSpawn = linkToServerProgs("SVPF_game_TeleportToSpawn");
286 game.FindRandomClassObject = linkToServerProgs("Spawn_SelectRandom");
287
288 combat.Damage = linkToServerProgs("SVPF_combat_Damage");
289 combat.RadiusDamage = linkToServerProgs("SVPF_combat_RadiusDamage");
290 combat.Obituary = linkToServerProgs("SVPF_combat_Obituary");
291
292 ents.Create = linkToServerProgs("spawnClass");
293 ents.ChangeToClass = linkToServerProgs("changeClass");
294 ents.Input = linkToServerProgs("sendInput");
295 ents.isAI = linkToServerProgs("isAI");
296 ents.isAlive = linkToServerProgs("isAlive");
297 ents.isGodMode = linkToServerProgs("isGodMode");
298 ents.isPlayer = linkToServerProgs("isPlayer");
299 ents.isSentient = linkToServerProgs("isSentient");
300
301 /* helpful finder */
302 ents.NextActor = linkToServerProgs("SVPF_ents_NextActor");
303 ents.NextItem = linkToServerProgs("SVPF_ents_NextItem");
304 ents.NextWeapon = linkToServerProgs("SVPF_ents_NextWeapon");
305 ents.NextPlayer = linkToServerProgs("SVPF_ents_NextPlayer");
306
307 actor.GetInventory = linkToServerProgs("SVPF_actor_GetInventory");
308 actor.GetReserveAmmo = linkToServerProgs("SVPF_actor_GetReserveAmmo");
309 actor.MaxAmmo = linkToServerProgs("SVPF_actor_MaxAmmo");
310 actor.TotalActors = linkToServerProgs("SVPF_actor_TotalActors");
311 actor.TotalActorsOnTeam = linkToServerProgs("SVPF_actor_TotalActorsOnTeam");
312 actor.MoveToPos = linkToServerProgs("SVPF_actor_MoveToPos");
313 actor.HasItem = linkToServerProgs("SVPF_actor_HasItem");
314
315 exists.InMap = linkToServerProgs("SVPF_exists_InMap");
316 exists.InVFS = linkToServerProgs("SVPF_exists_InVFS");
317 exists.InPVS = linkToServerProgs("SVPF_exists_InPVS");
318
319 motd.LoadDefault = linkToServerProgs("MOTD_LoadDefault");
320 motd.LoadFromFile = linkToServerProgs("MOTD_LoadFromFile");
321
322 util.TimeToString = linkToServerProgs("SVPF_util_TimeToString");
323}
var motdAPI_t motd
Access motdAPI_t functions using this variable.
Definition: api_func.h:184
var existsAPI_t exists
Access existsAPI_t functions using this variable.
Definition: api_func.h:61
var gameAPI_t game
Access gameAPI_t functions using this variable.
Definition: api_func.h:172
var utilAPI_t util
Access utilAPI_t functions using this variable.
Definition: api_func.h:39
var combatAPI_t combat
Access combatAPI_t functions using this variable.
Definition: api_func.h:255
var entsAPI_t ents
Access entsAPI_t functions using this variable.
Definition: api_func.h:144
var actorAPI_t actor
Access actorAPI_t functions using this variable.
Definition: api_func.h:220
MOTD library.
Definition: api_func.h:188
entity FindCoverNode(entity)
float AimAtPos(entity, vector)
int GetReserveAmmo(entity targetActor, int ammoType)
Returns the amount of reserve ammo of a given ammo type ID.
bool HasItem(entity targetActor, string itemClass)
Returns whether an item class exists in an actor's inventory.
bool CanShoot(entity, vector, vector)
int TotalActorsOnTeam(int teamID)
Returns the current amount of actors in the game, on a specific team.
bool CanSee(entity, entity)
string GetInventory(entity targetActor)
Returns a tokenizable string containing a list of inventory items of a specified actor (this includes...
float MoveToPos(entity, vector)
int TotalActors(void)
Returns the current amount of actors in the game.
bool MaxAmmo(entity targetActor, int ammoType)
Returns the amount of maximum ammo of a given ammo type ID.
bool ClearEnemy()
Combat library.
Definition: api_func.h:224
void Obituary(string targetName, string attackerName, string weaponDef, string meansOfDeath)
Lets everyone in the game know that something, or something, has passed.
void Damage(entity targetEnt, entity inflictingEnt, entity attackingEnt, string damageDef, vector damageOrigin, vector damageDir, vector hitLocation)
Applies damage to a given entity.
void RadiusDamage(vector damageCenter, float damageRange, int damageMin, int damageMax, entity attackingEnt, string damageDef)
Does damage to all entities within a specified radius with a linear falloff.
Ents library.
Definition: api_func.h:65
entity NextActor(entity lastActor)
Returns the next entity of type 'Actor' in the game.
entity NextItem(entity lastItem)
Returns the next entity of type 'Item' in the game.
bool isSentient(entity entityToCheck)
Returns true/false depending on if the entity is either a player, or AI character.
entity Create(string className, vector spawnPos)
Creates a new entity of a given class name.
entity Input(entity target, string inputName, string dataString, entity activator)
Sends an input (See ncIO::Input) to an entity.
entity ChangeToClass(entity targetEntity, string className)
Transitions an entity from one class to another.
entity NextPlayer(entity lastPlayer)
Returns the next entity of type 'Player' in the game.
bool isAI(entity entityToCheck)
Returns true/false depending on if the entity is an AI character.
bool isGodMode(entity entityToCheck)
Returns true/false depending on if the entity is in "god" mode.
bool isBot(entity entityToCheck)
Returns true/false depending on if the entity is a bot.
entity NextWeapon(entity lastWeapon)
Returns the next entity of type 'Weapon' in the game.
bool isPlayer(entity entityToCheck)
Returns true/false depending on if the entity is a player.
bool isAlive(entity entityToCheck)
Returns true/false depending on if the entity is alive.
Exists library.
Definition: api_func.h:43
bool InVFS(string fileName)
Check whether a file is present in the virtual filesystem.
bool InMap(string className)
Check whether a named entity class exists in the current map/level.
bool InPVS(entity lookingEntity, vector visiblePosition)
Check whether an entity is within a PVS - if it is visible from a certain location and vice-versa.
Game library.
Definition: api_func.h:148
void CleanUpMap(void)
Removed any temporary game entities from the game, and resets the state of the level to the default s...
void TeleportToSpawn(entity teleportingEntity)
Teleports an entity to their ideal spawn-point.
void LoadNextMap(void)
Force loads the next map/level in the rotation.
string GetMap(void)
Returns the name of the map/level.
void SetSpawnPoint(string spawnPointClass)
Sets the default spawn-point class to custom one.
string GetNextMap(void)
Returns the name of the next map/level in the rotation.
entity FindRandomClassObject(string entityClassName)
Return a random instance of a specified entity class.
MOTD library.
Definition: api_func.h:176
void LoadFromFile(string)
Loads a text file as an input for a message of the day.
void LoadDefault(void)
Loads the message of the day from the default location: <gamedir>/motd.txt
Util library.
Definition: api_func.h:30
string TimeToString(int realTime, int zoneType, string formatString)
Returns the current time.