mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
40 lines
1008 B
C++
40 lines
1008 B
C++
#include "AirMovementBehavior.h"
|
|
#include "BehaviorBranchContext.h"
|
|
#include "BehaviorContext.h"
|
|
#include "EntityManager.h"
|
|
|
|
void AirMovementBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
uint32_t handle;
|
|
|
|
bitStream->Read(handle);
|
|
|
|
context->RegisterSyncBehavior(handle, this, branch);
|
|
}
|
|
|
|
void AirMovementBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
const auto handle = context->GetUniqueSkillId();
|
|
|
|
bitStream->Write(handle);
|
|
}
|
|
|
|
void AirMovementBehavior::Sync(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) {
|
|
uint32_t behaviorId;
|
|
|
|
bit_stream->Read(behaviorId);
|
|
|
|
LWOOBJID target;
|
|
|
|
bit_stream->Read(target);
|
|
|
|
auto* behavior = CreateBehavior(behaviorId);
|
|
|
|
if (EntityManager::Instance()->GetEntity(target) != nullptr) {
|
|
branch.target = target;
|
|
}
|
|
|
|
behavior->Handle(context, bit_stream, branch);
|
|
}
|
|
|
|
void AirMovementBehavior::Load() {
|
|
}
|