2018-10-07 03:42:33 +00:00
|
|
|
#pragma once
|
2017-01-30 02:15:21 +00:00
|
|
|
|
|
|
|
#include "World/CEntityInfo.hpp"
|
2017-10-25 07:47:49 +00:00
|
|
|
#include "zeus/CVector3f.hpp"
|
2017-01-30 02:15:21 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
namespace urde {
|
2017-01-30 02:15:21 +00:00
|
|
|
class CStateManager;
|
2018-06-26 05:24:31 +00:00
|
|
|
class CMaterialFilter;
|
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
class CCameraSpline {
|
|
|
|
friend class CBallCamera;
|
|
|
|
std::vector<zeus::CVector3f> x4_positions;
|
|
|
|
std::vector<TUniqueId> x14_wpTracker;
|
|
|
|
std::vector<float> x24_t;
|
|
|
|
std::vector<zeus::CVector3f> x34_directions;
|
|
|
|
float x44_length = 0.f;
|
|
|
|
bool x48_closedLoop = false;
|
2020-04-06 16:46:28 +00:00
|
|
|
bool GetSurroundingPoints(size_t idx, rstl::reserved_vector<zeus::CVector3f, 4>& positions,
|
2018-12-08 05:30:43 +00:00
|
|
|
rstl::reserved_vector<zeus::CVector3f, 4>& directions) const;
|
|
|
|
|
2017-01-30 02:15:21 +00:00
|
|
|
public:
|
2020-03-25 06:40:51 +00:00
|
|
|
explicit CCameraSpline(bool closedLoop);
|
2020-03-25 06:40:00 +00:00
|
|
|
void CalculateKnots(TUniqueId cameraId, const std::vector<SConnection>& connections, CStateManager& mgr);
|
|
|
|
void Initialize(TUniqueId cameraId, const std::vector<SConnection>& connections, CStateManager& mgr);
|
2020-04-06 16:46:28 +00:00
|
|
|
void Reset(size_t size);
|
2018-12-08 05:30:43 +00:00
|
|
|
void AddKnot(const zeus::CVector3f& pos, const zeus::CVector3f& dir);
|
2020-04-06 16:46:28 +00:00
|
|
|
void SetKnotPosition(size_t idx, const zeus::CVector3f& pos);
|
|
|
|
const zeus::CVector3f& GetKnotPosition(size_t idx) const;
|
|
|
|
float GetKnotT(size_t idx) const;
|
2018-12-08 05:30:43 +00:00
|
|
|
float CalculateSplineLength();
|
|
|
|
void UpdateSplineLength() { x44_length = CalculateSplineLength(); }
|
|
|
|
zeus::CTransform GetInterpolatedSplinePointByLength(float pos) const;
|
|
|
|
zeus::CVector3f GetInterpolatedSplinePointByTime(float time, float range) const;
|
|
|
|
float FindClosestLengthOnSpline(float time, const zeus::CVector3f& p) const;
|
|
|
|
float ValidateLength(float t) const;
|
|
|
|
float ClampLength(const zeus::CVector3f& pos, bool collide, const CMaterialFilter& filter,
|
|
|
|
const CStateManager& mgr) const;
|
|
|
|
s32 GetSize() const { return x4_positions.size(); }
|
|
|
|
float GetLength() const { return x44_length; }
|
|
|
|
bool IsClosedLoop() const { return x48_closedLoop; }
|
2017-01-30 02:15:21 +00:00
|
|
|
};
|
2018-06-26 05:24:31 +00:00
|
|
|
|
2018-12-08 05:30:43 +00:00
|
|
|
} // namespace urde
|