2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2019-09-28 02:53:03 +00:00
|
|
|
#include "Runtime/RetroTypes.hpp"
|
|
|
|
#include "Runtime/World/CActor.hpp"
|
|
|
|
|
|
|
|
#include <zeus/CMatrix4f.hpp>
|
|
|
|
#include <zeus/CTransform.hpp>
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2018-02-04 06:46:47 +00:00
|
|
|
struct CFinalInput;
|
2016-04-16 21:49:47 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CGameCamera : public CActor {
|
|
|
|
friend class CCameraManager;
|
2019-09-28 02:53:03 +00:00
|
|
|
friend class CStateManager;
|
2017-03-24 05:30:16 +00:00
|
|
|
|
2017-10-07 05:32:11 +00:00
|
|
|
protected:
|
2018-12-08 05:30:43 +00:00
|
|
|
TUniqueId xe8_watchedObject;
|
|
|
|
zeus::CMatrix4f xec_perspectiveMatrix;
|
|
|
|
zeus::CTransform x12c_origXf;
|
|
|
|
float x15c_currentFov;
|
|
|
|
float x160_znear;
|
|
|
|
float x164_zfar;
|
|
|
|
float x168_aspect;
|
|
|
|
u32 x16c_controllerIdx;
|
|
|
|
bool x170_24_perspDirty : 1;
|
|
|
|
bool x170_25_disablesInput : 1;
|
|
|
|
float x174_delayTime = 0.f;
|
|
|
|
float x178_perspInterpRemTime = 0.f;
|
|
|
|
float x17c_perspInterpDur = 0.f;
|
|
|
|
float x180_perspInterpStartFov;
|
|
|
|
float x184_perspInterpEndFov;
|
|
|
|
|
2016-04-16 21:49:47 +00:00
|
|
|
public:
|
2018-12-08 05:30:43 +00:00
|
|
|
CGameCamera(TUniqueId, bool active, std::string_view name, const CEntityInfo& info, const zeus::CTransform& xf,
|
|
|
|
float fov, float nearz, float farz, float aspect, TUniqueId watchedId, bool disableInput,
|
|
|
|
u32 controllerIdx);
|
2016-08-15 01:19:04 +00:00
|
|
|
|
2019-08-09 19:46:49 +00:00
|
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&) override;
|
|
|
|
void SetActive(bool active) override;
|
2018-12-08 05:30:43 +00:00
|
|
|
virtual void ProcessInput(const CFinalInput&, CStateManager& mgr) = 0;
|
|
|
|
virtual void Reset(const zeus::CTransform&, CStateManager& mgr) = 0;
|
2016-09-14 05:45:46 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
zeus::CMatrix4f GetPerspectiveMatrix() const;
|
|
|
|
zeus::CVector3f ConvertToScreenSpace(const zeus::CVector3f&) const;
|
2019-08-14 10:04:11 +00:00
|
|
|
zeus::CTransform ValidateCameraTransform(const zeus::CTransform&, const zeus::CTransform&) const;
|
2018-12-08 05:30:43 +00:00
|
|
|
float GetNearClipDistance() const { return x160_znear; }
|
|
|
|
float GetFarClipDistance() const { return x164_zfar; }
|
|
|
|
float GetAspectRatio() const { return x168_aspect; }
|
|
|
|
TUniqueId GetWatchedObject() const { return xe8_watchedObject; }
|
|
|
|
float GetFov() const { return x15c_currentFov; }
|
|
|
|
void GetControllerNumber() const;
|
|
|
|
bool DisablesInput() const;
|
|
|
|
void UpdatePerspective(float);
|
|
|
|
void SetFovInterpolation(float start, float end, float time, float delayTime);
|
|
|
|
void SkipFovInterpolation();
|
2016-09-14 05:45:46 +00:00
|
|
|
};
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|