2021-12-05 17:54:36 +00:00
|
|
|
#include "FvConsoleRightQuickbuild.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);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
const auto objects = EntityManager::Instance()->GetEntitiesInGroup("Facility");
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
if (!objects.empty()) {
|
|
|
|
objects[0]->NotifyObject(self, "ConsoleRightUp");
|
|
|
|
}
|
|
|
|
} else if (state == REBUILD_RESETTING) {
|
|
|
|
self->SetVar(u"IAmBuilt", false);
|
|
|
|
self->SetVar(u"AmActive", false);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
const auto objects = EntityManager::Instance()->GetEntitiesInGroup("Facility");
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
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());
|
|
|
|
}
|