mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-09 20:24:16 +00:00
Public release of the DLU server code!
Have fun!
This commit is contained in:
61
dScripts/FvConsoleRightQuickbuild.cpp
Normal file
61
dScripts/FvConsoleRightQuickbuild.cpp
Normal file
@@ -0,0 +1,61 @@
|
||||
#include "FvConsoleRightQuickbuild.h"
|
||||
#include "RebuildComponent.h"
|
||||
#include "GeneralUtils.h"
|
||||
#include "dZoneManager.h"
|
||||
#include "EntityManager.h"
|
||||
#include "GameMessages.h"
|
||||
|
||||
void FvConsoleRightQuickbuild::OnStartup(Entity* self)
|
||||
{
|
||||
self->SetVar(u"IAmBuilt", false);
|
||||
self->SetVar(u"AmActive", false);
|
||||
}
|
||||
|
||||
void FvConsoleRightQuickbuild::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, "ConsoleRightUp");
|
||||
}
|
||||
}
|
||||
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, "ConsoleRightDown");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void FvConsoleRightQuickbuild::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, "ConsoleRightActive");
|
||||
}
|
||||
}
|
||||
|
||||
GameMessages::SendTerminateInteraction(user->GetObjectID(), FROM_INTERACTION, self->GetObjectID());
|
||||
}
|
Reference in New Issue
Block a user