mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
5942182486
* Logger: Rename logger to Logger from dLogger * Logger: Add compile time filename Fix include issues Add writers Add macros Add macro to force compilation * Logger: Replace calls with macros Allows for filename and line number to be logged * Logger: Add comments and remove extra define Logger: Replace with unique_ptr also flush console at exit. regular file writer should be flushed on file close. Logger: Remove constexpr on variable * Logger: Simplify code * Update Logger.cpp
97 lines
2.3 KiB
C++
97 lines
2.3 KiB
C++
#include "BouncerComponent.h"
|
|
|
|
#include "EntityManager.h"
|
|
#include "dZoneManager.h"
|
|
#include "SwitchComponent.h"
|
|
#include "Game.h"
|
|
#include "Logger.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) {
|
|
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);
|
|
|
|
LOG("Loaded pet bouncer");
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!m_PetSwitchLoaded) {
|
|
LOG("Failed to load pet bouncer");
|
|
|
|
m_Parent->AddCallbackTimer(0.5f, [this]() {
|
|
LookupPetSwitch();
|
|
});
|
|
}
|
|
}
|