Definition at line 25 of file KartAction.hh.
Classes | |
struct | ActionParams |
Parameters specific to an action ID. More... | |
struct | RotationParams |
Public Types | |
enum class | eFlags { Rotating = 3 } |
typedef EGG::TBitFlag< u32, eFlags > | Flags |
Public Member Functions | |
void | init () |
void | calc () |
void | calcVehicleSpeed () |
bool | start (Action action) |
Starts an action. | |
void | startRotation (size_t idx) |
Initializes rotation parameters. | |
void | setHitDepth (const EGG::Vector3f &hitDepth) |
const Flags & | flags () const |
Private Types | |
typedef void(KartAction::*) | StartActionFunc() |
typedef bool(KartAction::*) | CalcActionFunc() |
typedef void(KartAction::*) | EndActionFunc(bool arg) |
Private Member Functions | |
void | end () |
bool | calcCurrentAction () |
Executes a frame of the current action. | |
void | calcEndAction (bool endArg) |
bool | calcRotation () |
void | calcUp () |
void | applyStartSpeed () |
void | setRotation (size_t idx) |
void | startStub () |
void | startAction1 () |
bool | calcStub () |
bool | calcAction1 () |
void | endStub (bool arg) |
void | endAction1 (bool arg) |
![]() | |
void | setPos (const EGG::Vector3f &pos) |
void | setRot (const EGG::Quatf &q) |
void | setInertiaScale (const EGG::Vector3f &scale) |
KartAction * | action () |
const KartAction * | action () const |
KartBody * | body () |
const KartBody * | body () const |
KartCollide * | collide () |
const KartCollide * | collide () const |
CollisionGroup * | collisionGroup () |
const CollisionGroup * | collisionGroup () const |
KartMove * | move () |
const KartMove * | move () const |
KartHalfPipe * | halfPipe () |
const KartHalfPipe * | halfPipe () const |
KartJump * | jump () |
const KartJump * | jump () const |
KartParam * | param () |
const KartParam * | param () const |
const BSP & | bsp () const |
KartPhysics * | physics () |
const KartPhysics * | physics () const |
KartDynamics * | dynamics () |
const KartDynamics * | dynamics () const |
KartState * | state () |
const KartState * | state () const |
KartSub * | sub () |
const KartSub * | sub () const |
KartSuspension * | suspension (u16 suspIdx) |
const KartSuspension * | suspension (u16 suspIdx) const |
KartSuspensionPhysics * | suspensionPhysics (u16 suspIdx) |
const KartSuspensionPhysics * | suspensionPhysics (u16 suspIdx) const |
KartTire * | tire (u16 tireIdx) |
const KartTire * | tire (u16 tireIdx) const |
WheelPhysics * | tirePhysics (u16 tireIdx) |
const WheelPhysics * | tirePhysics (u16 tireIdx) const |
CollisionData & | collisionData () |
const CollisionData & | collisionData () const |
CollisionData & | collisionData (u16 tireIdx) |
const CollisionData & | collisionData (u16 tireIdx) const |
const System::KPad * | inputs () const |
Render::KartModel * | model () |
const Render::KartModel * | model () const |
Field::ObjectCollisionKart * | objectCollisionKart () |
const Field::ObjectCollisionKart * | objectCollisionKart () const |
Field::BoxColUnit * | boxColUnit () |
const Field::BoxColUnit * | boxColUnit () const |
const EGG::Vector3f & | scale () const |
const EGG::Matrix34f & | pose () const |
EGG::Vector3f | bodyFront () const |
Returns the third column of the rotation matrix, which is the facing vector. | |
EGG::Vector3f | bodyForward () const |
Returns the first column of the rotation matrix, which is the "right" direction. | |
EGG::Vector3f | bodyUp () const |
Returns the second column of the rotation matrix, which is the "up" direction. | |
const EGG::Vector3f & | componentXAxis () const |
const EGG::Vector3f & | componentYAxis () const |
const EGG::Vector3f & | componentZAxis () const |
const EGG::Vector3f & | pos () const |
const EGG::Vector3f & | prevPos () const |
const EGG::Quatf & | fullRot () const |
const EGG::Vector3f & | extVel () const |
const EGG::Vector3f & | intVel () const |
const EGG::Vector3f & | velocity () const |
f32 | speed () const |
f32 | acceleration () const |
f32 | softSpeedLimit () const |
const EGG::Quatf & | mainRot () const |
const EGG::Vector3f & | angVel2 () const |
bool | isBike () const |
u16 | suspCount () const |
u16 | tireCount () const |
bool | hasFloorCollision (const WheelPhysics *wheelPhysics) const |
std::pair< EGG::Vector3f, EGG::Vector3f > | getCannonPosRot () |
f32 | speedRatio () const |
f32 | speedRatioCapped () const |
bool | isInRespawn () const |
void | apply (size_t idx) |
Private Attributes | |
Action | m_currentAction |
f32 | m_rotationDirection |
EGG::Vector3f | m_hitDepth |
StartActionFunc | m_onStart |
CalcActionFunc | m_onCalc |
EndActionFunc | m_onEnd |
EGG::Quatf | m_rotation |
const ActionParams * | m_actionParams |
u32 | m_frame |
Flags | m_flags |
f32 | m_currentAngle |
f32 | m_angleIncrement |
f32 | m_multiplier |
f32 | m_multiplierDecrement |
f32 | m_finalAngle |
const RotationParams * | m_rotationParams |
EGG::Vector3f | m_up |
s16 | m_priority |
Static Private Attributes | |
static constexpr size_t | MAX_ACTION = static_cast<size_t>(Action::Max) |
static const std::array< ActionParams, MAX_ACTION > | s_actionParams |
static const std::array< RotationParams, 5 > | s_rotationParams |
static const std::array< StartActionFunc, MAX_ACTION > | s_onStart |
static const std::array< CalcActionFunc, MAX_ACTION > | s_onCalc |
static const std::array< EndActionFunc, MAX_ACTION > | s_onEnd |
Additional Inherited Members | |
![]() | |
static std::list< KartObjectProxy * > & | proxyList () |
|
private |
Definition at line 64 of file KartAction.hh.
|
private |
Definition at line 65 of file KartAction.hh.
EGG::TBitFlag<u32, eFlags> Kart::KartAction::Flags |
Definition at line 30 of file KartAction.hh.
|
private |
Definition at line 63 of file KartAction.hh.
|
strong |
Definition at line 27 of file KartAction.hh.
|
0x805672CC |
Definition at line 12 of file KartAction.cc.
|
private0x80567C68 |
Definition at line 168 of file KartAction.cc.
|
0x805673B0 |
Definition at line 27 of file KartAction.cc.
|
private0x80568204 |
Definition at line 207 of file KartAction.cc.
|
private0x80567A54 |
Executes a frame of the current action.
Definition at line 116 of file KartAction.cc.
|
private0x80567A88 |
Definition at line 122 of file KartAction.cc.
|
private0x80569DFC |
Definition at line 134 of file KartAction.cc.
|
private |
Definition at line 202 of file KartAction.cc.
|
private0x80569E9C |
Definition at line 162 of file KartAction.cc.
|
0x80567CE4 |
Definition at line 38 of file KartAction.cc.
|
private0x80567B98 |
Definition at line 104 of file KartAction.cc.
|
private0x8056837C |
Definition at line 223 of file KartAction.cc.
|
private |
Definition at line 220 of file KartAction.cc.
const KartAction::Flags & Kart::KartAction::flags | ( | ) | const |
Definition at line 99 of file KartAction.cc.
|
0x8056739C |
Definition at line 21 of file KartAction.cc.
void Kart::KartAction::setHitDepth | ( | const EGG::Vector3f & | hitDepth | ) |
Definition at line 95 of file KartAction.cc.
|
private0x80569DB4 |
Definition at line 176 of file KartAction.cc.
|
0x805675DC |
Starts an action.
action | The action to start. |
Definition at line 46 of file KartAction.cc.
|
private0x80567FB4 |
Definition at line 194 of file KartAction.cc.
|
0x80567D3C |
Initializes rotation parameters.
idx | The index for the rotation parameters. |
Definition at line 82 of file KartAction.cc.
|
private |
Definition at line 191 of file KartAction.cc.
|
private |
Definition at line 107 of file KartAction.hh.
|
private |
Definition at line 111 of file KartAction.hh.
|
private |
Definition at line 98 of file KartAction.hh.
|
private |
Definition at line 110 of file KartAction.hh.
|
private |
Definition at line 114 of file KartAction.hh.
|
private |
Definition at line 109 of file KartAction.hh.
|
private |
Definition at line 108 of file KartAction.hh.
|
private |
Definition at line 100 of file KartAction.hh.
|
private |
Definition at line 112 of file KartAction.hh.
|
private |
Definition at line 113 of file KartAction.hh.
|
private |
Definition at line 103 of file KartAction.hh.
|
private |
Definition at line 104 of file KartAction.hh.
|
private |
Definition at line 102 of file KartAction.hh.
|
private |
Definition at line 117 of file KartAction.hh.
|
private |
Definition at line 106 of file KartAction.hh.
|
private |
Definition at line 99 of file KartAction.hh.
|
private |
Definition at line 115 of file KartAction.hh.
|
private |
Definition at line 116 of file KartAction.hh.
|
staticconstexprprivate |
Definition at line 119 of file KartAction.hh.
|
staticprivate |
Definition at line 121 of file KartAction.hh.
|
staticprivate |
Definition at line 125 of file KartAction.hh.
|
staticprivate |
Definition at line 126 of file KartAction.hh.
|
staticprivate |
Definition at line 124 of file KartAction.hh.
|
staticprivate |
Definition at line 122 of file KartAction.hh.