mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
455f9470a5
* Move EntityManager to Game namespace * move initialization to later Need to wait for dZoneManager to be initialized. * Fix bugs - Cannot delete from a RandomAccessIterator while in a range based for loop. Touchup zone manager initialize replace magic numbers with better named constants replace magic zonecontrol id with a more readable hex alternative condense stack variables move initializers closer to their use initialize entity manager with zone control change initialize timings If zone is not zero we expect to initialize the entity manager during zone manager initialization Add constexpr for zone control LOT * Add proper error handling * revert vanity changes * Update WorldServer.cpp * Update dZoneManager.cpp
106 lines
2.6 KiB
C++
106 lines
2.6 KiB
C++
#include "StunBehavior.h"
|
|
|
|
#include "BaseCombatAIComponent.h"
|
|
#include "BehaviorBranchContext.h"
|
|
#include "BehaviorContext.h"
|
|
#include "EntityManager.h"
|
|
#include "Game.h"
|
|
#include "dLogger.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)) {
|
|
Game::logger->Log("StunBehavior", "Unable to read blocked from bitStream, aborting Handle! %i", bitStream->GetNumberOfUnreadBits());
|
|
return;
|
|
};
|
|
|
|
auto* target = Game::entityManager->GetEntity(branch.target);
|
|
|
|
if (target == nullptr) {
|
|
Game::logger->Log("StunBehavior", "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) {
|
|
Game::logger->Log("StunBehavior", "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) {
|
|
Game::logger->Log("StunBehavior", "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");
|
|
}
|