Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
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.
 
 
 
 
 
 

49 lines
1.5 KiB

//========= Copyright Valve Corporation, All rights reserved. ============//
// tf_bot_mission_suicide_bomber.h
// Move to target and explode
// Michael Booth, October 2011
#ifndef TF_BOT_MISSION_SUICIDE_BOMBER_H
#define TF_BOT_MISSION_SUICIDE_BOMBER_H
#include "Path/NextBotPathFollow.h"
class CTFBotMissionSuicideBomber : public Action< CTFBot >
{
public:
CTFBotMissionSuicideBomber( void );
virtual ActionResult< CTFBot > OnStart( CTFBot *me, Action< CTFBot > *priorAction );
virtual ActionResult< CTFBot > Update( CTFBot *me, float interval );
virtual void OnEnd( CTFBot *me, Action< CTFBot > *nextAction );
virtual EventDesiredResult< CTFBot > OnStuck( CTFBot *me );
virtual EventDesiredResult< CTFBot > OnKilled( CTFBot *me, const CTakeDamageInfo &info );
virtual QueryResultType ShouldAttack( const INextBot *me, const CKnownEntity *them ) const; // should we attack "them"?
virtual const char *GetName( void ) const { return "MissionSuicideBomber"; };
private:
CHandle< CBaseEntity > m_victim; // the victim we are trying to destroy
Vector m_lastKnownVictimPosition;
PathFollower m_path;
CountdownTimer m_repathTimer;
CountdownTimer m_talkTimer;
CountdownTimer m_detonateTimer;
void StartDetonate( CTFBot *me, bool bWasSuccessful = false, bool bWasKilled = false );
void Detonate( CTFBot *me );
bool m_bHasDetonated;
bool m_bWasSuccessful;
bool m_bWasKilled;
int m_consecutivePathFailures;
Vector m_vecDetLocation;
};
#endif // TF_BOT_MISSION_SUICIDE_BOMBER_H