A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Kart::KartBoost Class Reference

#include <KartBoost.hh>

Description

State management for boosts (start boost, mushrooms, mini-turbos)

Definition at line 9 of file KartBoost.hh.

Public Types

enum class  Type {
  AllMt ,
  MushroomAndBoostPanel ,
  TrickAndZipper ,
  Max
}
 

Public Member Functions

bool activate (Type type, s16 frames)
 Starts/restarts a boost of the given type.
 
bool calc ()
 Computes the current frame's boost multiplier, acceleration, and speed limit.
 
void reset ()
 
void resetActive ()
 

Getters

f32 multiplier () const
 
f32 acceleration () const
 
f32 speedLimit () const
 

Private Attributes

std::array< s16, BOOST_TYPE_COUNT > m_timers
 Durations for the different boost types.
 
std::array< bool, BOOST_TYPE_COUNT > m_active
 Whether the different boost types are active.
 
f32 m_multiplier
 Multiplier applied to vehicle speed.
 
f32 m_acceleration
 
f32 m_speedLimit
 

Static Private Attributes

static constexpr size_t BOOST_TYPE_COUNT = static_cast<size_t>(Type::Max)
 

Member Enumeration Documentation

◆ Type

enum class Kart::KartBoost::Type
strong

Definition at line 11 of file KartBoost.hh.

Constructor & Destructor Documentation

◆ KartBoost()

Kart::KartBoost::KartBoost ( )
0x80588D28

Definition at line 6 of file KartBoost.cc.

Member Function Documentation

◆ acceleration()

f32 Kart::KartBoost::acceleration ( ) const
inlinenodiscard

Definition at line 35 of file KartBoost.hh.

◆ activate()

bool Kart::KartBoost::activate ( Type type,
s16 frames )
nodiscard0x80588DB0

Starts/restarts a boost of the given type.

Stage: 2
Parameters
typeThe type of boost (e.g. mini-turbo)
framesThe duration of the boost
Returns
whether the boost was activated

Definition at line 21 of file KartBoost.cc.

◆ calc()

bool Kart::KartBoost::calc ( )
nodiscard0x80588E24

Computes the current frame's boost multiplier, acceleration, and speed limit.

Stage: 2
Returns
whether a boost is active

Definition at line 38 of file KartBoost.cc.

◆ multiplier()

f32 Kart::KartBoost::multiplier ( ) const
inlinenodiscard

Definition at line 31 of file KartBoost.hh.

◆ reset()

void Kart::KartBoost::reset ( )
0x80588D74

Definition at line 79 of file KartBoost.cc.

◆ resetActive()

void Kart::KartBoost::resetActive ( )
inline0x80588E18

Definition at line 26 of file KartBoost.hh.

◆ speedLimit()

f32 Kart::KartBoost::speedLimit ( ) const
inlinenodiscard

Definition at line 39 of file KartBoost.hh.

Member Data Documentation

◆ BOOST_TYPE_COUNT

size_t Kart::KartBoost::BOOST_TYPE_COUNT = static_cast<size_t>(Type::Max)
staticconstexprprivate

Definition at line 46 of file KartBoost.hh.

◆ m_acceleration

f32 Kart::KartBoost::m_acceleration
private

Definition at line 51 of file KartBoost.hh.

◆ m_active

std::array<bool, BOOST_TYPE_COUNT> Kart::KartBoost::m_active
private

Whether the different boost types are active.

Definition at line 49 of file KartBoost.hh.

◆ m_multiplier

f32 Kart::KartBoost::m_multiplier
private

Multiplier applied to vehicle speed.

Definition at line 50 of file KartBoost.hh.

◆ m_speedLimit

f32 Kart::KartBoost::m_speedLimit
private

Definition at line 52 of file KartBoost.hh.

◆ m_timers

std::array<s16, BOOST_TYPE_COUNT> Kart::KartBoost::m_timers
private

Durations for the different boost types.

Definition at line 48 of file KartBoost.hh.