2022-05-01 13:54:45 +00:00
|
|
|
#include "Darkitect.h"
|
|
|
|
#include "MissionComponent.h"
|
|
|
|
#include "DestroyableComponent.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
#include "GameMessages.h"
|
|
|
|
#include "Character.h"
|
|
|
|
#include "eMissionState.h"
|
|
|
|
|
|
|
|
void Darkitect::Reveal(Entity* self, Entity* player) {
|
|
|
|
const auto playerID = player->GetObjectID();
|
|
|
|
|
|
|
|
GameMessages::SendNotifyClientObject(self->GetObjectID(), u"reveal", 0, 0, playerID, "", player->GetSystemAddress());
|
|
|
|
|
|
|
|
self->AddCallbackTimer(20, [this, self, playerID]() {
|
2023-07-15 20:56:33 +00:00
|
|
|
auto* player = Game::entityManager->GetEntity(playerID);
|
2022-05-01 13:54:45 +00:00
|
|
|
|
|
|
|
if (!player) return;
|
|
|
|
|
|
|
|
auto* destroyableComponent = player->GetComponent<DestroyableComponent>();
|
|
|
|
auto* missionComponent = player->GetComponent<MissionComponent>();
|
|
|
|
auto* character = player->GetCharacter();
|
|
|
|
|
|
|
|
if (destroyableComponent != nullptr && missionComponent != nullptr && character != nullptr) {
|
|
|
|
destroyableComponent->SetArmor(0);
|
|
|
|
destroyableComponent->SetHealth(1);
|
|
|
|
destroyableComponent->SetImagination(0);
|
|
|
|
|
|
|
|
if (missionComponent->GetMissionState(1295) == eMissionState::ACTIVE) {
|
|
|
|
character->SetPlayerFlag(1911, true);
|
|
|
|
}
|
|
|
|
|
2023-07-15 20:56:33 +00:00
|
|
|
Game::entityManager->SerializeEntity(player);
|
2022-05-01 13:54:45 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|