mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-09-21 20:15:06 +03:00
82 lines
2.5 KiB
C++
82 lines
2.5 KiB
C++
//========= Copyright © 2019, Overcharged. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
#ifndef NPC_GONOME_H
|
|
#define NPC_GONOME_H
|
|
|
|
#include "ai_basenpc.h"
|
|
#include "npc_BaseZombie.h"
|
|
|
|
class CNPC_Gonome : public CAI_BaseNPC
|
|
{
|
|
DECLARE_CLASS( CNPC_Gonome, CAI_BaseNPC );
|
|
|
|
public:
|
|
void Spawn( void );
|
|
void Precache( void );
|
|
Class_T Classify( void );
|
|
|
|
void IdleSound( void );
|
|
void PainSound( const CTakeDamageInfo &info );
|
|
void AlertSound( void );
|
|
void DeathSound( const CTakeDamageInfo &info );
|
|
void AttackSound( void );
|
|
|
|
float MaxYawSpeed( void );
|
|
|
|
void HandleAnimEvent( animevent_t *pEvent );
|
|
|
|
int RangeAttack1Conditions( float flDot, float flDist );
|
|
int MeleeAttack1Conditions( float flDot, float flDist );
|
|
int MeleeAttack2Conditions( float flDot, float flDist );
|
|
|
|
void TraceAttack(const CTakeDamageInfo &info, const Vector &vecDir, trace_t *ptr, CDmgAccumulator *pAccumulator);
|
|
|
|
void Ignite( float flFlameLifetime, bool bNPCOnly = true, float flSize = 0.0f, bool bCalledByLevelDesigner = false );
|
|
|
|
bool IsJumpLegal(const Vector &startPos, const Vector &apex, const Vector &endPos) const;
|
|
bool ShouldIgnite( const CTakeDamageInfo &info );
|
|
|
|
mutable float m_flJumpDist;
|
|
|
|
bool FValidateHintType ( CAI_Hint *pHint );
|
|
void RemoveIgnoredConditions( void );
|
|
Disposition_t IRelationType( CBaseEntity *pTarget );
|
|
int OnTakeDamage_Alive( const CTakeDamageInfo &inputInfo );
|
|
|
|
int GetSoundInterests ( void );
|
|
void RunAI ( void );
|
|
virtual void OnListened ( void );
|
|
|
|
int SelectSchedule( void );
|
|
int TranslateSchedule( int scheduleType );
|
|
|
|
bool FInViewCone ( Vector pOrigin );
|
|
bool FVisible ( Vector vecOrigin );
|
|
|
|
void StartTask ( const Task_t *pTask );
|
|
void RunTask ( const Task_t *pTask );
|
|
void PrescheduleThink( void );
|
|
|
|
virtual void Event_Killed(const CTakeDamageInfo &info);
|
|
|
|
float m_flBurnDamage; // Keeps track of how much burn damage we've incurred in the last few seconds.
|
|
float m_flBurnDamageResetTime; // Time at which we reset the burn damage.
|
|
|
|
NPC_STATE SelectIdealState ( void );
|
|
|
|
DEFINE_CUSTOM_AI;
|
|
DECLARE_DATADESC()
|
|
|
|
private:
|
|
|
|
bool m_fCanThreatDisplay;// this is so the squid only does the "I see a headcrab!" dance one time.
|
|
float m_flLastHurtTime;// we keep track of this, because if something hurts a squid, it will forget about its love of headcrabs for a while.
|
|
float m_flNextSpitTime;// last time the bullsquid used the spit attack.
|
|
float m_flHungryTime;// set this is a future time to stop the monster from eating for a while.
|
|
};
|
|
#endif // NPC_GONOME_H
|