2021-12-05 17:54:36 +00:00
|
|
|
#include "VerifyBehavior.h"
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
#include "NiPoint3.h"
|
|
|
|
#include "BehaviorContext.h"
|
|
|
|
#include "Game.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 VerifyBehavior::Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, 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
|
|
|
|
|
|
|
auto success = true;
|
|
|
|
|
|
|
|
if (entity == nullptr) {
|
|
|
|
success = false;
|
|
|
|
} else if (this->m_rangeCheck) {
|
2023-07-15 20:56:33 +00:00
|
|
|
auto* self = Game::entityManager->GetEntity(context->originator);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
if (self == nullptr) {
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG("Invalid self for (%llu)", context->originator);
|
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
|
|
|
const auto distance = Vector3::DistanceSquared(self->GetPosition(), entity->GetPosition());
|
|
|
|
|
|
|
|
if (distance > this->m_range * this->m_range) {
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
} else if (this->m_blockCheck) {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
if (branch.target != LWOOBJID_EMPTY && branch.target != context->originator) {
|
2024-02-27 07:25:44 +00:00
|
|
|
bitStream.Write(success);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
if (success) {
|
2024-02-27 07:25:44 +00:00
|
|
|
bitStream.Write<uint32_t>(1);
|
|
|
|
bitStream.Write0();
|
|
|
|
bitStream.Write0();
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
branch.target = LWOOBJID_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_action->Calculate(context, bitStream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VerifyBehavior::Load() {
|
|
|
|
this->m_rangeCheck = GetBoolean("check_range");
|
|
|
|
|
|
|
|
this->m_blockCheck = GetBoolean("check blocking");
|
|
|
|
|
|
|
|
this->m_action = GetAction("action");
|
|
|
|
|
|
|
|
this->m_range = GetFloat("range");
|
|
|
|
}
|