metaforce/Runtime/Character/CBoneTracking.hpp

60 lines
1.7 KiB
C++
Raw Normal View History

2018-11-17 14:49:32 -08:00
#pragma once
#include "Character/CSegId.hpp"
#include "zeus/CTransform.hpp"
#include "zeus/CQuaternion.hpp"
#include "zeus/CVector3f.hpp"
#include "RetroTypes.hpp"
2018-12-07 21:30:43 -08:00
namespace urde {
2018-11-17 14:49:32 -08:00
class CAnimData;
class CStateManager;
class CBodyController;
2019-04-02 21:32:31 -07:00
enum class EBoneTrackingFlags {
None = 0,
NoParent = 1,
NoParentOrigin = 2,
NoHorizontalAim = 4,
ParentIk = 8
};
ENABLE_BITWISE_ENUM(EBoneTrackingFlags)
2018-12-07 21:30:43 -08:00
class CBoneTracking {
zeus::CQuaternion x0_curRotation = zeus::CQuaternion();
2018-12-12 23:39:16 -08:00
float x10_ = 0.f;
2018-12-07 21:30:43 -08:00
CSegId x14_segId;
float x18_time = 0.f;
2018-12-12 23:39:16 -08:00
float x1c_maxTrackingAngle;
float x20_angSpeed;
2019-01-29 00:28:35 -08:00
rstl::optional<zeus::CVector3f> x24_targetPosition;
2018-12-07 21:30:43 -08:00
TUniqueId x34_target = kInvalidUniqueId;
2018-12-12 23:39:16 -08:00
union {
struct {
bool x36_24_active : 1;
bool x36_25_hasTrackedRotation : 1;
bool x36_26_noParent : 1;
bool x36_27_noParentOrigin : 1;
bool x36_28_noHorizontalAim : 1;
bool x36_29_parentIk : 1;
};
u32 _dummy = 0;
};
2018-12-07 21:30:43 -08:00
2018-11-17 14:49:32 -08:00
public:
2018-12-12 23:39:16 -08:00
CBoneTracking(const CAnimData& animData, std::string_view bone,
2019-04-02 21:32:31 -07:00
float maxTrackingAngle, float angSpeed, EBoneTrackingFlags flags);
2018-12-07 21:30:43 -08:00
void Update(float dt);
2018-12-12 23:39:16 -08:00
void PreRender(const CStateManager& mgr, CAnimData& animData, const zeus::CTransform& xf,
const zeus::CVector3f& vec, const CBodyController& bodyController);
void PreRender(const CStateManager& mgr, CAnimData& animData, const zeus::CTransform& worldXf,
const zeus::CVector3f& localOffsetScale, bool tracking);
void SetActive(bool b);
void SetTarget(TUniqueId id);
void UnsetTarget();
void SetTargetPosition(const zeus::CVector3f& pos);
void SetNoHorizontalAim(bool b);
2018-11-17 14:49:32 -08:00
};
2019-05-14 15:30:15 -07:00
2018-12-07 21:30:43 -08:00
} // namespace urde