DarkflameServer/dScripts/ai/NS/WH/RockHydrantSmashable.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
654 B
C++
Raw Normal View History

#include "RockHydrantSmashable.h"
#include "EntityManager.h"
#include "EntityInfo.h"
2022-04-18 00:43:17 +00:00
#include "GeneralUtils.h"
2022-04-18 00:43:17 +00:00
void RockHydrantSmashable::OnDie(Entity* self, Entity* killer) {
const auto hydrantName = self->GetVar<std::u16string>(u"hydrant");
2022-04-18 00:43:17 +00:00
LDFBaseData* data = new LDFData<std::string>(u"hydrant", GeneralUtils::UTF16ToWTF8(hydrantName));
EntityInfo info{};
info.lot = ROCK_HYDRANT_BROKEN;
2022-04-18 00:43:17 +00:00
info.pos = self->GetPosition();
info.rot = self->GetRotation();
info.settings = { data };
info.spawnerID = self->GetSpawnerID();
auto* hydrant = EntityManager::Instance()->CreateEntity(info);
2022-04-18 00:43:17 +00:00
EntityManager::Instance()->ConstructEntity(hydrant);
2022-04-18 00:43:17 +00:00
}