mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 17:58:20 +00:00
15954413ae
* rename rebuild to quickbuild * fix includes
50 lines
1.4 KiB
C++
50 lines
1.4 KiB
C++
#include "FvConsoleLeftQuickbuild.h"
|
|
#include "EntityManager.h"
|
|
#include "GameMessages.h"
|
|
#include "eTerminateType.h"
|
|
#include "eQuickBuildState.h"
|
|
|
|
void FvConsoleLeftQuickbuild::OnStartup(Entity* self) {
|
|
self->SetVar(u"IAmBuilt", false);
|
|
self->SetVar(u"AmActive", false);
|
|
}
|
|
|
|
void FvConsoleLeftQuickbuild::OnQuickBuildNotifyState(Entity* self, eQuickBuildState state) {
|
|
if (state == eQuickBuildState::COMPLETED) {
|
|
self->SetVar(u"IAmBuilt", true);
|
|
|
|
const auto objects = Game::entityManager->GetEntitiesInGroup("Facility");
|
|
|
|
if (!objects.empty()) {
|
|
objects[0]->NotifyObject(self, "ConsoleLeftUp");
|
|
}
|
|
} else if (state == eQuickBuildState::RESETTING) {
|
|
self->SetVar(u"IAmBuilt", false);
|
|
self->SetVar(u"AmActive", false);
|
|
|
|
const auto objects = Game::entityManager->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 = Game::entityManager->GetEntitiesInGroup("Facility");
|
|
|
|
if (!objects.empty()) {
|
|
objects[0]->NotifyObject(self, "ConsoleLeftActive");
|
|
}
|
|
}
|
|
|
|
GameMessages::SendTerminateInteraction(user->GetObjectID(), eTerminateType::FROM_INTERACTION, self->GetObjectID());
|
|
}
|