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.
98 lines
3.0 KiB
98 lines
3.0 KiB
1 year ago
|
#ifndef _INCLUDED_ASW_MORTARBUG_H
|
||
|
#define _INCLUDED_ASW_MORTARBUG_H
|
||
|
#ifdef _WIN32
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#include "asw_alien.h"
|
||
|
#include "ai_blended_movement.h"
|
||
|
#include "util_shared.h"
|
||
|
|
||
|
class CASW_Door;
|
||
|
class CASW_Drone_Movement;
|
||
|
|
||
|
class CASW_Mortarbug : public CASW_BlendedAlien
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
DECLARE_CLASS( CASW_Mortarbug, CASW_BlendedAlien );
|
||
|
DECLARE_DATADESC();
|
||
|
CASW_Mortarbug( void );
|
||
|
virtual ~CASW_Mortarbug( void );
|
||
|
|
||
|
void Spawn();
|
||
|
void Precache();
|
||
|
float GetIdealSpeed() const;
|
||
|
float GetIdealAccel( ) const;
|
||
|
float MaxYawSpeed( void );
|
||
|
|
||
|
Class_T Classify( void ) { return CLASS_VORTIGAUNT; } // TODO: Different class from harvesters?
|
||
|
virtual bool OverrideMoveFacing( const AILocalMoveGoal_t &move, float flInterval );
|
||
|
virtual int SelectSchedule();
|
||
|
virtual int SelectMortarbugCombatSchedule();
|
||
|
virtual int SelectDeadSchedule();
|
||
|
virtual void BuildScheduleTestBits();
|
||
|
virtual int SelectFlinchSchedule_ASW();
|
||
|
virtual bool ShouldGib( const CTakeDamageInfo &info );
|
||
|
virtual int TranslateSchedule( int scheduleType );
|
||
|
virtual void StartTask( const Task_t *pTask );
|
||
|
virtual void RunTask( const Task_t *pTask );
|
||
|
virtual void NPCThink();
|
||
|
virtual void Event_Killed( const CTakeDamageInfo &info );
|
||
|
virtual int OnTakeDamage_Alive( const CTakeDamageInfo &info );
|
||
|
|
||
|
virtual float InnateRange1MinRange( void );
|
||
|
virtual float InnateRange1MaxRange( void );
|
||
|
virtual int RangeAttack1Conditions( float flDot, float flDist );
|
||
|
virtual bool FCanCheckAttacks();
|
||
|
virtual bool WeaponLOSCondition(const Vector &ownerPos, const Vector &targetPos, bool bSetConditions);
|
||
|
virtual bool InnateWeaponLOSCondition( const Vector &ownerPos, const Vector &targetPos, bool bSetConditions );
|
||
|
virtual void HandleAnimEvent( animevent_t *pEvent );
|
||
|
CBaseEntity* SpawnProjectile();
|
||
|
virtual bool GetSpitVector( const Vector &vecStartPos, const Vector &vecTarget, Vector *vecOut );
|
||
|
virtual bool SeenEnemyWithinTime( float flTime );
|
||
|
|
||
|
virtual void StartTouch( CBaseEntity *pOther );
|
||
|
|
||
|
// sounds
|
||
|
virtual void PainSound( const CTakeDamageInfo &info );
|
||
|
virtual void AlertSound();
|
||
|
virtual void DeathSound( const CTakeDamageInfo &info );
|
||
|
virtual void AttackSound();
|
||
|
virtual void IdleSound();
|
||
|
virtual bool ShouldPlayIdleSound();
|
||
|
|
||
|
virtual bool IsHeavyDamage( const CTakeDamageInfo &info );
|
||
|
|
||
|
bool CanFireMortar( const Vector &vecSrc, const Vector &vecDest, bool bDrawArc );
|
||
|
int FindMortarNode( const Vector &vThreatPos, float flMinThreatDist, float flMaxThreatDist, float flBlockTime );
|
||
|
Vector GetMortarFireSource( const Vector *vecStandingPos );
|
||
|
|
||
|
float m_fLastFireTime;
|
||
|
float m_fLastTouchHurtTime;
|
||
|
float m_fGibTime;
|
||
|
float m_flIdleDelay;
|
||
|
Vector m_vecSaveSpitVelocity;
|
||
|
static float s_fNextSpawnSoundTime;
|
||
|
static float s_fNextPainSoundTime;
|
||
|
|
||
|
private:
|
||
|
DEFINE_CUSTOM_AI;
|
||
|
};
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
SCHED_ASW_MORTARBUG_SPIT = LAST_ASW_ALIEN_SHARED_SCHEDULE,
|
||
|
SCHED_ESTABLISH_LINE_OF_MORTAR_FIRE,
|
||
|
LAST_ASW_MORTARBUG_SHARED_SCHEDULE,
|
||
|
};
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
TASK_MORTARBUG_SPIT = LAST_ASW_ALIEN_SHARED_TASK,
|
||
|
TASK_GET_PATH_TO_MORTAR_ENEMY,
|
||
|
LAST_ASW_MORTARBUG_SHARED_TASK,
|
||
|
};
|
||
|
|
||
|
#endif //_INCLUDED_ASW_MORTARBUG_H
|