18 ChangingDirection = 2,
24 virtual void init(f32 t, u32 idx) = 0;
25 virtual Status calc() = 0;
26 virtual void setCurrVel(f32 speed) = 0;
28 virtual f32 getCurrVel() = 0;
29 virtual void evalCubicBezierOnPath(f32 t,
EGG::Vector3f &currDir,
31 virtual void getPathLocation(f32 t, s16 &idx, f32 &len) = 0;
38 [[nodiscard]]
const EGG::Vector3f &floorNrm(
size_t idx)
const;
39 [[nodiscard]] f32 railLength()
const;
42 ASSERT(
static_cast<size_t>(m_currPointIdx) < m_points.size());
43 return m_points[m_currPointIdx];
51 return m_curTangentDir;
54 [[nodiscard]]
bool isMovementDirectionForward()
const {
55 return m_movementDirectionForward;
60 void calcVelocities();
61 [[nodiscard]]
bool shouldChangeDirection()
const;
62 void calcDirectionChange();
63 void calcNextIndices();
67 std::span<System::MapdataPointInfo::Point> m_points;
70 bool m_usePerPointVelocities;
78 bool m_movementDirectionForward;
89 void init(f32 t, u32 idx)
override;
90 Status calc()
override;
91 void setCurrVel(f32 speed)
override;
94 [[nodiscard]] f32 getCurrVel()
override {
100 void getPathLocation(f32 t, s16 &idx, f32 &len)
override;
103 void calcNextSegment();
107 std::span<RailLineTransition> m_transitions;
115 void init(f32 t, u32 idx)
override;
116 Status calc()
override;
117 void setCurrVel(f32 speed)
override;
120 [[nodiscard]] f32 getCurrVel()
override {
126 void getPathLocation(f32 t, s16 &idx, f32 &len)
override;
129 void calcCubicBezier(f32 t, u32 currIdx, u32 nextIdx,
EGG::Vector3f &pos,
134 [[nodiscard]] f32 calcT(f32 t)
const;
135 void calcNextSegment();
137 std::span<RailSplineTransition> m_transitions;
138 u32 m_estimatorSampleCount;
140 std::span<f32> m_pathPercentages;