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.
 
 
 
 
 
 

155 lines
4.3 KiB

//========= Copyright Valve Corporation, All rights reserved. ============//
// tf_bot_payload_push.cpp
// Push the cartTrigger to the goal
// Michael Booth, April 2010
#include "cbase.h"
#include "nav_mesh.h"
#include "tf_player.h"
#include "tf_gamerules.h"
#include "team_control_point_master.h"
#include "team_train_watcher.h"
#include "trigger_area_capture.h"
#include "bot/tf_bot.h"
#include "bot/behavior/scenario/payload/tf_bot_payload_push.h"
#include "bot/behavior/medic/tf_bot_medic_heal.h"
#include "bot/behavior/engineer/tf_bot_engineer_build.h"
extern ConVar tf_bot_path_lookahead_range;
ConVar tf_bot_cart_push_radius( "tf_bot_cart_push_radius", "60", FCVAR_CHEAT );
//---------------------------------------------------------------------------------------------
ActionResult< CTFBot > CTFBotPayloadPush::OnStart( CTFBot *me, Action< CTFBot > *priorAction )
{
m_path.SetMinLookAheadDistance( me->GetDesiredPathLookAheadRange() );
m_path.Invalidate();
m_hideAngle = 180.0f;
return Continue();
}
//---------------------------------------------------------------------------------------------
ActionResult< CTFBot > CTFBotPayloadPush::Update( CTFBot *me, float interval )
{
const CKnownEntity *threat = me->GetVisionInterface()->GetPrimaryKnownThreat();
if ( threat && threat->IsVisibleRecently() )
{
// prepare to fight
me->EquipBestWeaponForThreat( threat );
}
if ( TFGameRules()->InSetup() )
{
// wait until the gates open, then path
m_path.Invalidate();
m_repathTimer.Start( RandomFloat( 1.0f, 2.0f ) );
return Continue();
}
CTeamTrainWatcher *trainWatcher = TFGameRules()->GetPayloadToPush( me->GetTeamNumber() );
if ( !trainWatcher )
{
return Continue();
}
CBaseEntity *cart = trainWatcher->GetTrainEntity();
if ( !cart )
{
return Continue();
}
// move toward the point, periodically repathing to account for changing situation
if ( m_repathTimer.IsElapsed() )
{
VPROF_BUDGET( "CTFBotPayloadPush::Update( repath )", "NextBot" );
Vector cartForward;
cart->GetVectors( &cartForward, NULL, NULL );
// default push position is behind cart
Vector pushPos = cart->WorldSpaceCenter() - cartForward * tf_bot_cart_push_radius.GetFloat();
// try to hide from enemies on other side of cart
const CKnownEntity *threat = me->GetVisionInterface()->GetPrimaryKnownThreat();
if ( threat )
{
Vector enemyToCart = cart->WorldSpaceCenter() - threat->GetLastKnownPosition();
enemyToCart.z = 0.0f;
enemyToCart.NormalizeInPlace();
pushPos = cart->WorldSpaceCenter() + tf_bot_cart_push_radius.GetFloat() * enemyToCart;
}
CTFBotPathCost cost( me, DEFAULT_ROUTE );
m_path.Compute( me, pushPos, cost );
m_repathTimer.Start( RandomFloat( 0.2f, 0.4f ) );
}
// push the cartTrigger
m_path.Update( me );
return Continue();
}
//---------------------------------------------------------------------------------------------
ActionResult< CTFBot > CTFBotPayloadPush::OnResume( CTFBot *me, Action< CTFBot > *interruptingAction )
{
VPROF_BUDGET( "CTFBotPayloadPush::OnResume", "NextBot" );
m_repathTimer.Invalidate();
return Continue();
}
//---------------------------------------------------------------------------------------------
EventDesiredResult< CTFBot > CTFBotPayloadPush::OnStuck( CTFBot *me )
{
VPROF_BUDGET( "CTFBotPayloadPush::OnStuck", "NextBot" );
m_repathTimer.Invalidate();
me->GetLocomotionInterface()->ClearStuckStatus();
return TryContinue();
}
//---------------------------------------------------------------------------------------------
EventDesiredResult< CTFBot > CTFBotPayloadPush::OnMoveToSuccess( CTFBot *me, const Path *path )
{
return TryContinue();
}
//---------------------------------------------------------------------------------------------
EventDesiredResult< CTFBot > CTFBotPayloadPush::OnMoveToFailure( CTFBot *me, const Path *path, MoveToFailureType reason )
{
VPROF_BUDGET( "CTFBotPayloadPush::OnMoveToFailure", "NextBot" );
m_repathTimer.Invalidate();
return TryContinue();
}
//---------------------------------------------------------------------------------------------
QueryResultType CTFBotPayloadPush::ShouldRetreat( const INextBot *bot ) const
{
return ANSWER_UNDEFINED;
}
//---------------------------------------------------------------------------------------------
QueryResultType CTFBotPayloadPush::ShouldHurry( const INextBot *bot ) const
{
return ANSWER_UNDEFINED;
}