Nuclide
Software Development Kit for id Technology (BETA)
Weapon.h
1/*
2 * Copyright (c) 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
17typedef enumflags
18{
19 WEAPONFL_CHANGED_MODELINDEX,
20 WEAPONFL_CHANGED_ORIGIN,
21 WEAPONFL_CHANGED_ANGLES,
22 WEAPONFL_CHANGED_VELOCITY,
23 WEAPONFL_CHANGED_ANGULARVELOCITY,
24 WEAPONFL_CHANGED_SIZE,
25 WEAPONFL_CHANGED_FLAGS,
26 WEAPONFL_CHANGED_SOLID,
27 WEAPONFL_CHANGED_FRAME,
28 WEAPONFL_CHANGED_SKIN,
29 WEAPONFL_CHANGED_MOVETYPE,
30 WEAPONFL_CHANGED_EFFECTS,
31 WEAPONFL_CHANGED_BODY,
32 WEAPONFL_CHANGED_SCALE,
33 WEAPONFL_CHANGED_ENTITYDEF,
34 WEAPONFL_CHANGED_CLIP,
35 WEAPONFL_CHANGED_CHAIN,
36 WEAPONFL_CHANGED_STATE,
37 WEAPONFL_CHANGED_NEXTWEAPON,
38 WEAPONFL_CHANGED_PREVWEAPON,
39} nsweapon_changed_t;
40
41typedef enum
42{
43 WEAPONSTATE_IDLE,
44 WEAPONSTATE_COCK,
45 WEAPONSTATE_CHARGING,
46 WEAPONSTATE_FIRELOOP,
47 WEAPONSTATE_RELEASED,
48 WEAPONSTATE_OVERHEATED,
49 WEAPONSTATE_DRAW,
50 WEAPONSTATE_RELOAD_START,
51 WEAPONSTATE_RELOAD,
52 WEAPONSTATE_RELOAD_END
53} nsweapon_state_t;
54
55string nsweapon_state_s[] =
56{
57 "WEAPONSTATE_IDLE",
58 "WEAPONSTATE_RELOAD_START",
59 "WEAPONSTATE_RELOAD",
60 "WEAPONSTATE_RELOAD_END",
61 "WEAPONSTATE_CHARGING",
62 "WEAPONSTATE_FIRELOOP",
63 "WEAPONSTATE_RELEASED",
64 "WEAPONSTATE_OVERHEATED"
65};
66
67typedef enum
68{
69 WEPEVENT_FIRED,
70 WEPEVENT_RELOADED
71} nsweapon_event_t;
72
73#define CHAN_LOOP 5
74
296class
298{
299public:
300 void ncWeapon(void);
301
302 virtual void InputFrame(void);
303 virtual void AddedToInventory(void);
304 virtual void RemovedFromInventory(void);
305
306 /* overrides */
307#ifdef SERVER
308 virtual void Spawned(void);
309 virtual void SpawnKey(string, string);
310 virtual void Save(float);
311 virtual void Restore(string, string);
312 virtual void EvaluateEntity(void);
313 virtual float SendEntity(entity,float);
314#endif
315
316 virtual bool TestFireAbility(string);
317
318#ifdef CLIENT
319 virtual void ClientFX(bool);
320 virtual void PredictPreFrame(void);
321 virtual void PredictPostFrame(void);
322 virtual void ReceiveEntity(float,float);
323 virtual void ReceiveEvent(float);
324#endif
325
326 virtual bool UsesSecondaryAmmo(void);
327 virtual bool IsEmpty(void);
328 virtual bool IsWeapon(void);
329 virtual bool HasReserveAmmo(void);
330
332 virtual void Draw(void);
334 virtual void Holster(void);
336 virtual void PrimaryAttack(void);
338 virtual void SecondaryAttack(void);
340 virtual void Reload(void);
342 virtual void Release(void);
344 virtual void Idle(void);
346 virtual void UpdateGUI(void);
347
348 nonvirtual void SetViewModel(string);
349 nonvirtual void SetWorldModel(string);
350 nonvirtual void SetPlayerModel(string);
351 nonvirtual void SetWeaponFrame(float);
352 nonvirtual void PlaySound(string, float, bool);
353
354 /* state */
355 nonvirtual nsweapon_state_t GetWeaponState(void);
356
357 virtual void SetAttackNext(float);
358 virtual void SetReloadNext(float);
359 virtual void SetIdleNext(float);
360 virtual bool CanFire(void);
361 virtual bool CanIdle(void);
362 virtual bool CanReload(void);
363 virtual bool UseAmmo(string);
364
366 virtual void WeaponStartedFiring(void);
368 virtual void WeaponStoppedFiring(void);
369
371 nonvirtual bool WeaponIsFiring(void);
372
374 virtual void FiredWeaponAttack(string);
376 virtual void ReleasedWeaponAttack(string);
377
379 virtual void SwitchedToWeapon(void);
381 virtual void SwitchedFromWeapon(void);
382
384 virtual void UpdateFireInfoCache(void);
385
387 nonvirtual void SwitchFireInfo(string);
388 nonvirtual bool DetonateDef(string);
389 nonvirtual void Attack(string);
390
391private:
393 nonvirtual void _SetWeaponState(nsweapon_state_t);
395 nonvirtual void _SwitchedToCallback(void);
397 nonvirtual void _SwitchedFromCallback(void);
399 nonvirtual void _CacheWeaponDefVariables(void);
400 nonvirtual void _WeaponStartedFiring(void);
401 nonvirtual void _WeaponStoppedFiring(void);
402 nonvirtual void _PrimaryAttack(void);
403 nonvirtual void _SecondaryAttack(void);
404 nonvirtual void _SwitchedWeaponMode(void);
405 virtual void _AddedCallback(void);
406 virtual void _RemovedCallback(void);
407
409 nonvirtual ncWeapon GetNextWeapon(void);
411 nonvirtual ncWeapon GetPreviousWeapon(void);
413 nonvirtual void EmptySound(void);
415 nonvirtual void SetViewZoom(float);
416
417#ifdef CLIENT
418 virtual void HandleAnimEvent(float, int, string);
419#endif
420
421#ifdef SERVER
422 nonvirtual void _ReloadFinished(void);
423#endif
424
425 /* weapon related spawn keys */
426 string m_strWeaponTitle;
427 int m_iHudSlot;
428 int m_iHudSlotPos;
429 string m_icon;
430 string m_iconSel;
431
432 string m_strWeaponViewModel;
433 string m_strWeaponPlayerModel;
434 string m_strWeaponScript;
435 string m_strAmmoType;
436 bool m_bAmmoRequired;
437 int m_iClipStartSize;
438 string m_strFlashShader;
439 string m_strFlashModel;
440 vector m_vecFlashColor;
441 float m_flFlashRadius;
442 string m_strDropItemDef;
443 string m_strSmokeParticle;
444 bool m_bSmokeContinous;
445 float m_fxTrail;
446
447 /* extra networking */
448 bool m_bFiring;
449
450 /* cached variables. don't save - recalculate! */
451 string m_primaryFireInfo;
452 string m_secondaryFireInfo;
453 int m_primaryAmmoType;
454 int m_secondaryAmmoType;
455 float m_flPrimedFuse;
456 float m_flTriggerDelay;
457 float m_flZoomFOV;
458 bool m_bPowerAmmo;
459 bool m_bRemoveOnEmpty;
460 string m_strLastFireInfo;
461 float m_jointTrailWorld;
462 float m_jointTrailView;
463 float m_flSpeedMod;
464 bool m_bAltModeSwitch;
465 bool m_bBuggyIdleAnim;
466
467 float m_nextWeapon_entnum;
468 float m_prevWeapon_entnum;
469 ncWeapon m_nextWeapon_net;
470 ncWeapon m_prevWeapon_net;
471
472 /* cached fireInfo */
473 string m_fiDetonateOnFire;
474 vector m_fiPunchAngle;
475 vector m_fiPunchSpring;
476 string m_fiSndFire;
477 string m_fiSndFailed;
478 string m_fiSndFireLast;
479 string m_fiSndRelease;
480 string m_fiSndEmpty;
481 int m_fiAmmoType;
482 int m_fiAmmoPerShot;
483 bool m_fiAmmoRequired;
484 float m_fiFireRate;
485 string m_fiOnFire;
486 string m_fiOnRelease;
487 bool m_fiWillRelease;
488 bool m_fiSemiAuto;
489 string m_fiSndFireLoop;
490 float m_flReloadSpeed;
491 float m_fiChargeTime;
492 bool m_bHasLoop;
493 string m_fiSndFireStart;
494 string m_fiSndFireStop;
495 string m_fiSndFireLoop;
496 bool m_fiDrawAfterRelease;
497 bool m_fireUnderwater;
498
499 bool m_fiCocks;
500 string m_fiSndCock;
501
502 string m_fiBrassDef;
503 float m_fiBrassDelay;
504
505 /* overheating */
506 float m_fiOverheatLength;
507 float m_fiOverheatPoints;
508
509 NETWORKED_INT(m_iClip)
510 NETWORKED_INT(m_iClipSize)
511 NETWORKED_FLOAT(m_iMode)
512 NETWORKED_MODELINDEX(m_viewModel)
513 NETWORKED_MODELINDEX(m_worldModel)
514 NETWORKED_MODELINDEX(m_playerModel)
515 NETWORKED_FLOAT(m_flFireRate)
516 NETWORKED_FLOAT(m_dState)
517 NETWORKED_BOOL(m_bFiring)
518 NETWORKED_BOOL(m_flOverheating)
519};
520
521.ncWeapon m_nextWeapon;
522.ncWeapon m_prevWeapon;
523
This entity class represents inventory items, weapons.
Definition: Item.h:138
This entity class represents weapon based items.
Definition: Weapon.h:298
void ncWeapon(void)
Definition: Weapon.qc:18
typedef enumflags
Defines the valid alignment flags for text fields.
Definition: font.h:37