2016-04-16 21:49:47 +00:00
|
|
|
#include "CCameraManager.hpp"
|
2016-04-16 23:48:29 +00:00
|
|
|
#include "CCameraShakeData.hpp"
|
2016-09-16 00:56:46 +00:00
|
|
|
#include "CFirstPersonCamera.hpp"
|
2016-04-17 02:50:45 +00:00
|
|
|
#include "CStateManager.hpp"
|
|
|
|
#include "World/CScriptWater.hpp"
|
2016-08-15 01:19:04 +00:00
|
|
|
#include "World/CPlayer.hpp"
|
2016-10-31 22:56:44 +00:00
|
|
|
#include "GameGlobalObjects.hpp"
|
2017-01-15 03:07:01 +00:00
|
|
|
#include "TCastTo.hpp"
|
2017-02-18 02:19:50 +00:00
|
|
|
#include "CCinematicCamera.hpp"
|
2017-03-24 05:30:16 +00:00
|
|
|
#include "CBallCamera.hpp"
|
|
|
|
#include "CInterpolationCamera.hpp"
|
2017-10-05 05:40:44 +00:00
|
|
|
#include "World/CScriptCameraHint.hpp"
|
2017-10-06 07:29:56 +00:00
|
|
|
#include "CPathCamera.hpp"
|
|
|
|
#include "World/CScriptSpindleCamera.hpp"
|
2017-01-15 03:07:01 +00:00
|
|
|
|
2016-04-16 21:49:47 +00:00
|
|
|
namespace urde
|
|
|
|
{
|
2016-10-31 22:56:44 +00:00
|
|
|
float CCameraManager::sAspect = 1.42f;
|
|
|
|
float CCameraManager::sFarPlane = 750.f;
|
|
|
|
float CCameraManager::sNearPlane = 0.2f;
|
|
|
|
float CCameraManager::sFirstPersonFOV = 55.f;
|
|
|
|
float CCameraManager::sThirdPersonFOV = 60.f;
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2016-09-16 00:56:46 +00:00
|
|
|
CCameraManager::CCameraManager(TUniqueId curCameraId) : x0_curCameraId(curCameraId)
|
2016-04-16 21:49:47 +00:00
|
|
|
{
|
2017-01-23 07:22:17 +00:00
|
|
|
CSfxManager::AddListener(CSfxManager::ESfxChannels::Game, zeus::CVector3f::skZero, zeus::CVector3f::skZero,
|
2017-09-19 03:59:50 +00:00
|
|
|
{1.f, 0.f, 0.f}, {0.f, 0.f, 1.f}, 50.f, 50.f, 1000.f, 1, 1.f);
|
2017-03-03 07:18:12 +00:00
|
|
|
sAspect = float(g_Viewport.x8_width / g_Viewport.xc_height);
|
2016-10-31 22:56:44 +00:00
|
|
|
sFirstPersonFOV = g_tweakGame->GetFirstPersonFOV();
|
2016-04-17 02:50:45 +00:00
|
|
|
}
|
|
|
|
|
2017-07-31 05:19:05 +00:00
|
|
|
bool CCameraManager::IsInFirstPersonCamera() const
|
|
|
|
{
|
|
|
|
return x7c_fpCamera->GetUniqueId() == x0_curCameraId;
|
|
|
|
}
|
|
|
|
|
2016-04-17 02:50:45 +00:00
|
|
|
zeus::CVector3f CCameraManager::GetGlobalCameraTranslation(const CStateManager& stateMgr) const
|
|
|
|
{
|
2017-02-13 00:00:07 +00:00
|
|
|
TCastToConstPtr<CGameCamera> camera(GetCurrentCamera(stateMgr));
|
2016-04-17 02:50:45 +00:00
|
|
|
return camera->GetTransform() * x30_shakeOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
zeus::CTransform CCameraManager::GetCurrentCameraTransform(const CStateManager& stateMgr) const
|
|
|
|
{
|
2017-02-13 00:00:07 +00:00
|
|
|
TCastToConstPtr<CGameCamera> camera(GetCurrentCamera(stateMgr));
|
2016-04-17 02:50:45 +00:00
|
|
|
return camera->GetTransform() * zeus::CTransform::Translate(x30_shakeOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::RemoveCameraShaker(int id)
|
|
|
|
{
|
2017-03-18 05:12:27 +00:00
|
|
|
for (auto it = x14_shakers.begin(); it != x14_shakers.end(); ++it)
|
|
|
|
if (it->xbc_shakerId == id)
|
2016-04-17 02:50:45 +00:00
|
|
|
{
|
2017-03-18 05:12:27 +00:00
|
|
|
x14_shakers.erase(it);
|
2016-04-17 02:50:45 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-18 05:12:27 +00:00
|
|
|
int CCameraManager::AddCameraShaker(const CCameraShakeData& data, bool sfx)
|
2016-04-17 02:50:45 +00:00
|
|
|
{
|
2017-03-18 05:12:27 +00:00
|
|
|
x14_shakers.emplace_back(data);
|
|
|
|
x14_shakers.back().xbc_shakerId = ++x2c_lastShakeId;
|
2017-10-06 07:29:56 +00:00
|
|
|
if (!xa0_24_pendingRumble)
|
2017-03-18 05:12:27 +00:00
|
|
|
{
|
2017-10-06 07:29:56 +00:00
|
|
|
xa0_24_pendingRumble = true;
|
|
|
|
x90_rumbleCooldown = 0.5f;
|
2017-03-18 05:12:27 +00:00
|
|
|
}
|
|
|
|
if (sfx && data.x0_duration > 0.f)
|
|
|
|
{
|
2017-10-10 03:50:48 +00:00
|
|
|
float vol =
|
|
|
|
zeus::clamp(100.f, std::max(data.GetMaxAMComponent(), data.GetMaxFMComponent()) * 9.f + 100.f, 127.f);
|
2017-03-18 05:12:27 +00:00
|
|
|
CSfxHandle sfxHandle;
|
|
|
|
if (data.xc0_flags & 0x1)
|
|
|
|
sfxHandle = CSfxManager::AddEmitter(1133, data.xc4_sfxPos, zeus::CVector3f::skZero,
|
|
|
|
vol / 127.f, false, false, 0x7f, kInvalidAreaId);
|
|
|
|
else
|
|
|
|
sfxHandle = CSfxManager::SfxStart(1133, vol / 127.f, 0.f, false, 0x7f, false, kInvalidAreaId);
|
|
|
|
sfxHandle->SetTimeRemaining(data.x0_duration);
|
|
|
|
}
|
2016-04-17 02:50:45 +00:00
|
|
|
return x2c_lastShakeId;
|
|
|
|
}
|
|
|
|
|
2016-09-16 00:56:46 +00:00
|
|
|
void CCameraManager::AddCinemaCamera(TUniqueId id, CStateManager& stateMgr) { x4_cineCameras.push_back(id); }
|
2016-04-17 02:50:45 +00:00
|
|
|
|
|
|
|
void CCameraManager::SetInsideFluid(bool val, TUniqueId fluidId)
|
|
|
|
{
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
++x74_fluidCounter;
|
|
|
|
x78_fluidId = fluidId;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
--x74_fluidCounter;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::Update(float dt, CStateManager& stateMgr)
|
|
|
|
{
|
2017-03-26 05:53:04 +00:00
|
|
|
UpdateCameraHints(dt, stateMgr);
|
2016-10-31 22:56:44 +00:00
|
|
|
ThinkCameras(dt, stateMgr);
|
|
|
|
UpdateListener(stateMgr);
|
|
|
|
UpdateRumble(dt, stateMgr);
|
|
|
|
UpdateFog(dt, stateMgr);
|
2016-04-17 02:50:45 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 17:54:00 +00:00
|
|
|
CGameCamera* CCameraManager::GetCurrentCamera(CStateManager& stateMgr) const
|
2016-04-17 02:50:45 +00:00
|
|
|
{
|
2016-04-17 05:35:32 +00:00
|
|
|
CObjectList* camList = stateMgr.ObjectListById(EGameObjectList::GameCamera);
|
2017-03-05 17:54:00 +00:00
|
|
|
return static_cast<CGameCamera*>(camList->GetObjectById(GetCurrentCameraId()));
|
2016-04-17 02:50:45 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 17:54:00 +00:00
|
|
|
const CGameCamera* CCameraManager::GetCurrentCamera(const CStateManager& stateMgr) const
|
2016-04-17 02:50:45 +00:00
|
|
|
{
|
|
|
|
const CObjectList* camList = stateMgr.GetObjectListById(EGameObjectList::GameCamera);
|
2017-03-05 17:54:00 +00:00
|
|
|
return static_cast<const CGameCamera*>(camList->GetObjectById(GetCurrentCameraId()));
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|
|
|
|
|
2017-03-24 05:30:16 +00:00
|
|
|
void CCameraManager::CreateStandardCameras(CStateManager& stateMgr)
|
|
|
|
{
|
|
|
|
TUniqueId fpId = stateMgr.AllocateUniqueId();
|
|
|
|
x7c_fpCamera = new CFirstPersonCamera(fpId, zeus::CTransform::Identity(),
|
2017-08-19 06:52:13 +00:00
|
|
|
stateMgr.Player()->GetUniqueId(), g_tweakPlayer->GetOrbitCameraSpeed(),
|
2017-03-24 05:30:16 +00:00
|
|
|
sFirstPersonFOV, sNearPlane, sFarPlane, sAspect);
|
|
|
|
stateMgr.AddObject(x7c_fpCamera);
|
2017-08-19 06:52:13 +00:00
|
|
|
stateMgr.Player()->SetCameraState(CPlayer::EPlayerCameraState::FirstPerson, stateMgr);
|
2017-03-24 05:30:16 +00:00
|
|
|
SetCurrentCameraId(fpId, stateMgr);
|
|
|
|
|
|
|
|
x80_ballCamera = new CBallCamera(stateMgr.AllocateUniqueId(), stateMgr.Player()->GetUniqueId(),
|
|
|
|
zeus::CTransform::Identity(), sThirdPersonFOV,
|
|
|
|
sNearPlane, sFarPlane, sAspect);
|
|
|
|
stateMgr.AddObject(x80_ballCamera);
|
|
|
|
|
|
|
|
x88_interpCamera = new CInterpolationCamera(stateMgr.AllocateUniqueId(), zeus::CTransform::Identity());
|
|
|
|
stateMgr.AddObject(x88_interpCamera);
|
|
|
|
}
|
|
|
|
|
2017-02-18 02:19:50 +00:00
|
|
|
void CCameraManager::SkipCinematic(CStateManager& stateMgr)
|
|
|
|
{
|
|
|
|
TUniqueId camId = GetCurrentCameraId();
|
|
|
|
CCinematicCamera* ent = static_cast<CCinematicCamera*>(stateMgr.ObjectById(camId));
|
|
|
|
while (ent)
|
|
|
|
{
|
|
|
|
ent->SetActive(false);
|
|
|
|
ent->WasDeactivated(stateMgr);
|
|
|
|
ent = TCastToPtr<CCinematicCamera>(GetCurrentCamera(stateMgr)).GetPtr();
|
|
|
|
}
|
|
|
|
stateMgr.GetPlayer().UpdateCinematicState(stateMgr);
|
|
|
|
x7c_fpCamera->SkipCinematic();
|
|
|
|
}
|
|
|
|
|
2017-10-06 07:29:56 +00:00
|
|
|
void CCameraManager::SetPathCamera(TUniqueId id, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
xa4_pathCamId = id;
|
|
|
|
if (TCastToPtr<CPathCamera> cam = mgr.ObjectById(id))
|
|
|
|
{
|
|
|
|
cam->Reset(GetCurrentCameraTransform(mgr), mgr);
|
|
|
|
x80_ballCamera->TeleportCamera(cam->GetTransform(), mgr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::SetSpindleCamera(TUniqueId id, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
xa2_spindleCamId = id;
|
|
|
|
if (TCastToPtr<CScriptSpindleCamera> cam = mgr.ObjectById(id))
|
|
|
|
{
|
|
|
|
cam->Reset(GetCurrentCameraTransform(mgr), mgr);
|
|
|
|
x80_ballCamera->TeleportCamera(cam->GetTransform(), mgr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::InterpolateToBallCamera(const zeus::CTransform& xf, TUniqueId camId,
|
|
|
|
const zeus::CVector3f& lookDir, float f1, float f2, float f3,
|
|
|
|
bool b1, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
if (!IsInFirstPersonCamera())
|
|
|
|
{
|
|
|
|
x88_interpCamera->SetInterpolation(xf, lookDir, f1, f2, f3, camId, b1, mgr);
|
|
|
|
if (!ShouldBypassInterpolation())
|
|
|
|
SetCurrentCameraId(x88_interpCamera->GetUniqueId(), mgr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::RestoreHintlessCamera(CStateManager& mgr)
|
|
|
|
{
|
|
|
|
TCastToPtr<CScriptCameraHint> hint = mgr.ObjectById(xa6_camHintId);
|
|
|
|
zeus::CTransform ballCamXf = x80_ballCamera->GetTransform();
|
|
|
|
xa6_camHintId = kInvalidUniqueId;
|
|
|
|
xa8_hintPriority = 1000;
|
|
|
|
if (hint)
|
|
|
|
{
|
|
|
|
zeus::CVector3f camToPlayerFlat = mgr.GetPlayer().GetTranslation() - ballCamXf.origin;
|
|
|
|
camToPlayerFlat.z = 0.f;
|
|
|
|
if (camToPlayerFlat.canBeNormalized())
|
|
|
|
camToPlayerFlat.normalize();
|
|
|
|
else
|
|
|
|
camToPlayerFlat = mgr.GetPlayer().GetMoveDir();
|
|
|
|
|
|
|
|
x80_ballCamera->ResetToTweaks(mgr);
|
|
|
|
x80_ballCamera->UpdateLookAtPosition(0.f, mgr);
|
|
|
|
if (!mgr.GetPlayer().IsMorphBallTransitioning() &&
|
|
|
|
hint->GetHint().GetBehaviourType() != CBallCamera::EBallCameraBehaviour::Zero)
|
|
|
|
{
|
|
|
|
if ((hint->GetHint().GetOverrideFlags() & 0x1000) != 0)
|
|
|
|
{
|
|
|
|
x80_ballCamera->SetX474(hint->GetHint().GetX4C());
|
|
|
|
x80_ballCamera->SetX470(hint->GetHint().GetX5C());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
x80_ballCamera->TeleportCamera(x80_ballCamera->UpdateLookDirection(camToPlayerFlat, mgr), mgr);
|
|
|
|
InterpolateToBallCamera(ballCamXf, x80_ballCamera->GetUniqueId(), x80_ballCamera->GetX1D8(),
|
|
|
|
hint->GetHint().GetX5C(), hint->GetHint().GetX4C(), hint->GetHint().GetX50(),
|
2017-10-06 07:43:39 +00:00
|
|
|
(hint->GetHint().GetOverrideFlags() & 0x800) != 0, mgr);
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::SkipBallCameraCinematic(CStateManager& mgr)
|
|
|
|
{
|
|
|
|
if (IsInCinematicCamera())
|
|
|
|
{
|
|
|
|
x80_ballCamera->TeleportCamera(GetLastCineCamera(mgr)->GetTransform(), mgr);
|
|
|
|
x80_ballCamera->SetFovInterpolation(GetLastCineCamera(mgr)->GetFov(), x80_ballCamera->GetFov(), 1.f, 0.f);
|
|
|
|
SkipCinematic(mgr);
|
|
|
|
SetCurrentCameraId(x80_ballCamera->GetUniqueId(), mgr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::ApplyCameraHint(const CScriptCameraHint& hint, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
if (x80_ballCamera->GetState() == CBallCamera::EBallCameraState::Four)
|
|
|
|
{
|
|
|
|
x80_ballCamera->SetState(CBallCamera::EBallCameraState::Zero, mgr);
|
|
|
|
mgr.GetPlayer().SetCameraState(CPlayer::EPlayerCameraState::Ball, mgr);
|
|
|
|
}
|
|
|
|
|
|
|
|
TCastToPtr<CScriptCameraHint> oldHint = mgr.ObjectById(xa6_camHintId);
|
|
|
|
xa6_camHintId = hint.GetUniqueId();
|
|
|
|
xa8_hintPriority = hint.GetPriority();
|
|
|
|
|
|
|
|
zeus::CTransform camXf = GetCurrentCameraTransform(mgr);
|
|
|
|
x80_ballCamera->ApplyCameraHint(mgr);
|
|
|
|
|
|
|
|
if ((hint.GetHint().GetOverrideFlags() & 0x20) != 0)
|
|
|
|
x80_ballCamera->ResetPosition();
|
|
|
|
|
|
|
|
switch (hint.GetHint().GetBehaviourType())
|
|
|
|
{
|
|
|
|
case CBallCamera::EBallCameraBehaviour::Six:
|
|
|
|
case CBallCamera::EBallCameraBehaviour::Seven:
|
|
|
|
SetPathCamera(hint.GetDelegatedCamera(), mgr);
|
|
|
|
break;
|
|
|
|
case CBallCamera::EBallCameraBehaviour::Eight:
|
|
|
|
SetSpindleCamera(hint.GetDelegatedCamera(), mgr);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SetPathCamera(kInvalidUniqueId, mgr);
|
|
|
|
SetSpindleCamera(kInvalidUniqueId, mgr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((hint.GetHint().GetOverrideFlags() & 0x2000) != 0)
|
|
|
|
SkipBallCameraCinematic(mgr);
|
|
|
|
|
|
|
|
x80_ballCamera->UpdateLookAtPosition(0.f, mgr);
|
|
|
|
|
|
|
|
if ((hint.GetHint().GetOverrideFlags() & 0x20) == 0 &&
|
|
|
|
(hint.GetHint().GetBehaviourType() != CBallCamera::EBallCameraBehaviour::Zero ||
|
|
|
|
(oldHint && oldHint->GetHint().GetBehaviourType() != CBallCamera::EBallCameraBehaviour::Zero)))
|
|
|
|
{
|
|
|
|
InterpolateToBallCamera(camXf, x80_ballCamera->GetUniqueId(), x80_ballCamera->GetX1D8(),
|
|
|
|
hint.GetHint().GetX58(), hint.GetHint().GetX4C(), hint.GetHint().GetX50(),
|
2017-10-06 07:43:39 +00:00
|
|
|
(hint.GetHint().GetOverrideFlags() & 0x400) != 0, mgr);
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-26 05:53:04 +00:00
|
|
|
void CCameraManager::UpdateCameraHints(float, CStateManager& mgr)
|
2016-10-31 22:56:44 +00:00
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
bool invalidHintRemoved = false;
|
2017-10-06 07:29:56 +00:00
|
|
|
for (auto it = xac_cameraHints.begin() ; it != xac_cameraHints.end() ;)
|
|
|
|
{
|
|
|
|
if (!TCastToPtr<CScriptCameraHint>(mgr.ObjectById(it->second)))
|
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
invalidHintRemoved = true;
|
2017-10-06 07:29:56 +00:00
|
|
|
it = xac_cameraHints.erase(it);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
++it;
|
|
|
|
}
|
2017-10-05 05:40:44 +00:00
|
|
|
|
2017-10-06 07:43:39 +00:00
|
|
|
bool inactiveHintRemoved = false;
|
2017-10-06 07:29:56 +00:00
|
|
|
for (TUniqueId id : x2b0_inactiveCameraHints)
|
|
|
|
{
|
|
|
|
if (TCastToConstPtr<CScriptCameraHint> hint = mgr.GetObjectById(id))
|
|
|
|
{
|
|
|
|
if (hint->GetHelperCount() == 0 || hint->GetInactive())
|
|
|
|
{
|
|
|
|
for (auto it = xac_cameraHints.begin() ; it != xac_cameraHints.end() ; ++it)
|
|
|
|
{
|
|
|
|
if (it->second == id)
|
|
|
|
{
|
|
|
|
xac_cameraHints.erase(it);
|
|
|
|
if (xa6_camHintId == id)
|
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
inactiveHintRemoved = true;
|
2017-10-06 07:29:56 +00:00
|
|
|
SetPathCamera(kInvalidUniqueId, mgr);
|
|
|
|
SetSpindleCamera(kInvalidUniqueId, mgr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x2b0_inactiveCameraHints.clear();
|
|
|
|
|
2017-10-06 07:43:39 +00:00
|
|
|
bool activeHintAdded = false;
|
2017-10-06 07:29:56 +00:00
|
|
|
for (TUniqueId id : x334_activeCameraHints)
|
|
|
|
{
|
|
|
|
if (TCastToConstPtr<CScriptCameraHint> hint = mgr.GetObjectById(id))
|
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
bool activeHintPresent = false;
|
2017-10-06 07:29:56 +00:00
|
|
|
for (auto it = xac_cameraHints.begin() ; it != xac_cameraHints.end() ; ++it)
|
|
|
|
{
|
|
|
|
if (it->second == id)
|
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
activeHintPresent = true;
|
2017-10-06 07:29:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-06 07:43:39 +00:00
|
|
|
if (!activeHintPresent)
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
activeHintAdded = true;
|
2017-10-06 07:29:56 +00:00
|
|
|
xac_cameraHints.emplace_back(hint->GetPriority(), id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x334_activeCameraHints.clear();
|
|
|
|
|
2017-10-06 07:43:39 +00:00
|
|
|
if (inactiveHintRemoved || activeHintAdded || invalidHintRemoved)
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
|
|
|
std::sort(xac_cameraHints.begin(), xac_cameraHints.end(),
|
|
|
|
[](const auto& a, const auto& b) { return a.first < b.first; });
|
|
|
|
zeus::CTransform ballCamXf = x80_ballCamera->GetTransform();
|
2017-10-06 07:43:39 +00:00
|
|
|
if ((inactiveHintRemoved || invalidHintRemoved) && xac_cameraHints.empty())
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
|
|
|
RestoreHintlessCamera(mgr);
|
|
|
|
return;
|
|
|
|
}
|
2017-10-06 07:43:39 +00:00
|
|
|
bool foundHint = false;
|
|
|
|
CScriptCameraHint* bestHint = nullptr;
|
2017-10-06 07:29:56 +00:00
|
|
|
for (auto& h : xac_cameraHints)
|
|
|
|
{
|
|
|
|
if (TCastToPtr<CScriptCameraHint> hint = mgr.ObjectById(h.second))
|
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
bestHint = hint.GetPtr();
|
|
|
|
foundHint = true;
|
2017-10-06 07:29:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-10-06 07:43:39 +00:00
|
|
|
if (!foundHint)
|
2017-10-06 07:29:56 +00:00
|
|
|
RestoreHintlessCamera(mgr);
|
|
|
|
|
2017-10-06 07:43:39 +00:00
|
|
|
bool changeHint = false;
|
|
|
|
if (bestHint && foundHint)
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
if ((bestHint->GetHint().GetOverrideFlags() & 0x80) != 0 && xac_cameraHints.size() > 1)
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
|
|
|
zeus::CVector3f ballPos = mgr.GetPlayer().GetBallPosition();
|
2017-10-06 07:43:39 +00:00
|
|
|
if ((bestHint->GetHint().GetOverrideFlags() & 0x100) != 0)
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
|
|
|
zeus::CVector3f camToBall = ballPos - ballCamXf.origin;
|
|
|
|
if (camToBall.canBeNormalized())
|
|
|
|
camToBall.normalize();
|
|
|
|
else
|
|
|
|
camToBall = ballCamXf.basis[1];
|
|
|
|
|
|
|
|
for (auto it = xac_cameraHints.begin() + 1 ; it != xac_cameraHints.end() ; ++it)
|
|
|
|
{
|
|
|
|
if (TCastToPtr<CScriptCameraHint> hint = mgr.ObjectById(it->second))
|
|
|
|
{
|
|
|
|
if ((hint->GetHint().GetOverrideFlags() & 0x80) != 0 && hint->GetPriority() ==
|
2017-10-06 07:43:39 +00:00
|
|
|
bestHint->GetPriority() &&
|
|
|
|
hint->GetAreaIdAlways() == bestHint->GetAreaIdAlways())
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
zeus::CVector3f hintToBall = ballPos - bestHint->GetTranslation();
|
2017-10-06 07:29:56 +00:00
|
|
|
if (hintToBall.canBeNormalized())
|
|
|
|
hintToBall.normalize();
|
|
|
|
else
|
2017-10-06 07:43:39 +00:00
|
|
|
hintToBall = bestHint->GetTransform().basis[1];
|
2017-10-06 07:29:56 +00:00
|
|
|
|
|
|
|
float camHintDot = zeus::clamp(-1.f, camToBall.dot(hintToBall), 1.f);
|
|
|
|
|
|
|
|
zeus::CVector3f thisHintToBall = ballPos - hint->GetTranslation();
|
|
|
|
if (thisHintToBall.canBeNormalized())
|
|
|
|
thisHintToBall.normalize();
|
|
|
|
else
|
|
|
|
thisHintToBall = hint->GetTransform().basis[1];
|
|
|
|
|
|
|
|
float camThisHintDot = zeus::clamp(-1.f, camToBall.dot(thisHintToBall), 1.f);
|
|
|
|
|
|
|
|
if (camThisHintDot > camHintDot)
|
2017-10-06 07:43:39 +00:00
|
|
|
bestHint = hint.GetPtr();
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
if (TCastToConstPtr<CActor> act = mgr.GetObjectById(bestHint->GetFirstHelper()))
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
|
|
|
zeus::CVector3f ballPos = mgr.GetPlayer().GetBallPosition();
|
|
|
|
zeus::CVector3f f26 = act->GetTranslation() - ballPos;
|
|
|
|
zeus::CVector3f ballToHelper = f26;
|
|
|
|
if (ballToHelper.canBeNormalized())
|
|
|
|
ballToHelper.normalize();
|
|
|
|
else
|
2017-10-06 07:43:39 +00:00
|
|
|
ballToHelper = bestHint->GetTransform().basis[1];
|
2017-10-06 07:29:56 +00:00
|
|
|
|
|
|
|
for (auto it = xac_cameraHints.begin() + 1 ; it != xac_cameraHints.end() ; ++it)
|
|
|
|
{
|
|
|
|
if (TCastToPtr<CScriptCameraHint> hint = mgr.ObjectById(it->second))
|
|
|
|
{
|
|
|
|
if ((hint->GetHint().GetOverrideFlags() & 0x80) != 0 && hint->GetPriority() ==
|
2017-10-06 07:43:39 +00:00
|
|
|
bestHint->GetPriority() &&
|
|
|
|
hint->GetAreaIdAlways() == bestHint->GetAreaIdAlways())
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
zeus::CVector3f hintToHelper = act->GetTranslation() - bestHint->GetTranslation();
|
2017-10-06 07:29:56 +00:00
|
|
|
if (hintToHelper.canBeNormalized())
|
|
|
|
hintToHelper.normalize();
|
|
|
|
else
|
2017-10-06 07:43:39 +00:00
|
|
|
hintToHelper = bestHint->GetTransform().basis[1];
|
2017-10-06 07:29:56 +00:00
|
|
|
|
|
|
|
float ballHintDot = zeus::clamp(-1.f, ballToHelper.dot(hintToHelper), 1.f);
|
|
|
|
|
|
|
|
zeus::CVector3f thisBallToHelper = f26;
|
|
|
|
if (thisBallToHelper.canBeNormalized())
|
|
|
|
thisBallToHelper.normalize();
|
|
|
|
else
|
|
|
|
thisBallToHelper = hint->GetTransform().basis[1];
|
|
|
|
|
|
|
|
zeus::CVector3f thisHintToHelper = act->GetTranslation() - hint->GetTranslation();
|
|
|
|
if (thisHintToHelper.canBeNormalized())
|
|
|
|
thisHintToHelper.normalize();
|
|
|
|
else
|
|
|
|
thisHintToHelper = hint->GetTransform().basis[1];
|
|
|
|
|
|
|
|
float thisBallHintDot =
|
|
|
|
zeus::clamp(-1.f, thisBallToHelper.dot(thisHintToHelper), 1.f);
|
|
|
|
|
|
|
|
if (thisBallHintDot > ballHintDot)
|
2017-10-06 07:43:39 +00:00
|
|
|
bestHint = hint.GetPtr();
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-06 07:43:39 +00:00
|
|
|
if (bestHint->GetUniqueId() != xa6_camHintId)
|
|
|
|
changeHint = true;
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
2017-10-06 07:43:39 +00:00
|
|
|
else if (xa6_camHintId != bestHint->GetUniqueId())
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
if (bestHint->GetHint().GetBehaviourType() == CBallCamera::EBallCameraBehaviour::Three)
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
if ((bestHint->GetHint().GetOverrideFlags() & 0x20) != 0)
|
2017-10-06 07:29:56 +00:00
|
|
|
{
|
|
|
|
x80_ballCamera->TeleportCamera(
|
2017-10-06 07:43:39 +00:00
|
|
|
zeus::lookAt(bestHint->GetTranslation(), x80_ballCamera->GetX1D8()), mgr);
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
2017-10-06 07:43:39 +00:00
|
|
|
DeleteCameraHint(bestHint->GetUniqueId(), mgr);
|
|
|
|
if ((bestHint->GetHint().GetOverrideFlags() & 0x2000) != 0)
|
2017-10-06 07:29:56 +00:00
|
|
|
SkipBallCameraCinematic(mgr);
|
2017-10-06 07:43:39 +00:00
|
|
|
changeHint = false;
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-06 07:43:39 +00:00
|
|
|
changeHint = true;
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-06 07:43:39 +00:00
|
|
|
if (changeHint)
|
|
|
|
ApplyCameraHint(*bestHint, mgr);
|
2017-10-06 07:29:56 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-31 22:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::ThinkCameras(float dt, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
CGameCameraList gcList = mgr.GetCameraObjectList();
|
|
|
|
|
|
|
|
for (CEntity* ent : gcList)
|
|
|
|
{
|
2017-10-06 07:29:56 +00:00
|
|
|
if (TCastToPtr<CGameCamera> gc = ent)
|
2016-10-31 22:56:44 +00:00
|
|
|
{
|
|
|
|
gc->Think(dt, mgr);
|
|
|
|
gc->UpdatePerspective(dt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsInCinematicCamera())
|
|
|
|
return;
|
|
|
|
|
|
|
|
TUniqueId camId = GetLastCameraId();
|
2017-10-06 07:29:56 +00:00
|
|
|
if (const CGameCamera* cam = TCastToConstPtr<CGameCamera>(mgr.GetObjectById(camId)))
|
2016-10-31 22:56:44 +00:00
|
|
|
x3bc_curFov = cam->GetFov();
|
|
|
|
}
|
|
|
|
|
2017-10-06 07:29:56 +00:00
|
|
|
void CCameraManager::UpdateFog(float dt, CStateManager& mgr)
|
2016-10-31 22:56:44 +00:00
|
|
|
{
|
2017-10-06 07:29:56 +00:00
|
|
|
if (x98_fogDensitySpeed != 0.f)
|
|
|
|
{
|
|
|
|
x94_fogDensityFactor += dt * x98_fogDensitySpeed;
|
|
|
|
if ((x98_fogDensitySpeed > 0.f) ? x94_fogDensityFactor > x9c_fogDensityFactorTarget :
|
|
|
|
x94_fogDensityFactor < x9c_fogDensityFactorTarget)
|
|
|
|
{
|
|
|
|
x94_fogDensityFactor = x9c_fogDensityFactorTarget;
|
|
|
|
x98_fogDensitySpeed = 0.f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x74_fluidCounter)
|
|
|
|
{
|
|
|
|
if (TCastToConstPtr<CScriptWater> water = mgr.GetObjectById(x78_fluidId))
|
|
|
|
{
|
|
|
|
zeus::CVector2f zRange(GetCurrentCamera(mgr)->GetNearClipDistance(),
|
|
|
|
CalculateFogDensity(mgr, water.GetPtr()));
|
|
|
|
x3c_fog.SetFogExplicit(ERglFogMode::PerspExp, water->GetFogColor(), zRange);
|
|
|
|
if (mgr.GetPlayerState()->GetActiveVisor(mgr) == CPlayerState::EPlayerVisor::Thermal)
|
|
|
|
mgr.GetCameraFilterPass(4).DisableFilter(0.f);
|
|
|
|
else
|
|
|
|
mgr.GetCameraFilterPass(4).SetFilter(EFilterType::Multiply, EFilterShape::Fullscreen,
|
|
|
|
0.f, water->GetFogColor(), {});
|
|
|
|
}
|
|
|
|
xa0_26_inWater = true;
|
|
|
|
}
|
|
|
|
else if (xa0_26_inWater)
|
|
|
|
{
|
|
|
|
mgr.GetCameraManager()->x3c_fog.DisableFog();
|
|
|
|
mgr.GetCameraFilterPass(4).DisableFilter(0.f);
|
|
|
|
xa0_26_inWater = false;
|
|
|
|
}
|
2016-10-31 22:56:44 +00:00
|
|
|
|
2017-10-06 07:29:56 +00:00
|
|
|
x3c_fog.Update(dt);
|
2016-10-31 22:56:44 +00:00
|
|
|
}
|
|
|
|
|
2017-10-06 07:29:56 +00:00
|
|
|
void CCameraManager::UpdateRumble(float dt, CStateManager& mgr)
|
2016-10-31 22:56:44 +00:00
|
|
|
{
|
2017-10-06 07:29:56 +00:00
|
|
|
x30_shakeOffset = zeus::CVector3f::skZero;
|
|
|
|
for (auto it = x14_shakers.begin() ; it != x14_shakers.end() ;)
|
|
|
|
{
|
|
|
|
CCameraShakeData& shaker = *it;
|
|
|
|
shaker.Update(dt, mgr);
|
|
|
|
if (shaker.x4_curTime >= shaker.x0_duration)
|
|
|
|
{
|
|
|
|
it = x14_shakers.erase(it);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
x30_shakeOffset += shaker.GetPoint();
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!x14_shakers.empty() && !xa0_25_rumbling && xa0_24_pendingRumble)
|
|
|
|
{
|
|
|
|
mgr.GetRumbleManager().Rumble(mgr, ERumbleFxId::Six, 1.f, ERumblePriority::Two);
|
|
|
|
xa0_25_rumbling = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (x90_rumbleCooldown > 0.f)
|
|
|
|
{
|
|
|
|
x90_rumbleCooldown -= dt;
|
|
|
|
}
|
|
|
|
else if (xa0_25_rumbling)
|
|
|
|
{
|
|
|
|
xa0_24_pendingRumble = false;
|
|
|
|
xa0_25_rumbling = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mgr.GetPlayer().GetCameraState() != CPlayer::EPlayerCameraState::FirstPerson &&
|
|
|
|
!IsInCinematicCamera())
|
|
|
|
x30_shakeOffset = zeus::CVector3f::skZero;
|
2016-10-31 22:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::UpdateListener(CStateManager& mgr)
|
|
|
|
{
|
|
|
|
const zeus::CTransform xf = GetCurrentCameraTransform(mgr);
|
2017-09-19 03:59:50 +00:00
|
|
|
CSfxManager::UpdateListener(xf.origin, zeus::CVector3f::skZero, xf.frontVector(), xf.upVector(), 1.f);
|
2016-10-31 22:56:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float CCameraManager::CalculateFogDensity(CStateManager& mgr, const CScriptWater* water)
|
|
|
|
{
|
2017-10-06 07:29:56 +00:00
|
|
|
float distanceFactor = 1.f - water->GetFluidPlane().GetAlpha();
|
|
|
|
float distance = 0;
|
2016-10-31 22:56:44 +00:00
|
|
|
if (mgr.GetPlayerState()->HasPowerUp(CPlayerState::EItemType::GravitySuit))
|
2017-10-06 07:43:39 +00:00
|
|
|
distance = g_tweakGame->GetGravityWaterFogDistanceRange() * distanceFactor +
|
|
|
|
g_tweakGame->GetGravityWaterFogDistanceBase();
|
2016-10-31 22:56:44 +00:00
|
|
|
else
|
2017-10-06 07:43:39 +00:00
|
|
|
distance = g_tweakGame->GetWaterFogDistanceRange() * distanceFactor +
|
|
|
|
g_tweakGame->GetWaterFogDistanceBase();
|
2016-10-31 22:56:44 +00:00
|
|
|
|
2017-10-06 07:29:56 +00:00
|
|
|
return distance * x94_fogDensityFactor;
|
2016-10-31 22:56:44 +00:00
|
|
|
}
|
|
|
|
|
2016-08-15 01:19:04 +00:00
|
|
|
void CCameraManager::ResetCameras(CStateManager& mgr)
|
|
|
|
{
|
|
|
|
zeus::CTransform xf = mgr.GetPlayer().CreateTransformFromMovementDirection();
|
|
|
|
xf.origin = mgr.GetPlayer().GetEyePosition();
|
|
|
|
|
2016-08-15 20:58:07 +00:00
|
|
|
for (CEntity* ent : mgr.GetCameraObjectList())
|
2016-08-15 01:19:04 +00:00
|
|
|
{
|
2017-01-15 03:59:37 +00:00
|
|
|
TCastToPtr<CGameCamera> camObj(ent);
|
2016-08-15 01:19:04 +00:00
|
|
|
camObj->Reset(xf, mgr);
|
|
|
|
}
|
|
|
|
}
|
2016-10-15 19:18:50 +00:00
|
|
|
|
|
|
|
void CCameraManager::SetSpecialCameras(CFirstPersonCamera& fp, CBallCamera& ball)
|
|
|
|
{
|
|
|
|
x7c_fpCamera = &fp;
|
|
|
|
x80_ballCamera = &ball;
|
|
|
|
}
|
2017-03-24 05:30:16 +00:00
|
|
|
|
|
|
|
void CCameraManager::ProcessInput(const CFinalInput& input, CStateManager& stateMgr)
|
|
|
|
{
|
|
|
|
for (CEntity* ent : stateMgr.GetCameraObjectList())
|
|
|
|
{
|
2017-08-16 05:34:02 +00:00
|
|
|
if (ent == nullptr)
|
2017-03-24 05:30:16 +00:00
|
|
|
continue;
|
2017-08-16 05:34:02 +00:00
|
|
|
auto& cam = static_cast<CGameCamera&>(*ent);
|
2017-03-24 05:30:16 +00:00
|
|
|
if (input.ControllerIdx() != cam.x16c_controllerIdx)
|
|
|
|
continue;
|
|
|
|
cam.ProcessInput(input, stateMgr);
|
|
|
|
}
|
|
|
|
}
|
2017-03-26 19:36:07 +00:00
|
|
|
|
|
|
|
void CCameraManager::RenderCameras(const CStateManager& mgr)
|
|
|
|
{
|
|
|
|
for (CEntity* cam : mgr.GetCameraObjectList())
|
|
|
|
static_cast<CGameCamera*>(cam)->Render(mgr);
|
|
|
|
}
|
2017-08-02 07:13:11 +00:00
|
|
|
|
|
|
|
void CCameraManager::SetupBallCamera(CStateManager& mgr)
|
|
|
|
{
|
2017-10-07 05:32:11 +00:00
|
|
|
if (TCastToPtr<CScriptCameraHint> hint = mgr.ObjectById(xa6_camHintId))
|
|
|
|
{
|
|
|
|
if (hint->GetHint().GetBehaviourType() == CBallCamera::EBallCameraBehaviour::Three)
|
|
|
|
{
|
|
|
|
if ((hint->GetHint().GetOverrideFlags() & 0x20) != 0)
|
|
|
|
x80_ballCamera->TeleportCamera(hint->GetTransform(), mgr);
|
|
|
|
AddInactiveCameraHint(xa6_camHintId, mgr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ApplyCameraHint(*hint, mgr);
|
|
|
|
}
|
|
|
|
}
|
2017-08-02 07:13:11 +00:00
|
|
|
}
|
|
|
|
|
2017-08-18 01:30:15 +00:00
|
|
|
void CCameraManager::SetPlayerCamera(CStateManager& mgr, TUniqueId newCamId)
|
2017-08-02 07:13:11 +00:00
|
|
|
{
|
2017-10-07 05:32:11 +00:00
|
|
|
if (x88_interpCamera->GetActive())
|
|
|
|
{
|
|
|
|
x88_interpCamera->SetActive(false);
|
|
|
|
x80_ballCamera->SkipFovInterpolation();
|
|
|
|
if (!ShouldBypassInterpolation())
|
|
|
|
SetCurrentCameraId(newCamId, mgr);
|
|
|
|
}
|
2017-08-02 07:13:11 +00:00
|
|
|
}
|
2017-08-16 05:34:02 +00:00
|
|
|
|
|
|
|
float CCameraManager::GetCameraBobMagnitude() const
|
|
|
|
{
|
|
|
|
return 1.f - zeus::clamp(-1.f, zeus::clamp(-1.f,
|
|
|
|
x7c_fpCamera->GetTransform().basis[1].dot(zeus::CVector3f::skUp), 1.f) /
|
|
|
|
std::cos(2.f * M_PIF / 12.f), 1.f);
|
|
|
|
}
|
2017-08-18 01:30:15 +00:00
|
|
|
|
|
|
|
bool CCameraManager::HasBallCameraInitialPositionHint(CStateManager& mgr) const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2017-08-29 13:17:52 +00:00
|
|
|
|
|
|
|
void CCameraManager::RemoveCinemaCamera(TUniqueId uid, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
x4_cineCameras.erase(std::remove(x4_cineCameras.begin(), x4_cineCameras.end(), uid));
|
|
|
|
}
|
2017-10-05 05:40:44 +00:00
|
|
|
|
|
|
|
void CCameraManager::DeleteCameraHint(TUniqueId id, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
if (TCastToPtr<CScriptCameraHint> hint = mgr.ObjectById(id))
|
|
|
|
{
|
|
|
|
auto search = std::find_if(x2b0_inactiveCameraHints.begin(), x2b0_inactiveCameraHints.end(),
|
|
|
|
[id](TUniqueId tid) { return tid == id; });
|
|
|
|
if (search == x2b0_inactiveCameraHints.end())
|
|
|
|
{
|
|
|
|
hint->ClearIdList();
|
|
|
|
hint->SetInactive(true);
|
|
|
|
if (x2b0_inactiveCameraHints.size() != 64)
|
|
|
|
x2b0_inactiveCameraHints.push_back(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::AddInactiveCameraHint(TUniqueId id, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
if (TCastToPtr<CScriptCameraHint> hint = mgr.ObjectById(id))
|
|
|
|
{
|
|
|
|
auto search = std::find_if(x2b0_inactiveCameraHints.begin(), x2b0_inactiveCameraHints.end(),
|
|
|
|
[id](TUniqueId tid) { return tid == id; });
|
|
|
|
if (search == x2b0_inactiveCameraHints.end() &&
|
|
|
|
x2b0_inactiveCameraHints.size() != 64)
|
|
|
|
x2b0_inactiveCameraHints.push_back(id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CCameraManager::AddActiveCameraHint(TUniqueId id, CStateManager& mgr)
|
|
|
|
{
|
|
|
|
if (TCastToPtr<CScriptCameraHint> hint = mgr.ObjectById(id))
|
|
|
|
{
|
|
|
|
auto search = std::find_if(x334_activeCameraHints.begin(), x334_activeCameraHints.end(),
|
|
|
|
[id](TUniqueId tid) { return tid == id; });
|
2017-10-06 07:29:56 +00:00
|
|
|
if (search == x334_activeCameraHints.end() && xac_cameraHints.size() != 64 &&
|
2017-10-05 05:40:44 +00:00
|
|
|
x334_activeCameraHints.size() != 64)
|
|
|
|
x334_activeCameraHints.push_back(id);
|
|
|
|
}
|
|
|
|
}
|
2017-10-06 07:29:56 +00:00
|
|
|
|
|
|
|
TUniqueId CCameraManager::GetLastCineCameraId() const
|
|
|
|
{
|
|
|
|
if (x4_cineCameras.empty())
|
|
|
|
return kInvalidUniqueId;
|
|
|
|
return x4_cineCameras.back();
|
|
|
|
}
|
|
|
|
|
|
|
|
const CCinematicCamera* CCameraManager::GetLastCineCamera(CStateManager& mgr) const
|
|
|
|
{
|
|
|
|
return static_cast<const CCinematicCamera*>(mgr.GetObjectById(GetLastCineCameraId()));
|
|
|
|
}
|
|
|
|
|
|
|
|
const CScriptCameraHint* CCameraManager::GetCameraHint(CStateManager& mgr) const
|
|
|
|
{
|
|
|
|
return TCastToConstPtr<CScriptCameraHint>(mgr.GetObjectById(xa6_camHintId)).GetPtr();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CCameraManager::HasCameraHint(CStateManager& mgr) const
|
|
|
|
{
|
|
|
|
if (xac_cameraHints.empty() || xa6_camHintId == kInvalidUniqueId)
|
|
|
|
return false;
|
|
|
|
return mgr.GetObjectById(xa6_camHintId) != nullptr;
|
|
|
|
}
|
2017-10-10 03:50:48 +00:00
|
|
|
|
|
|
|
bool CCameraManager::IsInterpolationCameraActive() const { return x88_interpCamera->GetActive(); }
|
2016-04-16 21:49:47 +00:00
|
|
|
}
|