Nuclide
Software Development Kit for id Technology (BETA)
Player.h
1/*
2 * Copyright (c) 2016-2022 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
17noref .vector v_angle;
18
62class
64{
65public:
66 void ncPlayer(void);
67
68 virtual void ProcessInput(void);
69 virtual void PreFrame(void);
70 virtual void PostFrame(void);
71
72 virtual void Physics_Fall(float);
73 virtual void Physics_Crouch(void);
74 virtual void Physics_Prone(void);
75 virtual void Physics_Jump(void);
76 virtual void Physics_CheckJump(float);
77 virtual void Physics_SetViewParms(void);
78 virtual void Physics_WaterJump(void);
79 virtual void Physics_WaterMove(void);
80 virtual float Physics_MaxSpeed(void);
81 virtual void Physics_InputPreMove(void);
82 virtual void Physics_InputPostMove(void);
83 virtual void Physics_Run(void);
84
85 virtual bool IsFakeSpectator(void);
86 virtual bool IsRealSpectator(void);
87 virtual bool IsDead(void);
88 virtual bool IsPlayer(void);
89 virtual void SharedInputFrame(void);
90
92 virtual bool CanSprint(void);
94 virtual bool CanProne(void);
96 virtual bool CanCrouch(void);
98 virtual bool CanLean(void);
99
101 virtual void UpdatePlayerAnimation(float);
102
103 virtual void Damage(entity, entity, ncDict, float, vector, vector);
104 virtual bool CanPickupEntity(ncEntity toPickUp, float massLimit, float sizeLimit);
105
106#ifdef CLIENT
107 virtual void VehicleRelink(void);
108 virtual void OnRemoveEntity(void);
109 virtual void ReceiveEntity(float,float);
110 virtual void _ReceiveComplete(float, float);
111 virtual void PredictPreFrame(void);
112 virtual void PredictPostFrame(void);
113 virtual void ClientInputFrame(void);
114
115 virtual vector CalculateLean(vector);
116 virtual void UpdateAliveCam(void);
117
119 virtual void UpdatePlayerJaw(float);
120
122 virtual void UpdatePlayerAttachments(bool);
123
124 virtual float predraw(void);
125 virtual void postdraw(void);
126
127#endif
128
129#ifdef SERVER
130 /* overrides */
131 virtual void Save(float);
132 virtual void Restore(string,string);
133 virtual void Spawned(void);
134 virtual void Respawn(void);
135 virtual void EvaluateEntity(void);
136 virtual float SendEntity(entity,float);
137 virtual void Death(entity, entity, int, vector, vector, int);
138 virtual void ServerInputFrame(void);
139 virtual void Input(entity, string, string);
140
142 virtual float OptimiseChangedFlags(entity,float);
143
145 virtual void MakePlayer(void);
147 virtual void MakeTempSpectator(void);
149 virtual void MakeSpectator(void);
150
152 virtual void InputUse_Down(void);
154 virtual void InputUse_Up(void);
155
156 /* Returns whether we're able to pick up an entity in the game with +use. If `true` you can then use PickupEntity() to attach it to the player. */
157 virtual bool CanPickupEntity(ncEntity, float, float);
158 /* Will attach an entity to the player. It's position will continously update in front of the player camera, but in XR modes it may be attached to one of the hands instead.*/
159 nonvirtual void PickupEntity(ncEntity);
160
161#endif
162
163 virtual void Footsteps_Update(void);
164
165 nonvirtual void _UpdatePMoveVars(void);
166
167private:
168
169#ifdef CLIENT
170 NETWORKED_INT(weaponframe)
171 NETWORKED_FLOAT(vehicle_entnum)
172#endif
173
174#ifdef SERVER
175 NETWORKED_INT_N(weaponframe)
176 float nadeCookingTime;
177#endif
178
179 NETWORKED_FLOAT(health)
180
181 NETWORKED_FLOAT_N(colormap)
182 NETWORKED_FLOAT_N(gflags)
183 NETWORKED_FLOAT(viewzoom)
184 NETWORKED_VECTOR_N(view_ofs)
185 NETWORKED_VECTOR_N(basevelocity)
186 NETWORKED_VECTOR_N(v_angle)
187 NETWORKED_FLOAT_N(gravity)
188 NETWORKED_FLOAT_N(friction)
189
190 NETWORKED_FLOAT(w_attack_next)
191 NETWORKED_FLOAT(w_idle_next)
192 NETWORKED_FLOAT(w_reload_next)
193 NETWORKED_FLOAT(jump_time)
194 NETWORKED_FLOAT(teleport_time)
195 NETWORKED_FLOAT(weapontime)
196 NETWORKED_VECTOR(punchangle)
197 NETWORKED_VECTOR(punchvelocity)
198
199 /* We can't use the default .items field, because FTE will assume
200 * effects of some bits. Such as invisibility, quad, etc.
201 * also, modders probably want 32 bits for items. */
202 NETWORKED_INT(g_items)
203 NETWORKED_FLOAT_N(activeweapon)
204 ncItem m_itemList_net;
205 int m_iAmmoTypes_net[MAX_AMMO_TYPES];
206
207
208 /* vehicle info */
209 NETWORKED_ENT(vehicle)
210
211 /* these are NOT networked */
212 int a_ammo1;
213 int a_ammo2;
214 int a_ammo3;
215
216 NETWORKED_VECTOR(grapvelocity)
217
218#ifdef CLIENT
219 int sequence;
220
221 /* external weapon model */
222 ncRenderableEntity p_model;
223 int p_hand_bone;
224 int p_model_bone;
225 float lastweapon;
226#endif
227 ncPMoveVars m_pmoveVars;
228
229#ifdef SERVER
230 int voted;
231 int step;
232 float step_time;
233
234 int m_iUnderwaterDamage;
235 float m_flUnderwaterTime;
236 float m_flPainTime;
237
238 entity last_used;
239
240 float pb_angle_delta;
241 float pb_player_delta;
242 vector pb_last_angles;
243
244 int m_iFriendlyDMG;
245#endif
246
247 entity m_holdingEntity;
248};
249
250/* all potential SendFlags bits we can possibly send */
252{
253 PLAYER_MODELINDEX,
254 PLAYER_ORIGIN,
255 PLAYER_ANGLES,
256 PLAYER_VELOCITY,
257 PLAYER_FLAGS,
258 PLAYER_WEAPON,
259 PLAYER_ITEMS,
260 PLAYER_HEALTH,
261 PLAYER_SIZE,
262 PLAYER_MOVETYPE,
263 PLAYER_PUNCHANGLE,
264 PLAYER_VIEWZOOM,
265 PLAYER_TIMINGS,
266 PLAYER_VEHICLE,
267 PLAYER_SPECTATE,
268 PLAYER_AMMOTYPES,
269 PLAYER_WEAPONFRAME,
270 PLAYER_CUSTOMFIELDSTART,
271};
272
273#ifdef SERVER
274void obituary(string, string, string, string);
275#endif
276
277.bool _isPlayer;
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 entity class represents inventory items, weapons.
Definition: Item.h:138
This class networks pmove related variables to each client.
Definition: pmove.h:45
This entity class represents every player client.
Definition: Player.h:64
virtual void InputUse_Up(void)
Called when we let go of the button bound to +use.
virtual void Input(entity, string, string)
Called when we are being prompted by another object/function with an input message.
virtual void Respawn(void)
Server: Called when the entity first spawns or when game-logic requests the entity to return to its o...
nonvirtual void PickupEntity(ncEntity)
virtual void Restore(string, string)
Similar to ncIO::SpawnKey() but for save-game fields.
virtual bool CanPickupEntity(ncEntity, float, float)
virtual float OptimiseChangedFlags(entity, float)
Helper function that will optimise the changed-flags of your player entity.
virtual float SendEntity(entity, float)
Called by the engine whenever we need to send a client an update about this entity.
virtual void EvaluateEntity(void)
Run each tic after physics are run to determine if we need to send updates over the network.
virtual void Save(float)
Handles saving a copy of this entity to a given filehandle.
virtual void InputUse_Down(void)
Called when we press the button bound to +use.
virtual void MakePlayer(void)
When called, will turn the client into a proper player.
virtual void MakeTempSpectator(void)
When called, will turn the client into a spectator until the next round.
virtual void MakeSpectator(void)
When called, will turn the client into a general spectator.
virtual void Spawned(void)
Called when the entity is fulled initialized.
virtual void Death(entity, entity, int, vector, vector, int)
Called when the health is equal or below 0.
virtual void ServerInputFrame(void)
Server: This is where the input* variables arrive after sending them out from the client (see ClientI...
This entity represents any ncEntity with advanced rendering properties.
Definition: RenderableEntity.h:94
This entity class represents every spectator client.
Definition: Spectator.h:69
typedef enumflags
Defines the valid alignment flags for text fields.
Definition: font.h:37