2021-12-05 17:54:36 +00:00
|
|
|
#include "DLUVanityNPC.h"
|
|
|
|
#include "GameMessages.h"
|
|
|
|
#include "dServer.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include "VanityUtilities.h"
|
2023-03-20 13:10:52 +00:00
|
|
|
#include "RenderComponent.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void DLUVanityNPC::OnStartup(Entity* self) {
|
|
|
|
m_NPC = VanityUtilities::GetNPC("averysumner - Destroyer of Worlds");
|
|
|
|
|
|
|
|
if (m_NPC == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (self->GetVar<bool>(u"teleport")) {
|
|
|
|
self->AddTimer("setupTeleport", 15.0f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DLUVanityNPC::OnTimerDone(Entity* self, std::string timerName) {
|
|
|
|
if (timerName == "setupTeleport") {
|
2023-03-20 13:10:52 +00:00
|
|
|
RenderComponent::PlayAnimation(self, u"interact");
|
2021-12-05 17:54:36 +00:00
|
|
|
GameMessages::SendPlayFXEffect(self->GetObjectID(), 6478, u"teleportBeam", "teleportBeam");
|
|
|
|
GameMessages::SendPlayFXEffect(self->GetObjectID(), 6478, u"teleportRings", "teleportRings");
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
self->AddTimer("teleport", 2.0f);
|
|
|
|
self->AddTimer("stopFX", 2.0f);
|
|
|
|
} else if (timerName == "stopFX") {
|
|
|
|
GameMessages::SendStopFXEffect(self, true, "teleportBeam");
|
|
|
|
GameMessages::SendStopFXEffect(self, true, "teleportRings");
|
|
|
|
} else if (timerName == "teleport") {
|
|
|
|
std::vector<VanityNPCLocation>& locations = m_NPC->m_Locations[Game::server->GetZoneID()];
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
selectLocation:
|
|
|
|
VanityNPCLocation& newLocation = locations[GeneralUtils::GenerateRandomNumber<size_t>(0, locations.size() - 1)];
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
if (self->GetPosition() == newLocation.m_Position) {
|
|
|
|
goto selectLocation; // cry about it
|
|
|
|
}
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
self->SetPosition(newLocation.m_Position);
|
|
|
|
self->SetRotation(newLocation.m_Rotation);
|
|
|
|
GameMessages::SendPlayFXEffect(self->GetObjectID(), 6478, u"teleportBeam", "teleportBeam");
|
|
|
|
GameMessages::SendPlayFXEffect(self->GetObjectID(), 6478, u"teleportRings", "teleportRings");
|
|
|
|
self->AddTimer("stopFX", 2.0f);
|
|
|
|
self->AddTimer("setupTeleport", 15.0f);
|
|
|
|
}
|
|
|
|
}
|