DarkflameServer/dScripts/ai/ACT/ActVehicleDeathTrigger.cpp

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

53 lines
1.3 KiB
C++
Raw Normal View History

#include "ActVehicleDeathTrigger.h"
#include "PossessableComponent.h"
#include "GameMessages.h"
#include "RacingControlComponent.h"
#include "dZoneManager.h"
#include "EntityManager.h"
#include "PossessorComponent.h"
void ActVehicleDeathTrigger::OnCollisionPhantom(Entity* self, Entity* target) {
auto* possessableComponent = target->GetComponent<PossessableComponent>();
2022-07-28 13:39:57 +00:00
Entity* vehicle;
Entity* player;
2022-07-28 13:39:57 +00:00
if (possessableComponent != nullptr) {
auto* player = Game::entityManager->GetEntity(possessableComponent->GetPossessor());
2022-07-28 13:39:57 +00:00
if (player == nullptr) {
return;
}
2022-07-28 13:39:57 +00:00
return;
} else if (target->IsPlayer()) {
auto* possessorComponent = target->GetComponent<PossessorComponent>();
2022-07-28 13:39:57 +00:00
if (possessorComponent == nullptr) {
return;
}
2022-07-28 13:39:57 +00:00
vehicle = Game::entityManager->GetEntity(possessorComponent->GetPossessable());
2022-07-28 13:39:57 +00:00
if (vehicle == nullptr) {
return;
}
2022-07-28 13:39:57 +00:00
player = target;
} else {
return;
}
2022-07-28 13:39:57 +00:00
GameMessages::SendDie(vehicle, self->GetObjectID(), LWOOBJID_EMPTY, true, eKillType::VIOLENT, u"", 0, 0, 0, true, false, 0);
2022-07-28 13:39:57 +00:00
auto* zoneController = dZoneManager::Instance()->GetZoneControlObject();
2022-07-28 13:39:57 +00:00
auto* racingControlComponent = zoneController->GetComponent<RacingControlComponent>();
2022-07-28 13:39:57 +00:00
if (racingControlComponent != nullptr) {
racingControlComponent->OnRequestDie(player);
}
}