![]() |
Nuclide
Software Development Kit for id Technology (BETA)
|
Game library.
Public Member Functions | |
void | LoadNextMap (void) |
Force loads the next map/level in the rotation. More... | |
void | CleanUpMap (void) |
Removed any temporary game entities from the game, and resets the state of the level to the default state. More... | |
string | GetMap (void) |
Returns the name of the map/level. More... | |
string | GetNextMap (void) |
Returns the name of the next map/level in the rotation. More... | |
void | SetSpawnPoint (string spawnPointClass) |
Sets the default spawn-point class to custom one. More... | |
void | TeleportToSpawn (entity teleportingEntity) |
Teleports an entity to their ideal spawn-point. More... | |
entity | FindRandomClassObject (string entityClassName) |
Return a random instance of a specified entity class. More... | |
void gameAPI_t::CleanUpMap | ( | void | ) |
Removed any temporary game entities from the game, and resets the state of the level to the default state.
entity gameAPI_t::FindRandomClassObject | ( | string | entityClassName | ) |
Return a random instance of a specified entity class.
entityClassName | is the desired entity class name, such as "info_player_deathmatch". |
__NULL__
when not existant in the map/level. string gameAPI_t::GetMap | ( | void | ) |
Returns the name of the map/level.
"tw_grime"
string gameAPI_t::GetNextMap | ( | void | ) |
Returns the name of the next map/level in the rotation.
"tw_dune"
void gameAPI_t::LoadNextMap | ( | void | ) |
Force loads the next map/level in the rotation.
If none is set, the map will restart.
void gameAPI_t::SetSpawnPoint | ( | string | spawnPointClass | ) |
Sets the default spawn-point class to custom one.
Does not affect members of teams, which have their own API.
spawnPointClass | is the name of the spawn-point class, such as "info_player_start" . |
void gameAPI_t::TeleportToSpawn | ( | entity | teleportingEntity | ) |
Teleports an entity to their ideal spawn-point.
teleportingEntity | is the entity to teleport. |