2021-12-05 17:54:36 +00:00
|
|
|
|
#include "ForceMovementBehavior.h"
|
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
|
#include "BehaviorContext.h"
|
2021-12-11 10:59:29 +00:00
|
|
|
|
#include "ControllablePhysicsComponent.h"
|
|
|
|
|
#include "EntityManager.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
void ForceMovementBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
|
|
|
|
if (this->m_hitAction->m_templateId == BehaviorTemplates::BEHAVIOR_EMPTY && this->m_hitEnemyAction->m_templateId == BehaviorTemplates::BEHAVIOR_EMPTY && this->m_hitFactionAction->m_templateId == BehaviorTemplates::BEHAVIOR_EMPTY) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
uint32_t handle;
|
|
|
|
|
bitStream->Read(handle);
|
|
|
|
|
context->RegisterSyncBehavior(handle, this, branch);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ForceMovementBehavior::Sync(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch)
|
|
|
|
|
{
|
2021-12-11 10:59:29 +00:00
|
|
|
|
uint32_t next;
|
|
|
|
|
bitStream->Read(next);
|
|
|
|
|
|
|
|
|
|
LWOOBJID target;
|
|
|
|
|
bitStream->Read(target);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
branch.target = target;
|
|
|
|
|
auto* behavior = CreateBehavior(next);
|
|
|
|
|
behavior->Handle(context, bitStream, branch);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ForceMovementBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
|
|
|
if (this->m_hitAction->m_templateId == BehaviorTemplates::BEHAVIOR_EMPTY && this->m_hitEnemyAction->m_templateId == BehaviorTemplates::BEHAVIOR_EMPTY && this->m_hitFactionAction->m_templateId == BehaviorTemplates::BEHAVIOR_EMPTY) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
auto* casterEntity = EntityManager::Instance()->GetEntity(context->caster);
|
|
|
|
|
if (casterEntity != nullptr) {
|
|
|
|
|
auto* controllablePhysicsComponent = casterEntity->GetComponent<ControllablePhysicsComponent>();
|
|
|
|
|
if (controllablePhysicsComponent != nullptr) {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
if (m_Forward == 1) {
|
|
|
|
|
controllablePhysicsComponent->SetVelocity(controllablePhysicsComponent->GetRotation().GetForwardVector() * 25);
|
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
EntityManager::Instance()->SerializeEntity(casterEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
const auto skillHandle = context->GetUniqueSkillId();
|
|
|
|
|
bitStream->Write(skillHandle);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
context->SyncCalculation(skillHandle, this->m_Duration, this, branch);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ForceMovementBehavior::Load()
|
|
|
|
|
{
|
2021-12-11 10:59:29 +00:00
|
|
|
|
this->m_hitAction = GetAction("hit_action");
|
|
|
|
|
this->m_hitEnemyAction = GetAction("hit_action_enemy");
|
|
|
|
|
this->m_hitFactionAction = GetAction("hit_action_faction");
|
|
|
|
|
this->m_Duration = GetFloat("duration");
|
|
|
|
|
this->m_Forward = GetFloat("forward");
|
|
|
|
|
this->m_Left = GetFloat("left");
|
|
|
|
|
this->m_Yaw = GetFloat("yaw");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ForceMovementBehavior::SyncCalculation(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
|
|
|
auto* casterEntity = EntityManager::Instance()->GetEntity(context->caster);
|
|
|
|
|
if (casterEntity != nullptr) {
|
|
|
|
|
auto* controllablePhysicsComponent = casterEntity->GetComponent<ControllablePhysicsComponent>();
|
|
|
|
|
if (controllablePhysicsComponent != nullptr) {
|
|
|
|
|
|
|
|
|
|
controllablePhysicsComponent->SetPosition(controllablePhysicsComponent->GetPosition() + controllablePhysicsComponent->GetVelocity() * m_Duration);
|
|
|
|
|
controllablePhysicsComponent->SetVelocity({});
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
EntityManager::Instance()->SerializeEntity(casterEntity);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
2021-12-11 10:59:29 +00:00
|
|
|
|
this->m_hitAction->Calculate(context, bitStream, branch);
|
|
|
|
|
this->m_hitEnemyAction->Calculate(context, bitStream, branch);
|
|
|
|
|
this->m_hitEnemyAction->Calculate(context, bitStream, branch);
|
2021-12-05 17:54:36 +00:00
|
|
|
|
}
|