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

#include <KPadController.hh>

Description

The abstraction of a controller object but for external usage.

The input state is managed externally by programs interfacing with Kinoko.

Definition at line 241 of file KPadController.hh.

Inheritance diagram for System::KPadHostController:

Public Member Functions

ControlSource controlSource () const override
 
void reset (bool driftIsAuto) override
 
bool setInputs (const RaceInputState &state)
 Sets the inputs of the controller.
 
bool setInputs (u16 buttons, const EGG::Vector2f &stick, Trick trick)
 Sets the inputs of the controller.
 
bool setInputs (u16 buttons, f32 stickX, f32 stickY, Trick trick)
 Sets the inputs of the controller.
 
bool setInputsRawStick (u16 buttons, u8 stickXRaw, u8 stickYRaw, Trick trick)
 Sets the inputs of the controller.
 
bool setInputsRawStickZeroCenter (u16 buttons, s8 stickXRaw, s8 stickYRaw, Trick trick)
 Sets the inputs of the controller.
 
- Public Member Functions inherited from System::KPadController
virtual void calcImpl ()
 
void calc ()
 
const RaceInputStateraceInputState () const
 
void setDriftIsAuto (bool driftIsAuto)
 
bool driftIsAuto () const
 

Additional Inherited Members

- Protected Attributes inherited from System::KPadController
RaceInputState m_raceInputState
 The current inputs from this controller.
 
bool m_connected
 Whether the controller is active.
 
bool m_driftIsAuto
 True for auto transmission, false for manual.
 

Member Function Documentation

◆ controlSource()

ControlSource System::KPadHostController::controlSource ( ) const
inlinenodiscardoverridevirtual

Reimplemented from System::KPadController.

Definition at line 246 of file KPadController.hh.

◆ reset()

void System::KPadHostController::reset ( bool driftIsAuto)
overridevirtual

Reimplemented from System::KPadController.

Definition at line 218 of file KPadController.cc.

◆ setInputs() [1/3]

bool System::KPadHostController::setInputs ( const RaceInputState & state)
inline

Sets the inputs of the controller.

Parameters
stateThe specified inputs packaged in the state. Only buttons, stick, and trick matter.
Returns
Input state validity.

Definition at line 256 of file KPadController.hh.

◆ setInputs() [2/3]

bool System::KPadHostController::setInputs ( u16 buttons,
const EGG::Vector2f & stick,
Trick trick )
inline

Sets the inputs of the controller.

Parameters
buttonsThe button inputs.
stickThe stick inputs, as a 2D vector.
trickThe trick input.
Returns
Input state validity.

Definition at line 265 of file KPadController.hh.

◆ setInputs() [3/3]

bool System::KPadHostController::setInputs ( u16 buttons,
f32 stickX,
f32 stickY,
Trick trick )
inline

Sets the inputs of the controller.

Parameters
buttonsThe button inputs.
stickXThe stick input on the X axis.
stickYThe stick input on the Y axis.
trickThe trick input.
Returns
Input state validity.

Definition at line 279 of file KPadController.hh.

◆ setInputsRawStick()

bool System::KPadHostController::setInputsRawStick ( u16 buttons,
u8 stickXRaw,
u8 stickYRaw,
Trick trick )
inline

Sets the inputs of the controller.

A different name is specified to avoid any ambiguity with the parameters.

Parameters
buttonsThe button inputs.
stickXRawThe 7-centered raw stick input on the X axis.
stickYRawThe 7-centered raw stick input on the Y axis.
trickThe trick input.
Returns
Input state validity.

Definition at line 295 of file KPadController.hh.

◆ setInputsRawStickZeroCenter()

bool System::KPadHostController::setInputsRawStickZeroCenter ( u16 buttons,
s8 stickXRaw,
s8 stickYRaw,
Trick trick )
inline

Sets the inputs of the controller.

A different name is specified to avoid any ambiguity with the parameters.

Parameters
buttonsThe button inputs.
stickXRawThe 0-centered raw stick input on the X axis.
stickYRawThe 0-centered raw stick input on the Y axis.
trickThe trick input.
Returns
Input state validity.

Definition at line 306 of file KPadController.hh.