2021-12-05 17:54:36 +00:00
|
|
|
#include "ChargeUpBehavior.h"
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "BehaviorContext.h"
|
2022-12-16 21:23:02 +00:00
|
|
|
#include "Game.h"
|
2023-10-21 23:31:55 +00:00
|
|
|
#include "Logger.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void ChargeUpBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
2022-12-16 21:23:02 +00:00
|
|
|
uint32_t handle{};
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2022-12-16 21:23:02 +00:00
|
|
|
if (!bitStream->Read(handle)) {
|
2023-10-21 23:31:55 +00:00
|
|
|
LOG("Unable to read handle from bitStream, aborting Handle! variable_type");
|
2022-12-16 21:23:02 +00:00
|
|
|
return;
|
|
|
|
};
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-04-05 13:57:47 +00:00
|
|
|
context->RegisterSyncBehavior(handle, this, branch, this->m_MaxDuration);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void ChargeUpBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, BehaviorBranchContext branch) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChargeUpBehavior::Sync(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
|
|
|
this->m_action->Handle(context, bitStream, branch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ChargeUpBehavior::Load() {
|
|
|
|
this->m_action = GetAction("action");
|
2023-04-05 13:57:47 +00:00
|
|
|
this->m_MaxDuration = GetFloat("max_duration");
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|