2021-12-05 17:54:36 +00:00
|
|
|
#include "TauntBehavior.h"
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "BehaviorContext.h"
|
|
|
|
#include "BaseCombatAIComponent.h"
|
|
|
|
#include "EntityManager.h"
|
2023-10-21 23:31:55 +00:00
|
|
|
#include "Logger.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void TauntBehavior::Handle(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) {
|
2023-07-15 20:56:33 +00:00
|
|
|
auto* target = Game::entityManager->GetEntity(branch.target);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
if (target == nullptr) {
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG("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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void TauntBehavior::Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) {
|
2023-07-15 20:56:33 +00:00
|
|
|
auto* target = Game::entityManager->GetEntity(branch.target);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
if (target == nullptr) {
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG("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");
|
|
|
|
}
|
|
|
|
|