mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
b261e63233
* chore: Change entity and component logic to use bitstream references * merge
106 lines
2.5 KiB
C++
106 lines
2.5 KiB
C++
#include "StunBehavior.h"
|
|
|
|
#include "BaseCombatAIComponent.h"
|
|
#include "BehaviorBranchContext.h"
|
|
#include "BehaviorContext.h"
|
|
#include "EntityManager.h"
|
|
#include "Game.h"
|
|
#include "Logger.h"
|
|
#include "DestroyableComponent.h"
|
|
#include "eReplicaComponentType.h"
|
|
|
|
|
|
void StunBehavior::Handle(BehaviorContext* context, RakNet::BitStream& bitStream, const BehaviorBranchContext branch) {
|
|
if (this->m_stunCaster || branch.target == context->originator) {
|
|
return;
|
|
}
|
|
|
|
bool blocked{};
|
|
if (!bitStream.Read(blocked)) {
|
|
LOG("Unable to read blocked from bitStream, aborting Handle! %i", bitStream.GetNumberOfUnreadBits());
|
|
return;
|
|
};
|
|
|
|
auto* target = Game::entityManager->GetEntity(branch.target);
|
|
|
|
if (target == nullptr) {
|
|
LOG("Failed to find target (%llu)!", branch.target);
|
|
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* If our target is an enemy we can go ahead and stun it.
|
|
*/
|
|
|
|
auto* combatAiComponent = static_cast<BaseCombatAIComponent*>(target->GetComponent(eReplicaComponentType::BASE_COMBAT_AI));
|
|
|
|
if (combatAiComponent == nullptr) {
|
|
return;
|
|
}
|
|
|
|
combatAiComponent->Stun(branch.duration);
|
|
}
|
|
|
|
void StunBehavior::Calculate(BehaviorContext* context, RakNet::BitStream& bitStream, const BehaviorBranchContext branch) {
|
|
if (this->m_stunCaster || branch.target == context->originator) {
|
|
auto* self = Game::entityManager->GetEntity(context->originator);
|
|
|
|
if (self == nullptr) {
|
|
LOG("Invalid self entity (%llu)!", context->originator);
|
|
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* See if we can stun ourselves
|
|
*/
|
|
|
|
auto* combatAiComponent = static_cast<BaseCombatAIComponent*>(self->GetComponent(eReplicaComponentType::BASE_COMBAT_AI));
|
|
|
|
if (combatAiComponent == nullptr) {
|
|
return;
|
|
}
|
|
|
|
combatAiComponent->Stun(branch.duration);
|
|
|
|
return;
|
|
}
|
|
|
|
bool blocked = false;
|
|
|
|
auto* target = Game::entityManager->GetEntity(branch.target);
|
|
|
|
if (target != nullptr) {
|
|
auto* destroyableComponent = target->GetComponent<DestroyableComponent>();
|
|
|
|
if (destroyableComponent != nullptr) {
|
|
blocked = destroyableComponent->IsKnockbackImmune();
|
|
}
|
|
}
|
|
|
|
bitStream.Write(blocked);
|
|
|
|
if (target == nullptr) {
|
|
LOG("Failed to find target (%llu)!", branch.target);
|
|
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* If our target is an enemy we can go ahead and stun it.
|
|
*/
|
|
|
|
auto* combatAiComponent = static_cast<BaseCombatAIComponent*>(target->GetComponent(eReplicaComponentType::BASE_COMBAT_AI));
|
|
|
|
if (combatAiComponent == nullptr) {
|
|
return;
|
|
}
|
|
|
|
combatAiComponent->Stun(branch.duration);
|
|
}
|
|
|
|
void StunBehavior::Load() {
|
|
this->m_stunCaster = GetBoolean("stun_caster");
|
|
}
|