2021-12-05 17:54:36 +00:00
|
|
|
#include "DestroyableComponent.h"
|
|
|
|
#include "EntityManager.h"
|
2022-02-05 11:28:17 +00:00
|
|
|
#include "PossessorComponent.h"
|
|
|
|
#include "RaceImaginePowerup.h"
|
|
|
|
#include "RacingTaskParam.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include "MissionComponent.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void RaceImaginePowerup::OnFireEventServerSide(Entity* self, Entity* sender, std::string args, int32_t param1,
|
|
|
|
int32_t param2, int32_t param3) {
|
|
|
|
if (sender->IsPlayer() && args == "powerup") {
|
|
|
|
auto* possessorComponent = sender->GetComponent<PossessorComponent>();
|
|
|
|
|
|
|
|
if (possessorComponent == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* vehicle = EntityManager::Instance()->GetEntity(possessorComponent->GetPossessable());
|
|
|
|
|
|
|
|
if (vehicle == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* destroyableComponent = vehicle->GetComponent<DestroyableComponent>();
|
|
|
|
|
|
|
|
if (destroyableComponent == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
destroyableComponent->Imagine(10);
|
|
|
|
|
|
|
|
auto* missionComponent = sender->GetComponent<MissionComponent>();
|
|
|
|
|
2022-02-05 11:28:17 +00:00
|
|
|
if (missionComponent == nullptr) return;
|
|
|
|
missionComponent->Progress(MissionTaskType::MISSION_TASK_TYPE_RACING, self->GetLOT(), (LWOOBJID)RacingTaskParam::RACING_TASK_PARAM_COLLECT_IMAGINATION);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
}
|