A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
AnmObj.hh
1#pragma once
2
3#include <Common.hh>
4
5// Credit: kiwi515/ogws
6
7namespace Abstract {
8namespace g3d {
9
10enum class AnmPolicy : u32 {
11 OneTime = 0,
12 Loop = 1,
13 Max = 2,
14};
15
16[[nodiscard]] f32 PlayPolicy_Onetime(f32 start, f32 end, f32 frame);
17[[nodiscard]] f32 PlayPolicy_Loop(f32 start, f32 end, f32 frame);
18
19typedef f32 (*PlayPolicyFunc)(f32 start, f32 end, f32 frame);
20
21[[nodiscard]] inline PlayPolicyFunc GetAnmPlayPolicy(AnmPolicy policy) {
22 constexpr size_t count = static_cast<size_t>(AnmPolicy::Max);
23 static constexpr PlayPolicyFunc POLICY_TABLE[count] = {
24 PlayPolicy_Onetime,
25 PlayPolicy_Loop,
26 };
27
28 size_t idx = static_cast<size_t>(policy);
29 ASSERT(idx < count);
30 return POLICY_TABLE[idx];
31}
32
33class FrameCtrl {
34public:
35 FrameCtrl(f32 start, f32 end, PlayPolicyFunc policy)
36 : m_frame(0.0f), m_updateRate(1.0f), m_startFrame(start), m_endFrame(end),
37 m_playPolicy(policy) {
38 ASSERT(m_playPolicy);
39 }
40
41 void updateFrame() {
42 setFrame(m_updateRate * s_baseUpdateRate + m_frame);
43 }
44
46 [[nodiscard]] f32 frame() const {
47 return m_frame;
48 }
49
50 [[nodiscard]] f32 rate() const {
51 return m_updateRate;
52 }
53
54 [[nodiscard]] PlayPolicyFunc playPolicy() const {
55 return m_playPolicy;
56 }
58
60 void setFrame(f32 frame) {
61 m_frame = m_playPolicy(m_startFrame, m_endFrame, frame);
62 }
63
64 void setRate(f32 rate) {
65 m_updateRate = rate;
66 }
67
68 void setPlayPolicy(PlayPolicyFunc func) {
69 ASSERT(func);
70 m_playPolicy = func;
71 }
73
74private:
75 f32 m_frame;
76 f32 m_updateRate;
77 f32 m_startFrame;
78 f32 m_endFrame;
79 PlayPolicyFunc m_playPolicy;
80
81 static f32 s_baseUpdateRate;
82};
83
84} // namespace g3d
85} // namespace Abstract
This header houses common data types such as our integral types and enums.
An abstraction of components from the nw4r and RVL libraries.
Definition Archive.cc:5