2023-04-09 06:10:23 +00:00
|
|
|
#include "SpecialPowerupSpawner.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
#include "GameMessages.h"
|
|
|
|
#include "SkillComponent.h"
|
|
|
|
#include "EntityManager.h"
|
2023-03-04 07:16:37 +00:00
|
|
|
#include "eReplicaComponentType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
2023-04-09 06:10:23 +00:00
|
|
|
void SpecialPowerupSpawner::OnStartup(Entity* self) {
|
2021-12-05 17:54:36 +00:00
|
|
|
self->SetProximityRadius(1.5f, "powerupEnter");
|
|
|
|
self->SetVar(u"bIsDead", false);
|
|
|
|
}
|
|
|
|
|
2023-04-09 06:10:23 +00:00
|
|
|
void SpecialPowerupSpawner::OnProximityUpdate(Entity* self, Entity* entering, const std::string name, const std::string status) {
|
2023-04-09 03:07:25 +00:00
|
|
|
if (name != "powerupEnter" && status != "ENTER") return;
|
|
|
|
if (!entering->IsPlayer()) return;
|
|
|
|
if (self->GetVar<bool>(u"bIsDead")) return;
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
GameMessages::SendPlayFXEffect(self, -1, u"pickup", "", LWOOBJID_EMPTY, 1, 1, true);
|
|
|
|
|
|
|
|
SkillComponent* skillComponent;
|
2023-04-09 03:07:25 +00:00
|
|
|
if (!self->TryGetComponent(eReplicaComponentType::SKILL, skillComponent)) return;
|
2023-04-09 14:38:56 +00:00
|
|
|
skillComponent->CastSkill(this->m_SkillId, entering->GetObjectID());
|
2022-07-28 13:39:57 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
self->SetVar(u"bIsDead", true);
|
2023-04-09 03:07:25 +00:00
|
|
|
self->Smash(entering->GetObjectID(), eKillType::SILENT);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|