prime/include/MetroidPrime/Player/CGrappleArm.hpp

36 lines
996 B
C++
Raw Normal View History

#ifndef _CGRAPPLEARM_HPP_
#define _CGRAPPLEARM_HPP_
#include "types.h"
class CVector3f;
class CGrappleArm {
public:
CGrappleArm(const CVector3f& scale);
2022-10-06 11:06:55 +00:00
~CGrappleArm();
void PreRender(CStateManager& mgr, const CFrustumPlanes& frustum, const CVector3f& camPos);
2022-10-06 20:34:27 +00:00
void ReturnToDefault(CStateManager& mgr, float dt, bool setState);
2022-10-06 20:34:27 +00:00
// EArmState GetAnimState() const { return x334_animState; }
bool GetActive() const { return x3b2_24_active; }
2022-10-06 20:34:27 +00:00
bool BeamActive() const { return x3b2_25_beamActive; }
bool IsArmMoving() const { return x3b2_27_armMoving; }
bool IsGrappling() const { return x3b2_28_isGrappling; }
bool IsSuitLoading() const { return x3b2_29_suitLoading; }
private:
u8 x0_pad[0x3b0];
s16 x3b0_rumbleHandle;
bool x3b2_24_active : 1;
bool x3b2_25_beamActive : 1;
bool x3b2_26_grappleHit : 1;
bool x3b2_27_armMoving : 1;
bool x3b2_28_isGrappling : 1;
bool x3b2_29_suitLoading : 1;
};
CHECK_SIZEOF(CGrappleArm, 0x3b4)
#endif // _CGRAPPLEARM_HPP_