Finish implement AI behavior for CThardusRockProjectile

This commit is contained in:
Phillip Stephens 2020-09-05 09:33:31 -07:00
parent 1ba68175e9
commit 2c59420177
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D
2 changed files with 25 additions and 3 deletions

View File

@ -94,14 +94,36 @@ void CThardusRockProjectile::GetUp(CStateManager& mgr, EStateMsg msg, float dt)
if (thardus != nullptr && !x5dc_) {
x5dc_ = true;
sub80203824(mgr, x5cc_, result.GetPoint(), GetModelData()->GetScale(), 0);
ProcessSoundEvent(SFXsfx07AE, 1.f, 0, 0.1f, 1.f, 0.16f, 1.f, zeus::skZero3f, GetTranslation(),
mgr.GetNextAreaId(), mgr, false);
}
} else if (mgr.GetCameraManager()->GetCurrentCameraId() == mgr.GetCameraManager()->GetFirstPersonCamera()->GetUniqueId()) {
} else if (mgr.GetCameraManager()->GetCurrentCameraId() ==
mgr.GetCameraManager()->GetFirstPersonCamera()->GetUniqueId()) {
const CCameraShakeData data = CCameraShakeData::BuildMissileCameraShake(0.25f, 0.5f, 50.f, GetTranslation());
mgr.GetCameraManager()->AddCameraShaker(data, true);
}
if (x574_ == EAnimState::NotReady) {
if (GetBodyController()->GetBodyStateInfo().GetCurrentStateId() == pas::EAnimationState::Getup) {
x574_ = EAnimState::Repeat;
} else {
GetBodyController()->GetCommandMgr().DeliverCmd(CBCGetupCmd{pas::EGetupType::Zero});
}
} else if (x574_ == EAnimState::Repeat &&
GetBodyController()->GetBodyStateInfo().GetCurrentStateId() != pas::EAnimationState::Getup) {
x574_ = EAnimState::Over;
}
}
}
void CThardusRockProjectile::Lurk(CStateManager& mgr, EStateMsg msg, float dt) { CAi::Lurk(mgr, msg, dt); }
void CThardusRockProjectile::Lurk(CStateManager& mgr, EStateMsg msg, float dt) {
if (msg != EStateMsg::Update) {
return;
}
GetBodyController()->GetCommandMgr().DeliverCmd(
CBCLocomotionCmd{zeus::skZero3f, (mgr.GetPlayer().GetTranslation() - GetTranslation()).normalized(), 1.f});
}
bool CThardusRockProjectile::Delay(CStateManager& mgr, float arg) { return x5a8_ < x330_stateMachineState.GetTime(); }

@ -1 +1 @@
Subproject commit 6d0a738e1bf93b47c38e8042086b836142ca48e8
Subproject commit ce7ba8653e802d79ddcd852dbbe679993dd2b9a9