2021-12-05 17:54:36 +00:00
|
|
|
|
#include "ChainBehavior.h"
|
|
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
|
#include "Game.h"
|
|
|
|
|
#include "dLogger.h"
|
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
|
void ChainBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
uint32_t chain_index;
|
|
|
|
|
|
|
|
|
|
bitStream->Read(chain_index);
|
|
|
|
|
|
|
|
|
|
chain_index--;
|
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
|
if (chain_index < this->m_behaviors.size()) {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
this->m_behaviors.at(chain_index)->Handle(context, bitStream, branch);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
|
void ChainBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bitStream, const BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
bitStream->Write(1);
|
|
|
|
|
|
|
|
|
|
this->m_behaviors.at(0)->Calculate(context, bitStream, branch);
|
|
|
|
|
}
|
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
|
void ChainBehavior::Load() {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
const auto parameters = GetParameterNames();
|
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
|
for (const auto& parameter : parameters) {
|
|
|
|
|
if (parameter.first.rfind("behavior", 0) == 0) {
|
2021-12-05 17:54:36 +00:00
|
|
|
|
auto* action = GetAction(parameter.second);
|
|
|
|
|
|
|
|
|
|
this->m_behaviors.push_back(action);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|