DarkflameServer/dScripts/ai/ACT/ActVehicleDeathTrigger.cpp

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

51 lines
1.2 KiB
C++
Raw Normal View History

#include "ActVehicleDeathTrigger.h"
#include "PossessableComponent.h"
#include "GameMessages.h"
#include "RacingComponent.h"
#include "dZoneManager.h"
#include "EntityManager.h"
2023-06-26 17:36:36 +00:00
#include "PossessionComponent.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 = EntityManager::Instance()->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()) {
2023-06-26 17:36:36 +00:00
auto* possessionComponent = target->GetComponent<PossessionComponent>();
2022-07-28 13:39:57 +00:00
2023-06-26 17:36:36 +00:00
if (possessionComponent == nullptr) {
return;
}
2022-07-28 13:39:57 +00:00
2023-06-26 17:36:36 +00:00
vehicle = EntityManager::Instance()->GetEntity(possessionComponent->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* racingComponent = zoneController->GetComponent<RacingComponent>();
2022-07-28 13:39:57 +00:00
if (racingComponent) racingComponent->OnRequestDie(player);
}