2021-12-05 17:54:36 +00:00
|
|
|
#include "ImaginationBehavior.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
|
|
|
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void ImaginationBehavior::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) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* destroyable = entity->GetComponent<DestroyableComponent>();
|
|
|
|
|
|
|
|
if (destroyable == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
destroyable->Imagine(this->m_imagination);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2024-02-27 07:25:44 +00:00
|
|
|
void ImaginationBehavior::Calculate(BehaviorContext* context, RakNet::BitStream& bit_stream, const BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
Handle(context, bit_stream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ImaginationBehavior::Load() {
|
|
|
|
this->m_imagination = GetInt("imagination");
|
|
|
|
}
|