1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose: Defines the headcrab, a tiny, jumpy alien parasite.
//
//=============================================================================//
#ifndef NPC_HEADCRAB_H
#define NPC_HEADCRAB_H
#ifdef _WIN32
#pragma once
#endif
#include "ai_squadslot.h"
#include "ai_basenpc.h"
#include "soundent.h"
abstract_class CBaseHeadcrab : public CAI_BaseNPC
{
DECLARE_CLASS( CBaseHeadcrab, CAI_BaseNPC );
public:
void Spawn( void );
void Precache( void );
void RunTask( const Task_t *pTask );
void StartTask( const Task_t *pTask );
void OnChangeActivity( Activity NewActivity );
bool IsFirmlyOnGround();
void MoveOrigin( const Vector &vecDelta );
void ThrowAt( const Vector &vecPos );
void ThrowThink( void );
virtual void JumpAttack( bool bRandomJump, const Vector &vecPos = vec3_origin, bool bThrown = false );
void JumpToBurrowHint( CAI_Hint *pHint );
bool HasHeadroom();
void LeapTouch ( CBaseEntity *pOther );
virtual void TouchDamage( CBaseEntity *pOther );
bool CorpseGib( const CTakeDamageInfo &info );
void Touch( CBaseEntity *pOther );
Vector BodyTarget( const Vector &posSrc, bool bNoisy = true );
float GetAutoAimRadius();
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 );
float MaxYawSpeed( void );
void GatherConditions( void );
void PrescheduleThink( void );
Class_T Classify( void );
void HandleAnimEvent( animevent_t *pEvent );
int RangeAttack1Conditions ( float flDot, float flDist );
int OnTakeDamage_Alive( const CTakeDamageInfo &info );
void ClampRagdollForce( const Vector &vecForceIn, Vector *vecForceOut );
void Event_Killed( const CTakeDamageInfo &info );
void BuildScheduleTestBits( void );
bool FValidateHintType( CAI_Hint *pHint );
bool IsJumping( void ) { return m_bMidJump; }
virtual void BiteSound( void ) = 0;
virtual void AttackSound( void ) {};
virtual void ImpactSound( void ) {};
virtual void TelegraphSound( void ) {};
virtual int SelectSchedule( void );
virtual int SelectFailSchedule( int failedSchedule, int failedTask, AI_TaskFailureCode_t taskFailCode );
virtual int TranslateSchedule( int scheduleType );
virtual float GetReactionDelay( CBaseEntity *pEnemy ) { return 0.0; }
bool HandleInteraction(int interactionType, void *data, CBaseCombatCharacter* sourceEnt);
void CrawlFromCanister();
virtual bool AllowedToIgnite( void ) { return true; }
virtual bool CanBeAnEnemyOf( CBaseEntity *pEnemy );
bool IsHangingFromCeiling( void )
{
#ifdef HL2_EPISODIC
return m_bHangingFromCeiling;
#else
return false;
#endif
}
virtual void PlayerHasIlluminatedNPC( CBasePlayer *pPlayer, float flDot );
void DropFromCeiling( void );
DEFINE_CUSTOM_AI;
DECLARE_DATADESC();
protected:
void HeadcrabInit();
void Leap( const Vector &vecVel );
void GrabHintNode( CAI_Hint *pHint );
bool FindBurrow( const Vector &origin, float distance, bool excludeNear );
bool ValidBurrowPoint( const Vector &point );
void ClearBurrowPoint( const Vector &origin );
void Burrow( void );
void Unburrow( void );
void SetBurrowed( bool bBurrowed );
void JumpFromCanister();
// Begins the climb from the canister
void BeginClimbFromCanister();
void InputBurrow( inputdata_t &inputdata );
void InputBurrowImmediate( inputdata_t &inputdata );
void InputUnburrow( inputdata_t &inputdata );
void InputStartHangingFromCeiling( inputdata_t &inputdata );
void InputDropFromCeiling( inputdata_t &inputdata );
int CalcDamageInfo( CTakeDamageInfo *pInfo );
void CreateDust( bool placeDecal = true );
// Eliminates roll + pitch potentially in the headcrab at canister jump time
void EliminateRollAndPitch();
float InnateRange1MinRange( void );
float InnateRange1MaxRange( void );
protected:
int m_nGibCount;
float m_flTimeDrown;
Vector m_vecCommittedJumpPos; // The position of our enemy when we locked in our jump attack.
float m_flNextNPCThink;
float m_flIgnoreWorldCollisionTime;
bool m_bCommittedToJump; // Whether we have 'locked in' to jump at our enemy.
bool m_bCrawlFromCanister;
bool m_bStartBurrowed;
bool m_bBurrowed;
bool m_bHidden;
bool m_bMidJump;
bool m_bAttackFailed; // whether we ran into a wall during a jump.
float m_flBurrowTime;
int m_nContext; // for FValidateHintType context
int m_nJumpFromCanisterDir;
bool m_bHangingFromCeiling;
float m_flIlluminatedTime;
};
//=========================================================
//=========================================================
// The ever popular chubby classic headcrab
//=========================================================
//=========================================================
class CHeadcrab : public CBaseHeadcrab
{
DECLARE_CLASS( CHeadcrab, CBaseHeadcrab );
public:
void Precache( void );
void Spawn( void );
float MaxYawSpeed( void );
Activity NPC_TranslateActivity( Activity eNewActivity );
void BiteSound( void );
void PainSound( const CTakeDamageInfo &info );
void DeathSound( const CTakeDamageInfo &info );
void IdleSound( void );
void AlertSound( void );
void AttackSound( void );
void TelegraphSound( void );
};
//=========================================================
//=========================================================
// The spindly, fast headcrab
//=========================================================
//=========================================================
class CFastHeadcrab : public CBaseHeadcrab
{
DECLARE_DATADESC();
public:
DECLARE_CLASS( CFastHeadcrab, CBaseHeadcrab );
void Precache( void );
void Spawn( void );
bool QuerySeeEntity(CBaseEntity *pSightEnt, bool bOnlyHateOrFearIfNPC = false);
float MaxYawSpeed( void );
void PrescheduleThink( void );
void RunTask( const Task_t *pTask );
void StartTask( const Task_t *pTask );
int SelectSchedule( void );
int TranslateSchedule( int scheduleType );
int m_iRunMode;
float m_flRealGroundSpeed;
float m_flSlowRunTime;
float m_flPauseTime;
Vector m_vecJumpVel;
void BiteSound( void );
void PainSound( const CTakeDamageInfo &info );
void DeathSound( const CTakeDamageInfo &info );
void IdleSound( void );
void AlertSound( void );
void AttackSound( void );
enum SquadSlot_t
{
SQUAD_SLOT_ENGAGE1 = LAST_SHARED_SQUADSLOT,
SQUAD_SLOT_ENGAGE2,
SQUAD_SLOT_ENGAGE3,
SQUAD_SLOT_ENGAGE4,
};
DEFINE_CUSTOM_AI;
};
//=========================================================
//=========================================================
// Treacherous black headcrab
//=========================================================
//=========================================================
class CBlackHeadcrab : public CBaseHeadcrab
{
DECLARE_CLASS( CBlackHeadcrab, CBaseHeadcrab );
public:
void Eject( const QAngle &vecAngles, float flVelocityScale, CBaseEntity *pEnemy );
void EjectTouch( CBaseEntity *pOther );
//
// CBaseHeadcrab implementation.
//
void TouchDamage( CBaseEntity *pOther );
void BiteSound( void );
void AttackSound( void );
//
// CAI_BaseNPC implementation.
//
virtual void PrescheduleThink( void );
virtual void BuildScheduleTestBits( void );
virtual int SelectSchedule( void );
virtual int TranslateSchedule( int scheduleType );
virtual Activity NPC_TranslateActivity( Activity eNewActivity );
virtual void HandleAnimEvent( animevent_t *pEvent );
virtual float MaxYawSpeed( void );
virtual int GetSoundInterests( void ) { return (BaseClass::GetSoundInterests() | SOUND_DANGER | SOUND_BULLET_IMPACT); }
bool IsHeavyDamage( const CTakeDamageInfo &info );
virtual void PainSound( const CTakeDamageInfo &info );
virtual void DeathSound( const CTakeDamageInfo &info );
virtual void IdleSound( void );
virtual void AlertSound( void );
virtual void ImpactSound( void );
virtual void TelegraphSound( void );
#if HL2_EPISODIC
virtual bool FInViewCone( CBaseEntity *pEntity );
#endif
//
// CBaseEntity implementation.
//
virtual void Precache( void );
virtual void Spawn( void );
DEFINE_CUSTOM_AI;
DECLARE_DATADESC();
private:
void JumpFlinch( const Vector *pvecAwayFromPos );
void Panic( float flDuration );
bool m_bPanicState;
float m_flPanicStopTime;
float m_flNextHopTime; // Keeps us from hopping too often due to damage.
};
#endif // NPC_HEADCRAB_H
|