2021-12-05 17:54:36 +00:00
|
|
|
#include "DamageReductionBehavior.h"
|
|
|
|
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "BehaviorContext.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
#include "Game.h"
|
2023-10-21 23:31:55 +00:00
|
|
|
#include "Logger.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
#include "DestroyableComponent.h"
|
|
|
|
|
|
|
|
void DamageReductionBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, const 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* destroyable = target->GetComponent<DestroyableComponent>();
|
|
|
|
|
|
|
|
if (destroyable == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
destroyable->SetDamageReduction(m_ReductionAmount);
|
2022-07-25 02:26:51 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
context->RegisterTimerBehavior(this, branch, target->GetObjectID());
|
|
|
|
}
|
|
|
|
|
2022-07-25 02:26:51 +00:00
|
|
|
void DamageReductionBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
Handle(context, bitStream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DamageReductionBehavior::Timer(BehaviorContext* context, BehaviorBranchContext branch, const LWOOBJID second) {
|
2023-07-15 20:56:33 +00:00
|
|
|
auto* target = Game::entityManager->GetEntity(second);
|
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)!", second);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2022-07-25 02:26:51 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
auto* destroyable = target->GetComponent<DestroyableComponent>();
|
|
|
|
|
|
|
|
if (destroyable == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
destroyable->SetDamageReduction(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DamageReductionBehavior::Load() {
|
|
|
|
this->m_ReductionAmount = GetInt("reduction_amount");
|
|
|
|
}
|