2022-08-13 01:26:00 +00:00
|
|
|
#ifndef _CMODELDATA_HPP
|
|
|
|
#define _CMODELDATA_HPP
|
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "MetroidPrime/TGameTypes.hpp"
|
|
|
|
|
|
|
|
#include "Kyoto/Graphics/CColor.hpp"
|
|
|
|
#include "Kyoto/Math/CTransform4f.hpp"
|
2022-08-15 04:51:06 +00:00
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
2022-08-13 01:26:00 +00:00
|
|
|
#include "Kyoto/TToken.hpp"
|
|
|
|
|
|
|
|
#include "rstl/auto_ptr.hpp"
|
|
|
|
#include "rstl/optional_object.hpp"
|
|
|
|
#include "rstl/pair.hpp"
|
|
|
|
|
2022-08-15 04:51:06 +00:00
|
|
|
class CAABox;
|
2022-08-13 01:26:00 +00:00
|
|
|
class CAnimData;
|
|
|
|
class CModel;
|
|
|
|
|
2022-08-14 18:38:41 +00:00
|
|
|
// TODO move
|
|
|
|
#include "Kyoto/Math/CQuaternion.hpp"
|
|
|
|
struct SAdvancementDeltas {
|
|
|
|
CVector3f x0_posDelta;
|
|
|
|
CQuaternion xc_rotDelta;
|
|
|
|
};
|
|
|
|
CHECK_SIZEOF(SAdvancementDeltas, 0x1c)
|
|
|
|
|
2022-08-13 01:26:00 +00:00
|
|
|
class CModelData {
|
|
|
|
public:
|
2022-08-15 04:51:06 +00:00
|
|
|
// TODO these probably aren't real
|
2022-08-13 01:26:00 +00:00
|
|
|
bool IsStaticModel() const { return xc_animData.get() == nullptr && !x1c_normalModel; }
|
2022-08-15 04:51:06 +00:00
|
|
|
bool HasNormalModel() const { return x1c_normalModel; }
|
2022-08-13 01:26:00 +00:00
|
|
|
|
2022-08-15 04:51:06 +00:00
|
|
|
CModelData();
|
|
|
|
// __ct__10CModelDataFRC8CAnimRes
|
|
|
|
// __ct__10CModelDataFRC10CStaticRes
|
2022-08-13 01:26:00 +00:00
|
|
|
CModelData(const CModelData& other);
|
|
|
|
~CModelData();
|
|
|
|
|
|
|
|
SAdvancementDeltas AdvanceAnimation(float dt, CStateManager& mgr, TAreaId aid, bool advTree);
|
|
|
|
void AdvanceParticles(const CTransform4f& xf, float dt, CStateManager& mgr);
|
|
|
|
|
2022-08-15 05:50:25 +00:00
|
|
|
const CAnimData* GetAnimationData() const { return xc_animData.get(); }
|
|
|
|
CAnimData* AnimationData() { return xc_animData.get(); }
|
2022-08-15 04:51:06 +00:00
|
|
|
CAABox GetBounds(const CTransform4f& xf) const;
|
|
|
|
CAABox GetBounds() const;
|
|
|
|
|
|
|
|
bool IsNull() const { return xc_animData.get() == nullptr && !x1c_normalModel; }
|
2022-08-13 01:26:00 +00:00
|
|
|
|
|
|
|
void SetXRayModel(const rstl::pair< CAssetId, CAssetId >& assets);
|
|
|
|
void SetInfraModel(const rstl::pair< CAssetId, CAssetId >& assets);
|
|
|
|
void SetAmbientColor(const CColor& color) { x18_ambientColor = color; }
|
|
|
|
void SetSortThermal(bool b) { x14_25_sortThermal = b; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
CVector3f x0_scale;
|
|
|
|
rstl::auto_ptr< CAnimData > xc_animData;
|
|
|
|
bool x14_24_renderSorted : 1;
|
|
|
|
bool x14_25_sortThermal : 1;
|
|
|
|
CColor x18_ambientColor;
|
|
|
|
rstl::optional_object< TCachedToken< CModel > > x1c_normalModel;
|
|
|
|
rstl::optional_object< TCachedToken< CModel > > x2c_xrayModel;
|
|
|
|
rstl::optional_object< TCachedToken< CModel > > x3c_infraModel;
|
|
|
|
};
|
|
|
|
|
2022-08-15 05:50:25 +00:00
|
|
|
#endif
|