2022-08-06 03:01:59 +00:00
|
|
|
#include "TargetCasterBehavior.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
#include "BehaviorBranchContext.h"
|
|
|
|
#include "BehaviorContext.h"
|
|
|
|
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void TargetCasterBehavior::Handle(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
branch.target = context->caster;
|
|
|
|
|
|
|
|
this->m_action->Handle(context, bit_stream, branch);
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void TargetCasterBehavior::UnCast(BehaviorContext* context, BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
this->m_action->UnCast(context, branch);
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void TargetCasterBehavior::Calculate(BehaviorContext* context, RakNet::BitStream* bit_stream, BehaviorBranchContext branch) {
|
2021-12-05 17:54:36 +00:00
|
|
|
branch.target = context->caster;
|
|
|
|
|
|
|
|
this->m_action->Calculate(context, bit_stream, branch);
|
|
|
|
}
|
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
void TargetCasterBehavior::Load() {
|
2021-12-05 17:54:36 +00:00
|
|
|
this->m_action = GetAction("action");
|
|
|
|
}
|
|
|
|
|