mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 18:28:21 +00:00
26 lines
1.1 KiB
C++
26 lines
1.1 KiB
C++
#include "SkillEventBehavior.h"
|
|
#include "BehaviorBranchContext.h"
|
|
#include "BehaviorContext.h"
|
|
#include "EntityManager.h"
|
|
#include "CppScripts.h"
|
|
#include "Entity.h"
|
|
|
|
void SkillEventBehavior::Handle(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) {
|
|
auto* target = Game::entityManager->GetEntity(branch.target);
|
|
auto* caster = Game::entityManager->GetEntity(context->originator);
|
|
|
|
if (caster != nullptr && target != nullptr && this->m_effectHandle != nullptr && !this->m_effectHandle->empty()) {
|
|
target->GetScript()->OnSkillEventFired(target, caster, *this->m_effectHandle);
|
|
}
|
|
}
|
|
|
|
void
|
|
SkillEventBehavior::Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) {
|
|
auto* target = Game::entityManager->GetEntity(branch.target);
|
|
auto* caster = Game::entityManager->GetEntity(context->originator);
|
|
|
|
if (caster != nullptr && target != nullptr && this->m_effectHandle != nullptr && !this->m_effectHandle->empty()) {
|
|
target->GetScript()->OnSkillEventFired(target, caster, *this->m_effectHandle);
|
|
}
|
|
}
|