2021-12-05 17:54:36 +00:00
|
|
|
#include "CharacterComponent.h"
|
|
|
|
#include "EntityManager.h"
|
|
|
|
#include "PossessableComponent.h"
|
2022-02-05 11:28:17 +00:00
|
|
|
#include "RaceSmashServer.h"
|
|
|
|
#include "RacingTaskParam.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void RaceSmashServer::OnDie(Entity *self, Entity *killer) {
|
|
|
|
// Crate is smashed by the car
|
|
|
|
auto* possessableComponent = killer->GetComponent<PossessableComponent>();
|
|
|
|
if (possessableComponent != nullptr) {
|
|
|
|
|
|
|
|
auto* possessor = EntityManager::Instance()->GetEntity(possessableComponent->GetPossessor());
|
|
|
|
if (possessor != nullptr) {
|
|
|
|
|
2022-02-05 11:28:17 +00:00
|
|
|
auto* missionComponent = possessor->GetComponent<MissionComponent>();
|
2021-12-05 17:54:36 +00:00
|
|
|
auto* characterComponent = possessor->GetComponent<CharacterComponent>();
|
2022-02-05 11:28:17 +00:00
|
|
|
|
2021-12-05 17:54:36 +00:00
|
|
|
if (characterComponent != nullptr) {
|
|
|
|
characterComponent->UpdatePlayerStatistic(RacingSmashablesSmashed);
|
|
|
|
}
|
2022-02-05 11:28:17 +00:00
|
|
|
|
|
|
|
// Progress racing smashable missions
|
|
|
|
if(missionComponent == nullptr) return;
|
|
|
|
missionComponent->Progress(MissionTaskType::MISSION_TASK_TYPE_RACING, 0, (LWOOBJID)RacingTaskParam::RACING_TASK_PARAM_SMASHABLES);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|