A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
KartBurnout.hh
1#pragma once
2
3#include "game/kart/KartObjectProxy.hh"
4
5namespace Kart {
6
11public:
14
15 void start();
16 void calc();
17
19 [[nodiscard]] f32 pitch() const;
21
22private:
23 void calcRotation();
24 bool calcEnd(u32 duration);
25
26 void activate();
27 void deactivate();
28 [[nodiscard]] bool isActive() const;
29
30 u32 m_timer;
31 u16 m_phase;
32 f32 m_amplitude;
33 f32 m_pitch;
34};
35
36} // namespace Kart
Calculates the duration of burnout and rotation induced when holding acceleration too long during the...
Base class for most kart-related objects.
Pertains to kart-related functionality.