mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-12-14 12:08:28 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
61
dScripts/FvConsoleLeftQuickbuild.cpp
Normal file
61
dScripts/FvConsoleLeftQuickbuild.cpp
Normal file
@@ -0,0 +1,61 @@
|
||||
#include "FvConsoleLeftQuickbuild.h"
|
||||
#include "RebuildComponent.h"
|
||||
#include "GeneralUtils.h"
|
||||
#include "dZoneManager.h"
|
||||
#include "EntityManager.h"
|
||||
#include "GameMessages.h"
|
||||
|
||||
void FvConsoleLeftQuickbuild::OnStartup(Entity* self)
|
||||
{
|
||||
self->SetVar(u"IAmBuilt", false);
|
||||
self->SetVar(u"AmActive", false);
|
||||
}
|
||||
|
||||
void FvConsoleLeftQuickbuild::OnRebuildNotifyState(Entity* self, eRebuildState state)
|
||||
{
|
||||
if (state == REBUILD_COMPLETED)
|
||||
{
|
||||
self->SetVar(u"IAmBuilt", true);
|
||||
|
||||
const auto objects = EntityManager::Instance()->GetEntitiesInGroup("Facility");
|
||||
|
||||
if (!objects.empty())
|
||||
{
|
||||
objects[0]->NotifyObject(self, "ConsoleLeftUp");
|
||||
}
|
||||
}
|
||||
else if (state == REBUILD_RESETTING)
|
||||
{
|
||||
self->SetVar(u"IAmBuilt", false);
|
||||
self->SetVar(u"AmActive", false);
|
||||
|
||||
const auto objects = EntityManager::Instance()->GetEntitiesInGroup("Facility");
|
||||
|
||||
if (!objects.empty())
|
||||
{
|
||||
objects[0]->NotifyObject(self, "ConsoleLeftDown");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void FvConsoleLeftQuickbuild::OnUse(Entity* self, Entity* user)
|
||||
{
|
||||
if (self->GetVar<bool>(u"AmActive"))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (self->GetVar<bool>(u"IAmBuilt"))
|
||||
{
|
||||
self->SetVar(u"AmActive", true);
|
||||
|
||||
const auto objects = EntityManager::Instance()->GetEntitiesInGroup("Facility");
|
||||
|
||||
if (!objects.empty())
|
||||
{
|
||||
objects[0]->NotifyObject(self, "ConsoleLeftActive");
|
||||
}
|
||||
}
|
||||
|
||||
GameMessages::SendTerminateInteraction(user->GetObjectID(), FROM_INTERACTION, self->GetObjectID());
|
||||
}
|
||||
Reference in New Issue
Block a user