DarkflameServer/dGame/dBehaviors/TauntBehavior.cpp

45 lines
1.1 KiB
C++
Raw Normal View History

#include "TauntBehavior.h"
#include "BehaviorBranchContext.h"
#include "BehaviorContext.h"
#include "BaseCombatAIComponent.h"
#include "EntityManager.h"
#include "Logger.h"
2022-07-28 13:39:57 +00:00
void TauntBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
auto* target = Game::entityManager->GetEntity(branch.target);
2022-07-28 13:39:57 +00:00
if (target == nullptr) {
LOG("Failed to find target (%llu)!", branch.target);
return;
}
auto* combatComponent = target->GetComponent<BaseCombatAIComponent>();
2022-07-28 13:39:57 +00:00
if (combatComponent != nullptr) {
combatComponent->Taunt(context->originator, m_threatToAdd);
}
}
2022-07-28 13:39:57 +00:00
void TauntBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
auto* target = Game::entityManager->GetEntity(branch.target);
2022-07-28 13:39:57 +00:00
if (target == nullptr) {
LOG("Failed to find target (%llu)!", branch.target);
return;
}
auto* combatComponent = target->GetComponent<BaseCombatAIComponent>();
2022-07-28 13:39:57 +00:00
if (combatComponent != nullptr) {
combatComponent->Taunt(context->originator, m_threatToAdd);
}
}
2022-07-28 13:39:57 +00:00
void TauntBehavior::Load() {
this->m_threatToAdd = GetFloat("threat to add");
}