2021-12-05 18:54:36 +01:00
|
|
|
#include "HealBehavior.h"
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "Game.h"
|
2023-10-21 16:31:55 -07:00
|
|
|
#include "Logger.h"
|
2021-12-05 18:54:36 +01:00
|
|
|
#include "EntityManager.h"
|
|
|
|
#include "DestroyableComponent.h"
|
2023-03-04 01:16:37 -06:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 18:54:36 +01:00
|
|
|
|
|
|
|
|
2024-02-27 01:25:44 -06:00
|
|
|
void HealBehavior::Handle(BehaviorContext* context, RakNet::BitStream& bit_stream, const BehaviorBranchContext branch) {
|
2023-07-15 13:56:33 -07:00
|
|
|
auto* entity = Game::entityManager->GetEntity(branch.target);
|
2021-12-05 18:54:36 +01:00
|
|
|
|
|
|
|
if (entity == nullptr) {
|
2023-10-21 16:31:55 -07:00
|
|
|
LOG("Failed to find entity for (%llu)!", branch.target);
|
2021-12-05 18:54:36 +01:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-03-04 01:16:37 -06:00
|
|
|
auto* destroyable = static_cast<DestroyableComponent*>(entity->GetComponent(eReplicaComponentType::DESTROYABLE));
|
2021-12-05 18:54:36 +01:00
|
|
|
|
|
|
|
if (destroyable == nullptr) {
|
2023-10-21 16:31:55 -07:00
|
|
|
LOG("Failed to find destroyable component for %(llu)!", branch.target);
|
2021-12-05 18:54:36 +01:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2022-07-24 21:26:51 -05:00
|
|
|
|
2021-12-05 18:54:36 +01:00
|
|
|
destroyable->Heal(this->m_health);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-02-27 01:25:44 -06:00
|
|
|
void HealBehavior::Calculate(BehaviorContext* context, RakNet::BitStream& bit_stream, const BehaviorBranchContext branch) {
|
2021-12-05 18:54:36 +01:00
|
|
|
Handle(context, bit_stream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void HealBehavior::Load() {
|
|
|
|
this->m_health = GetInt("health");
|
|
|
|
}
|