prime/include/MetroidPrime/BodyState/CBodyController.hpp

74 lines
2.5 KiB
C++

#ifndef _CBODYCONTROLLER
#define _CBODYCONTROLLER
#include "MetroidPrime/BodyState/CBodyStateCmdMgr.hpp"
#include "MetroidPrime/BodyState/CBodyStateInfo.hpp"
#include "Kyoto/Math/CQuaternion.hpp"
class CActor;
class CPASDatabase;
class CQuaternion;
class CAnimPlaybackParms;
class CPASAnimParmData;
class CRandom16;
class CBodyController {
public:
CActor& GetOwner() const { return x0_actor; }
CBodyStateCmdMgr& CommandMgr() { return x4_cmdMgr; }
const CBodyStateCmdMgr& GetCommandMgr() const { return x4_cmdMgr; }
const CPASDatabase& GetPASDatabase() const;
float GetAnimTimeRemaining() const;
void SetDeltaRotation(const CQuaternion& q);
void SetCurrentAnimation(const CAnimPlaybackParms& parms, bool loop, bool noTrans);
void FaceDirection(const CVector3f& v0, float dt);
void EnableAnimation(bool enable);
void PlayBestAnimation(const CPASAnimParmData& parms, CRandom16& r);
void LoopBestAnimation(const CPASAnimParmData& parms, CRandom16& r);
bool HasIceBreakoutState();
void Activate(CStateManager& mgr);
void SetLocomotionType(pas::ELocomotionType type);
float GetPercentageFrozen() const;
void SetFallState(pas::EFallState state); // { x2f0_fallState = state; }
pas::EFallState GetFallState() const; // { return x2f0_fallState; }
const CBodyStateInfo& GetBodyStateInfo() const { return x2a4_bodyStateInfo; }
int GetCurrentAnimId() const { return x2f8_curAnim; }
pas::ELocomotionType GetLocomotionType() const { return x2ec_locomotionType; }
bool IsAnimationOver() const { return x300_24_animationOver; }
bool ShouldPlayDeathAnims() const { return x300_28_playDeathAnims; }
float GetRestrictedFlyerMoveSpeed() const { return x330_restrictedFlyerMoveSpeed; }
void SetRestrictedFlyerMoveSpeed(float speed) { x330_restrictedFlyerMoveSpeed = speed; }
private:
CActor& x0_actor;
CBodyStateCmdMgr x4_cmdMgr;
CBodyStateInfo x2a4_bodyStateInfo;
CQuaternion x2dc_rot;
pas::ELocomotionType x2ec_locomotionType;
pas::EFallState x2f0_fallState;
EBodyType x2f4_bodyType;
int x2f8_curAnim;
float x2fc_turnSpeed;
bool x300_24_animationOver : 1;
bool x300_25_active : 1;
bool x300_26_frozen : 1;
bool x300_27_hasBeenFrozen : 1;
bool x300_28_playDeathAnims : 1;
float x304_intoFreezeDur;
float x308_frozenDur;
float x30c_breakoutDur;
float x310_timeFrozen;
CVector3f x314_backedUpForce;
float x320_fireDur;
float x324_electrocutionDur;
float x328_timeOnFire;
float x32c_timeElectrocuting;
float x330_restrictedFlyerMoveSpeed;
};
CHECK_SIZEOF(CBodyController, 0x334)
#endif // _CBODYCONTROLLER