You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
2.6 KiB
117 lines
2.6 KiB
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//
|
||
|
//=============================================================================//
|
||
|
#ifndef NPC_HGRUNT_H
|
||
|
#define NPC_HGRUNT_H
|
||
|
|
||
|
#include "ai_squad.h"
|
||
|
#include "hl1_ai_basenpc.h"
|
||
|
|
||
|
class CNPC_HGrunt : public CHL1BaseNPC
|
||
|
{
|
||
|
DECLARE_CLASS( CNPC_HGrunt, CHL1BaseNPC );
|
||
|
public:
|
||
|
|
||
|
void Precache( void );
|
||
|
void Spawn( void );
|
||
|
|
||
|
void JustSpoke( void );
|
||
|
void SpeakSentence( void );
|
||
|
void PrescheduleThink ( void );
|
||
|
|
||
|
bool FOkToSpeak( void );
|
||
|
|
||
|
Class_T Classify ( void );
|
||
|
int RangeAttack1Conditions ( float flDot, float flDist );
|
||
|
int MeleeAttack1Conditions ( float flDot, float flDist );
|
||
|
int RangeAttack2Conditions ( float flDot, float flDist );
|
||
|
|
||
|
Activity NPC_TranslateActivity( Activity eNewActivity );
|
||
|
|
||
|
void ClearAttackConditions( void );
|
||
|
|
||
|
int IRelationPriority( CBaseEntity *pTarget );
|
||
|
|
||
|
int GetGrenadeConditions ( float flDot, float flDist );
|
||
|
|
||
|
bool FCanCheckAttacks( void );
|
||
|
|
||
|
int GetSoundInterests ( void );
|
||
|
|
||
|
void TraceAttack( const CTakeDamageInfo &info, const Vector &vecDir, trace_t *ptr, CDmgAccumulator *pAccumulator );
|
||
|
int OnTakeDamage_Alive( const CTakeDamageInfo &inputInfo );
|
||
|
|
||
|
float MaxYawSpeed( void );
|
||
|
|
||
|
void IdleSound( void );
|
||
|
|
||
|
void CheckAmmo ( void );
|
||
|
|
||
|
CBaseEntity *Kick( void );
|
||
|
|
||
|
Vector Weapon_ShootPosition( void );
|
||
|
void HandleAnimEvent( animevent_t *pEvent );
|
||
|
|
||
|
void Shoot ( void );
|
||
|
void Shotgun( void );
|
||
|
|
||
|
void StartTask ( const Task_t *pTask );
|
||
|
void RunTask ( const Task_t *pTask );
|
||
|
|
||
|
int SelectSchedule( void );
|
||
|
int TranslateSchedule( int scheduleType );
|
||
|
|
||
|
|
||
|
void PainSound( const CTakeDamageInfo &info );
|
||
|
void DeathSound( const CTakeDamageInfo &info );
|
||
|
void SetAim( const Vector &aimDir );
|
||
|
|
||
|
bool HandleInteraction(int interactionType, void *data, CBaseCombatCharacter* sourceEnt);
|
||
|
|
||
|
void StartNPC ( void );
|
||
|
|
||
|
int SquadRecruit( int searchRadius, int maxMembers );
|
||
|
|
||
|
void Event_Killed( const CTakeDamageInfo &info );
|
||
|
|
||
|
|
||
|
static const char *pGruntSentences[];
|
||
|
|
||
|
bool m_bInBarnacleMouth;
|
||
|
|
||
|
public:
|
||
|
DECLARE_DATADESC();
|
||
|
DEFINE_CUSTOM_AI;
|
||
|
|
||
|
private:
|
||
|
|
||
|
// checking the feasibility of a grenade toss is kind of costly, so we do it every couple of seconds,
|
||
|
// not every server frame.
|
||
|
float m_flNextGrenadeCheck;
|
||
|
float m_flNextPainTime;
|
||
|
float m_flLastEnemySightTime;
|
||
|
float m_flTalkWaitTime;
|
||
|
|
||
|
Vector m_vecTossVelocity;
|
||
|
|
||
|
int m_iLastGrenadeCondition;
|
||
|
bool m_fStanding;
|
||
|
bool m_fFirstEncounter;// only put on the handsign show in the squad's first encounter.
|
||
|
int m_iClipSize;
|
||
|
|
||
|
int m_voicePitch;
|
||
|
|
||
|
int m_iSentence;
|
||
|
|
||
|
float m_flCheckAttackTime;
|
||
|
|
||
|
int m_iAmmoType;
|
||
|
|
||
|
int m_iWeapons;
|
||
|
};
|
||
|
|
||
|
#endif
|