Nuclide
Software Development Kit for id Technology (BETA)
Actor.h
1/*
2 * Copyright (c) 2016-2024 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
17/* TODO: serverinfo based checks for prediction reasons */
18var bool autocvar_g_infiniteAmmo = false;
19
20var bool autocvar_ai_debugNav = false;
21void
22_ncActor_Log(string className, string functionName, float edictNum, string warnMessage)
23{
24 if (autocvar_g_logTimestamps)
25 printf("^9%f ^5%s (%d) ^7: %s\n", time, functionName, edictNum, warnMessage);
26 else
27 printf("^5%s (%d) ^7: %s\n", functionName, edictNum, warnMessage);
28}
29#define ncActor_Log(...) if (autocvar_g_logLevel >= LOGLEVEL_DEBUG) _ncActor_Log(classname, __FUNC__, num_for_edict(this), sprintf(__VA_ARGS__))
30
31/* for AI identification purposes */
32typedef enum
33{
34 WPNTYPE_INVALID, /* no logic */
35 WPNTYPE_RANGED, /* will want to keep their distance mostly */
36 WPNTYPE_THROW, /* has to keep some distance, but not too far */
37 WPNTYPE_CLOSE, /* have to get really close */
38 WPNTYPE_FULLAUTO, /* for things that need to be held down */
39 WPNTYPE_SEMI /* semi automatic */
40} weapontype_t;
41
88class
90{
91
92public:
93 void ncActor(void);
94
96 virtual bool CanSprint(void);
98 virtual bool CanProne(void);
100 virtual bool CanCrouch(void);
102 virtual bool CanLean(void);
103
105 virtual float GetForwardSpeed(void);
107 virtual float GetSideSpeed(void);
109 virtual float GetBackSpeed(void);
110
111
112 nonvirtual float GetStamina(void);
113
115 nonvirtual bool IsCrouching(void);
117 nonvirtual bool IsProne(void);
119 nonvirtual bool IsStanding(void);
121 nonvirtual bool IsSprinting(void);
123 nonvirtual bool IsLeaning(void);
124
125 /* ammo handling */
127 nonvirtual bool MaxAmmo(int);
129 nonvirtual bool GiveAmmo(int, int);
131 nonvirtual bool UseAmmo(int, int);
133 nonvirtual bool HasAmmo(int, int);
135 nonvirtual int GetReserveAmmo(int);
136
137 /* inventory handling */
139 nonvirtual bool GiveItem(string);
141 nonvirtual bool RemoveItem(string);
143 nonvirtual bool AddItem(ncItem);
145 nonvirtual bool HasItem(string);
147 nonvirtual bool HasExactItem(ncItem);
149 nonvirtual bool RemoveAllItems(bool);
151 nonvirtual bool RemoveAllWeapons(void);
153 nonvirtual string GetCurrentWeapon(void);
155 nonvirtual void SwitchToWeapon(string);
157 nonvirtual void SwitchToExactWeapon(ncWeapon);
158 nonvirtual void SwitchToBestWeapon(bool);
159
160 nonvirtual void LaunchProjectile(string, bool, float);
161 nonvirtual bool PlantCharge(string);
162
164 virtual ncWeapon SortWeaponChain(void);
166 nonvirtual ncWeapon GetNextWeapon(void);
168 nonvirtual ncWeapon GetPreviousWeapon(void);
170 nonvirtual ncWeapon GetLastWeapon(void);
171
172 virtual void AddedItemCallback(ncItem);
173 virtual void SpawnKey(string,string);
174
175#ifdef SERVER
176 /* overrides */
177 virtual void Save(float);
178 virtual void Restore(string,string);
179 virtual void RestoreComplete(void);
180 virtual void Spawned(void);
181 virtual void Input(entity, string, string);
182 virtual void DebugDraw(void);
183
185 virtual void SelectNewSchedule(void);
186 nonvirtual void ThinkSchedules(void);
187
189 nonvirtual bool CancelSchedule(void);
190 nonvirtual void PerformSchedule(string);
191 nonvirtual void MessageSchedule(string);
192 nonvirtual bool IsPerforming(void);
193
194 /* methods we'd like others to override */
196 virtual bool CanCrouch(void);
198 nonvirtual vector GetRouteMovevalues(void);
200 nonvirtual vector GetRouteDirection(void);
202 nonvirtual void SetMoveSpeedScale(float);
204 nonvirtual float GetMoveSpeedScale(void);
205
207 virtual void RouteEnded(void);
209 virtual void RouteClear(void);
211 virtual void CheckRouteProgression(void);
213 virtual void RouteToPosition(vector);
215 virtual void RouteToPositionDenyFlags(vector, int);
217 virtual void ChasePath(string startPath);
219 virtual void CheckRouteProgression_Path(void);
221 virtual void Physics_Run(void);
222#endif
223
224private:
225#ifdef SERVER
226 /* pathfinding */
227 int m_iNodes;
228 int m_iCurNode;
229 nodeslist_t *m_pRoute;
230 vector m_vecLastNode;
231 vector m_vecTurnAngle;
232 string m_pathTarget;
233 ncEntity m_pathEntity;
234 float _m_flRouteGiveUp;
235 vector _m_vecRoutePrev;
236 vector m_vecRouteEntity;
237 entity m_eFollowing;
238 float m_flMoveSpeedKey;
239 string m_mindset;
240#endif
241
242 /* sounds, may even be predicted. */
243 string m_sndStepLadderLeft;
244 string m_sndStepLadderRight;
245 string m_sndDeath;
246 string m_sndFall;
247 string m_sndPainSmall;
248 string m_sndPainMedium;
249 string m_sndPainLarge;
250 string m_sndPainHuge;
251 string m_sndLandSoft;
252 string m_sndLandHard;
253 string m_sndHitArmor;
254 string m_sndHitFlesh;
255 string m_sndAirGaspHeavy;
256 string m_sndAirGaspLight;
257 string m_sndNoAir;
258 string m_sndTeleportExit;
259 string m_sndTeleportStart;
260 string m_sndWaterExit;
261 string m_sndWaterEnter;
262 string m_sndWaterWade;
263 string m_sndWaterSwim;
264 string m_sndBurn;
265 string m_sndHealthtake;
266 string m_sndUseDeny;
267 string m_sndUseSuccess;
268
269 float nadeCookingTime;
270 /* These are defined in side defs\*.def, ammo_types and ammo_names */
271 int m_iAmmoTypes[MAX_AMMO_TYPES];
272 ncWeapon m_activeWeapon_net;
273 float activeweapon;
274 NETWORKED_FLOAT(m_flFirstInventoryItem)
275 NETWORKED_FLOAT(m_flStamina)
276};
277
278/* for now here to make debugging easier */
279.ncItem m_itemList;
280.ncWeapon m_activeWeapon;
281.ncWeapon m_firstWeapon;
282.bool _isActor;
283
284void ncActor_ListInventory(ncActor);
285
This entity class represents an object with choreographed/free-form movement.
Definition: Actor.h:90
virtual bool CanCrouch(void)
Returns if this class is capable of crouching.
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 entity represents an ncRenderableEntity with interactive surface properties.
Definition: SurfacePropEntity.h:52
This entity class represents weapon based items.
Definition: Weapon.h:298
void ncWeapon(void)
Definition: Weapon.qc:18