2021-12-05 17:54:36 +00:00
|
|
|
#include "TauntBehavior.h"
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "BehaviorContext.h"
|
|
|
|
#include "BaseCombatAIComponent.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
#include "dLogger.h"
|
|
|
|
|
|
|
|
|
|
|
|
void TauntBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
|
|
auto* target = EntityManager::Instance()->GetEntity(branch.target);
|
|
|
|
|
|
|
|
if (target == nullptr) {
|
2022-07-25 02:26:51 +00:00
|
|
|
Game::logger->Log("TauntBehavior", "Failed to find target (%llu)!", branch.target);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* combatComponent = target->GetComponent<BaseCombatAIComponent>();
|
2022-07-25 02:26:51 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
if (combatComponent != nullptr) {
|
|
|
|
combatComponent->Taunt(context->originator, m_threatToAdd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TauntBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
|
|
auto* target = EntityManager::Instance()->GetEntity(branch.target);
|
|
|
|
|
|
|
|
if (target == nullptr) {
|
2022-07-25 02:26:51 +00:00
|
|
|
Game::logger->Log("TauntBehavior", "Failed to find target (%llu)!", branch.target);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* combatComponent = target->GetComponent<BaseCombatAIComponent>();
|
2022-07-25 02:26:51 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
if (combatComponent != nullptr) {
|
|
|
|
combatComponent->Taunt(context->originator, m_threatToAdd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TauntBehavior::Load() {
|
|
|
|
this->m_threatToAdd = GetFloat("threat to add");
|
|
|
|
}
|
|
|
|
|