Nuclide
Software Development Kit for id Technology (BETA)
MapDelegate.h
1/*
2 * Copyright (c) 2016-2020 Marco Cawthorne <marco@icculus.org>
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
56{
57public:
58 void ncMapDelegate(void);
59
60 /* overrides */
61 virtual void Save(float);
62 virtual void Restore(string,string);
63 virtual void RestoreComplete(void);
64 virtual void Input(entity, string, string);
65
67 virtual void InitPostEnts(void);
68
69 /* logic */
71 virtual void FrameStart(void);
73 virtual bool ConsoleCommand(ncPlayer,string);
75 virtual bool ClientCommand(ncClient,string);
77 virtual bool ImpulseCommand(ncClient, float);
78
79 /* client */
81 virtual void PlayerConnect(ncPlayer);
83 virtual void PlayerDisconnect(ncPlayer);
85 virtual void PlayerKill(ncPlayer);
87 virtual void PlayerSpawn(ncPlayer);
89 virtual void PlayerPreFrame(ncPlayer);
91 virtual void PlayerPostFrame(ncPlayer);
93 virtual void PlayerDeath(ncPlayer, ncEntity, ncEntity, string);
95 virtual void PlayerPain(ncPlayer, ncActor, ncDict);
97 virtual bool PlayerCanAttack(ncPlayer);
99 virtual void NPCDeath(ncActor, ncEntity, ncEntity);
100
105 virtual bool PlayerRequestRespawn(ncPlayer);
106
109 virtual bool PlayerRequestTeam(ncPlayer, int team);
110
111 /* level transitions */
113 virtual void LevelNewParms(void);
115 virtual void LevelChangeParms(ncPlayer);
116
117 /* Entities/Item manipulation */
119 virtual int MaxItemPerSlot(int);
121 virtual bool MonstersSpawn(void);
122
123 /* end of a game */
125 virtual void IntermissionStart(void);
127 virtual void IntermissionCycle(void);
129 virtual void IntermissionEnd(void);
131 virtual void IntermissionToPlayer(ncPlayer);
133 virtual bool InIntermission(void);
134
136 virtual bool IsTeamplay(void);
138 virtual bool IsMultiplayer(void);
139
140
141 /* chat related methods */
144 virtual void ChatMessageAll(ncClient, string);
145
148 virtual void ChatMessageTeam(ncClient, string);
149
151 virtual string Title(void);
152
153 nonvirtual ncMapDelegate LinkProgs(void);
154
155 /* spectator */
156 /*
157 virtual void SpectatorConnect(ncPlayer);
158 virtual void SpectatorDisconnect(ncPlayer);
159 virtual void SpectatorThink(ncPlayer);
160 */
161
162};
163
164/* our currently running mode */
165ncMapDelegate g_grMap;
166var float g_mapCProgs;
167var string g_mapCName;
168
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