2021-12-05 17:54:36 +00:00
|
|
|
#include "DamageAbsorptionBehavior.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"
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void DamageAbsorptionBehavior::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->SetDamageToAbsorb(static_cast<uint32_t>(destroyable->GetDamageToAbsorb()) + this->m_absorbAmount);
|
|
|
|
|
|
|
|
destroyable->SetIsShielded(true);
|
|
|
|
|
|
|
|
context->RegisterTimerBehavior(this, branch, target->GetObjectID());
|
|
|
|
}
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void DamageAbsorptionBehavior::Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
Handle(context, bitStream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DamageAbsorptionBehavior::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;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto present = static_cast<uint32_t>(destroyable->GetDamageToAbsorb());
|
2022-07-25 02:26:51 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
const auto toRemove = std::min(present, this->m_absorbAmount);
|
|
|
|
|
|
|
|
destroyable->SetDamageToAbsorb(present - toRemove);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DamageAbsorptionBehavior::Load() {
|
|
|
|
this->m_absorbAmount = GetInt("absorb_amount");
|
|
|
|
}
|