61 virtual void Save(
float);
62 virtual void Restore(
string,
string);
64 virtual void Input(entity,
string,
string);
151 virtual string Title(
void);
166var
float g_mapCProgs;
167var
string g_mapCName;
169#define RULEMAP(x, y, z) x.y = externvalue(g_mapCProgs, z); if (!x.y) { x.y = ncMapDelegate::y; }
This entity class represents an object with choreographed/free-form movement.
Definition: Actor.h:90
This entity class is the lowest client/player class.
Definition: Client.h:26
This class is responsible for handling groups of key/value pairs.
Definition: Dict.h:42
ncEntity is the lowest of the user-accessible entity class.
Definition: Entity.h:75
This class is responsible for handling core entity functionality.
Definition: IO.h:78
This class delegates active MapC logic.
Definition: MapDelegate.h:56
virtual void ChatMessageAll(ncClient, string)
Called by Nuclide when the server has received a chat message that is to be distributed amongst all c...
Definition: MapDelegate.qc:367
virtual void RestoreComplete(void)
Called when the entity has been successfully restored from a savegame file.
Definition: MapDelegate.qc:70
virtual bool ImpulseCommand(ncClient, float)
Overridable: Called when a client issues an impulse command.
Definition: MapDelegate.qc:100
virtual void Save(float)
Handles saving a copy of this entity to a given filehandle.
Definition: MapDelegate.qc:41
virtual bool PlayerCanAttack(ncPlayer)
Overridable: Called to check if a ncPlayer can attack.
Definition: MapDelegate.qc:349
virtual void NPCDeath(ncActor, ncEntity, ncEntity)
Overridable:: Called when an NPC gets killed.
Definition: MapDelegate.qc:130
virtual void IntermissionEnd(void)
Called when intermission ends.
Definition: MapDelegate.qc:331
virtual void InitPostEnts(void)
Overridable: Called when all map entities have initialized.
Definition: MapDelegate.qc:78
virtual void PlayerPostFrame(ncPlayer)
Overridable: Called after running physics on the ncPlayer in question.
Definition: MapDelegate.qc:177
virtual void PlayerDeath(ncPlayer, ncEntity, ncEntity, string)
Overridable: Called when a ncPlayer dies in the game.
Definition: MapDelegate.qc:135
virtual void PlayerKill(ncPlayer)
Overridable: Called when a ncPlayer issues the kill console command.
Definition: MapDelegate.qc:119
virtual bool PlayerRequestTeam(ncPlayer, int team)
Overridable: called when a ncPlayer requests joining a specific team.
Definition: MapDelegate.qc:361
virtual bool ClientCommand(ncClient, string)
Overridable: Called when a client issues a client command.
Definition: MapDelegate.qc:94
virtual void IntermissionToPlayer(ncPlayer)
Run to send a specific player to an intermission.
Definition: MapDelegate.qc:284
virtual void IntermissionStart(void)
Called when intermission starts.
Definition: MapDelegate.qc:218
nonvirtual ncMapDelegate LinkProgs(void)
Definition: MapDelegate.qc:425
virtual void PlayerPain(ncPlayer, ncActor, ncDict)
Overridable: Called when a ncPlayer feels pain.
Definition: MapDelegate.qc:161
void ncMapDelegate(void)
Definition: MapDelegate.qc:18
virtual void IntermissionCycle(void)
Called when the intermission system calls a new map.
Definition: MapDelegate.qc:233
virtual void PlayerDisconnect(ncPlayer)
Overridable: Called when a ncPlayer leaves the server.
Definition: MapDelegate.qc:113
virtual void PlayerConnect(ncPlayer)
Overridable: Called when a ncPlayer joins the server.
Definition: MapDelegate.qc:106
virtual void LevelChangeParms(ncPlayer)
Overridable: Called to store parms for a specific ncPlayer.
Definition: MapDelegate.qc:189
virtual string Title(void)
Returns the title of the gamemode running.
Definition: MapDelegate.qc:415
virtual bool IsTeamplay(void)
Returns if this gamerule considers itself teamplay oriented.
Definition: MapDelegate.qc:320
virtual void Restore(string, string)
Similar to ncIO::SpawnKey() but for save-game fields.
Definition: MapDelegate.qc:49
virtual void Input(entity, string, string)
Called when we are being prompted by another object/function with an input message.
Definition: MapDelegate.qc:65
virtual void ChatMessageTeam(ncClient, string)
Called by Nuclide when the server has received a chat message that is to be distributed amongst all c...
Definition: MapDelegate.qc:384
virtual void FrameStart(void)
Overridable: Called every server frame.
Definition: MapDelegate.qc:84
virtual bool InIntermission(void)
Returns if the gamerules find themselves in an intermission.
Definition: MapDelegate.qc:307
virtual bool PlayerRequestRespawn(ncPlayer)
Overridable: called when a ncPlayer requests a respawn.
Definition: MapDelegate.qc:355
virtual bool IsMultiplayer(void)
Returns if the gamerule is a multiplayer game.
Definition: MapDelegate.qc:325
virtual bool ConsoleCommand(ncPlayer, string)
Overridable: Called when a client issues a console command.
Definition: MapDelegate.qc:89
virtual void PlayerSpawn(ncPlayer)
Overridable: Called when a ncPlayer spawns, called sometime after joining.
Definition: MapDelegate.qc:167
virtual void LevelNewParms(void)
Overridable: Called to set up new level parms for any ncPlayer.
Definition: MapDelegate.qc:184
virtual int MaxItemPerSlot(int)
Overridable: Returns how many items players can carry in a given slot.
Definition: MapDelegate.qc:212
virtual void PlayerPreFrame(ncPlayer)
Overridable: Called before running physics on the ncPlayer in question.
Definition: MapDelegate.qc:172
virtual bool MonstersSpawn(void)
Overridable: Returns if ncMonster or ncTalkMonster entities can spawn.
Definition: MapDelegate.qc:313
This entity class represents every player client.
Definition: Player.h:64