2022-08-13 02:48:34 +00:00
|
|
|
#ifndef _CGAMECAMERA_HPP
|
|
|
|
#define _CGAMECAMERA_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "MetroidPrime/CActor.hpp"
|
|
|
|
|
|
|
|
#include "Kyoto/Math/CMatrix4f.hpp"
|
2022-08-16 21:47:16 +00:00
|
|
|
#include "Kyoto/Math/CTransform4f.hpp"
|
2022-08-13 02:48:34 +00:00
|
|
|
|
2022-09-21 05:18:07 +00:00
|
|
|
class CFinalInput;
|
|
|
|
|
2022-08-13 02:48:34 +00:00
|
|
|
class CGameCamera : public CActor {
|
2022-08-16 21:47:16 +00:00
|
|
|
public:
|
2022-09-21 05:18:07 +00:00
|
|
|
CGameCamera(TUniqueId uid, bool active, const rstl::string& name, const CEntityInfo& info,
|
|
|
|
const CTransform4f& xf, float fov, float nearZ, float farZ, float aspect,
|
|
|
|
TUniqueId watchedId, bool disableInput, int controllerIdx);
|
|
|
|
|
|
|
|
// CEntity
|
2022-08-16 21:47:16 +00:00
|
|
|
~CGameCamera() override;
|
|
|
|
void Accept(IVisitor& visitor) override;
|
2022-09-21 05:18:07 +00:00
|
|
|
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId uid, CStateManager& mgr) override;
|
|
|
|
void SetActive(bool active) override;
|
|
|
|
|
|
|
|
// CGameCamera
|
|
|
|
virtual void ProcessInput(const CFinalInput&, CStateManager& mgr) = 0;
|
|
|
|
virtual void Reset(const CTransform4f&, CStateManager& mgr) = 0;
|
|
|
|
|
2022-09-29 05:30:20 +00:00
|
|
|
TUniqueId GetWatchedObject() const { return xe8_watchedObject; }
|
2022-09-21 05:18:07 +00:00
|
|
|
f32 GetFov() const { return x15c_currentFov; }
|
|
|
|
void SetFov(f32 fov) { x15c_currentFov = fov; }
|
|
|
|
void SetFovInterpolation(f32 start, f32 fov, f32 time, f32 delayTime);
|
2022-08-16 21:47:16 +00:00
|
|
|
|
2022-08-13 02:48:34 +00:00
|
|
|
private:
|
|
|
|
TUniqueId xe8_watchedObject;
|
|
|
|
mutable CMatrix4f xec_perspectiveMatrix;
|
|
|
|
CTransform4f x12c_origXf;
|
|
|
|
f32 x15c_currentFov;
|
|
|
|
f32 x160_znear;
|
|
|
|
f32 x164_zfar;
|
|
|
|
f32 x168_aspect;
|
2022-09-05 04:01:13 +00:00
|
|
|
uint x16c_controllerIdx;
|
2022-08-13 02:48:34 +00:00
|
|
|
mutable bool x170_24_perspDirty : 1;
|
|
|
|
bool x170_25_disablesInput : 1;
|
|
|
|
f32 x174_delayTime;
|
|
|
|
f32 x178_perspInterpRemTime;
|
|
|
|
f32 x17c_perspInterpDur;
|
|
|
|
f32 x180_perspInterpStartFov;
|
|
|
|
f32 x184_perspInterpEndFov;
|
|
|
|
};
|
|
|
|
CHECK_SIZEOF(CGameCamera, 0x188)
|
|
|
|
|
2022-09-18 06:05:46 +00:00
|
|
|
#endif
|