DarkflameServer/dScripts/RockHydrantBroken.cpp

48 lines
1.5 KiB
C++
Raw Normal View History

2022-04-17 04:32:15 +00:00
#include "RockHydrantBroken.h"
#include "EntityManager.h"
#include "GameMessages.h"
void RockHydrantBroken::OnStartup(Entity* self)
{
2022-04-17 20:58:26 +00:00
self->AddTimer("playEffect", 1);
2022-04-17 04:32:15 +00:00
2022-04-17 21:44:46 +00:00
const auto hydrant = "hydrant0" + self->GetVar<std::string>(u"hydrant");
2022-04-17 04:32:15 +00:00
2022-04-17 20:58:26 +00:00
const auto bouncers = EntityManager::Instance()->GetEntitiesInGroup(hydrant);
2022-04-17 04:32:15 +00:00
2022-04-17 20:58:26 +00:00
Game::logger->Log("RockHydrantBroken", "Broken Rock Hydrant spawned (%s)\n", hydrant.c_str());
2022-04-17 04:32:15 +00:00
2022-04-17 20:58:26 +00:00
for (auto* bouncer : bouncers)
{
self->SetVar<LWOOBJID>(u"bouncer", bouncer->GetObjectID());
Game::logger->Log("RockHydrantBroken", "Activate Bouncer (%s)\n", bouncer.c_str());
2022-04-17 04:32:15 +00:00
2022-04-17 20:58:26 +00:00
GameMessages::SendBouncerActiveStatus(bouncer->GetObjectID(), true, UNASSIGNED_SYSTEM_ADDRESS);
2022-04-17 04:32:15 +00:00
2022-04-17 20:58:26 +00:00
GameMessages::SendNotifyObject(bouncer->GetObjectID(), self->GetObjectID(), u"enableCollision", UNASSIGNED_SYSTEM_ADDRESS);
}
2022-04-17 04:32:15 +00:00
2022-04-17 20:58:26 +00:00
self->AddTimer("KillBroken", 10);
2022-04-17 04:32:15 +00:00
}
void RockHydrantBroken::OnTimerDone(Entity* self, std::string timerName)
{
2022-04-17 20:58:26 +00:00
if (timerName == "KillBroken")
{
auto* bouncer = EntityManager::Instance()->GetEntity(self->GetVar<LWOOBJID>(u"bouncer"));
if (bouncer != nullptr)
{
GameMessages::SendBouncerActiveStatus(bouncer->GetObjectID(), false, UNASSIGNED_SYSTEM_ADDRESS);
GameMessages::SendNotifyObject(bouncer->GetObjectID(), self->GetObjectID(), u"disableCollision", UNASSIGNED_SYSTEM_ADDRESS);
}
self->Kill();
}
else if (timerName == "playEffect")
{
GameMessages::SendPlayFXEffect(self->GetObjectID(), 384, u"water", "water", LWOOBJID_EMPTY, 1, 1, true);
}
2022-04-17 04:32:15 +00:00
}