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
97 lines
2.4 KiB
C++
97 lines
2.4 KiB
C++
#include "BouncerComponent.h"
|
|
|
|
#include "EntityManager.h"
|
|
#include "dZoneManager.h"
|
|
#include "SwitchComponent.h"
|
|
#include "Game.h"
|
|
#include "dLogger.h"
|
|
#include "GameMessages.h"
|
|
#include <BitStream.h>
|
|
#include "eTriggerEventType.h"
|
|
|
|
BouncerComponent::BouncerComponent(Entity* parent) : Component(parent) {
|
|
m_PetEnabled = false;
|
|
m_PetBouncerEnabled = false;
|
|
m_PetSwitchLoaded = false;
|
|
|
|
if (parent->GetLOT() == 7625) {
|
|
LookupPetSwitch();
|
|
}
|
|
}
|
|
|
|
BouncerComponent::~BouncerComponent() {
|
|
}
|
|
|
|
void BouncerComponent::Serialize(RakNet::BitStream* outBitStream, bool bIsInitialUpdate, unsigned int& flags) {
|
|
outBitStream->Write(m_PetEnabled);
|
|
if (m_PetEnabled) {
|
|
outBitStream->Write(m_PetBouncerEnabled);
|
|
}
|
|
}
|
|
|
|
Entity* BouncerComponent::GetParentEntity() const {
|
|
return m_Parent;
|
|
}
|
|
|
|
void BouncerComponent::SetPetEnabled(bool value) {
|
|
m_PetEnabled = value;
|
|
|
|
Game::entityManager->SerializeEntity(m_Parent);
|
|
}
|
|
|
|
void BouncerComponent::SetPetBouncerEnabled(bool value) {
|
|
m_PetBouncerEnabled = value;
|
|
|
|
GameMessages::SendBouncerActiveStatus(m_Parent->GetObjectID(), value, UNASSIGNED_SYSTEM_ADDRESS);
|
|
|
|
Game::entityManager->SerializeEntity(m_Parent);
|
|
|
|
if (value) {
|
|
m_Parent->TriggerEvent(eTriggerEventType::PET_ON_SWITCH, m_Parent);
|
|
GameMessages::SendPlayFXEffect(m_Parent->GetObjectID(), 1513, u"create", "PetOnSwitch", LWOOBJID_EMPTY, 1, 1, true);
|
|
} else {
|
|
m_Parent->TriggerEvent(eTriggerEventType::PET_OFF_SWITCH, m_Parent);
|
|
GameMessages::SendStopFXEffect(m_Parent, true, "PetOnSwitch");
|
|
}
|
|
|
|
}
|
|
|
|
bool BouncerComponent::GetPetEnabled() const {
|
|
return m_PetEnabled;
|
|
}
|
|
|
|
bool BouncerComponent::GetPetBouncerEnabled() const {
|
|
return m_PetBouncerEnabled;
|
|
}
|
|
|
|
void BouncerComponent::LookupPetSwitch() {
|
|
const auto& groups = m_Parent->GetGroups();
|
|
|
|
for (const auto& group : groups) {
|
|
const auto& entities = Game::entityManager->GetEntitiesInGroup(group);
|
|
|
|
for (auto* entity : entities) {
|
|
auto* switchComponent = entity->GetComponent<SwitchComponent>();
|
|
|
|
if (switchComponent != nullptr) {
|
|
switchComponent->SetPetBouncer(this);
|
|
|
|
m_PetSwitchLoaded = true;
|
|
m_PetEnabled = true;
|
|
|
|
Game::entityManager->SerializeEntity(m_Parent);
|
|
|
|
Game::logger->Log("BouncerComponent", "Loaded pet bouncer");
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!m_PetSwitchLoaded) {
|
|
Game::logger->Log("BouncerComponent", "Failed to load pet bouncer");
|
|
|
|
m_Parent->AddCallbackTimer(0.5f, [this]() {
|
|
LookupPetSwitch();
|
|
});
|
|
}
|
|
}
|