2021-12-05 17:54:36 +00:00
|
|
|
#include "CharacterComponent.h"
|
2022-02-05 11:28:17 +00:00
|
|
|
#include "DestroyableComponent.h"
|
|
|
|
#include "EntityManager.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
#include "PossessableComponent.h"
|
2022-02-05 11:28:17 +00:00
|
|
|
#include "RaceImagineCrateServer.h"
|
|
|
|
#include "eRacingTaskParam.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include "MissionComponent.h"
|
2022-02-05 11:28:17 +00:00
|
|
|
#include "SkillComponent.h"
|
2022-07-05 06:00:10 +00:00
|
|
|
#include "eMissionTaskType.h"
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
void RaceImagineCrateServer::OnDie(Entity* self, Entity* killer) {
|
|
|
|
if (self->GetVar<bool>(u"bIsDead")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
self->SetVar<bool>(u"bIsDead", true);
|
|
|
|
|
|
|
|
if (killer == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* skillComponent = killer->GetComponent<SkillComponent>();
|
|
|
|
|
|
|
|
if (skillComponent == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto* destroyableComponent = killer->GetComponent<DestroyableComponent>();
|
|
|
|
|
|
|
|
if (destroyableComponent != nullptr) {
|
|
|
|
destroyableComponent->SetImagination(60);
|
|
|
|
|
2023-07-15 20:56:33 +00:00
|
|
|
Game::entityManager->SerializeEntity(killer);
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
|
2022-02-05 11:28:17 +00:00
|
|
|
// Find possessor of race car to progress missions and update stats.
|
2021-12-05 17:54:36 +00:00
|
|
|
auto* possessableComponent = killer->GetComponent<PossessableComponent>();
|
|
|
|
if (possessableComponent != nullptr) {
|
|
|
|
|
2023-07-15 20:56:33 +00:00
|
|
|
auto* possessor = Game::entityManager->GetEntity(possessableComponent->GetPossessor());
|
2021-12-05 17:54:36 +00:00
|
|
|
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(RacingImaginationCratesSmashed);
|
|
|
|
characterComponent->UpdatePlayerStatistic(RacingSmashablesSmashed);
|
|
|
|
}
|
2022-02-05 11:28:17 +00:00
|
|
|
|
|
|
|
// Progress racing smashable missions
|
|
|
|
if (missionComponent == nullptr) return;
|
2023-12-28 04:18:20 +00:00
|
|
|
missionComponent->Progress(eMissionTaskType::RACING, 0, static_cast<LWOOBJID>(eRacingTaskParam::SMASHABLES));
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|