2021-12-05 17:54:36 +00:00
|
|
|
#include "RepairBehavior.h"
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "DestroyableComponent.h"
|
|
|
|
#include "dpWorld.h"
|
|
|
|
#include "EntityManager.h"
|
2023-10-21 23:31:55 +00:00
|
|
|
#include "Logger.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
#include "Game.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void RepairBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bit_stream, const BehaviorBranchContext branch) {
|
2023-07-15 20:56:33 +00:00
|
|
|
auto* entity = Game::entityManager->GetEntity(branch.target);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
if (entity == nullptr) {
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG("Failed to find entity for (%llu)!", branch.target);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-03-04 07:16:37 +00:00
|
|
|
auto* destroyable = static_cast<DestroyableComponent*>(entity->GetComponent(eReplicaComponentType::DESTROYABLE));
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
if (destroyable == nullptr) {
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG("Failed to find destroyable component for %(llu)!", branch.target);
|
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
|
|
|
destroyable->Repair(this->m_armor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RepairBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bit_stream, const BehaviorBranchContext branch) {
|
|
|
|
Handle(context, bit_stream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RepairBehavior::Load() {
|
|
|
|
this->m_armor = GetInt("armor");
|
|
|
|
}
|