mirror of https://github.com/AxioDL/metaforce.git
73 lines
2.3 KiB
C++
73 lines
2.3 KiB
C++
#ifndef __URDE_CSKINNEDMODEL_HPP__
|
|
#define __URDE_CSKINNEDMODEL_HPP__
|
|
|
|
#include "CToken.hpp"
|
|
#include "CModel.hpp"
|
|
#include "optional.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
class CModel;
|
|
class CSkinRules;
|
|
class CCharLayoutInfo;
|
|
class CPoseAsTransforms;
|
|
class CVertexMorphEffect;
|
|
class IObjectStore;
|
|
|
|
class CSkinnedModel
|
|
{
|
|
friend class CBooModel;
|
|
std::unique_ptr<CBooModel> m_modelInst;
|
|
TLockedToken<CModel> x4_model;
|
|
TLockedToken<CSkinRules> x10_skinRules;
|
|
TLockedToken<CCharLayoutInfo> x1c_layoutInfo;
|
|
std::vector<std::pair<zeus::CVector3f, zeus::CVector3f>> m_vertWorkspace;
|
|
public:
|
|
enum class EDataOwnership
|
|
{
|
|
Zero,
|
|
One
|
|
};
|
|
CSkinnedModel(TLockedToken<CModel> model,
|
|
TLockedToken<CSkinRules> skinRules,
|
|
TLockedToken<CCharLayoutInfo> layoutInfo,
|
|
int shaderIdx, int drawInsts);
|
|
CSkinnedModel(IObjectStore& store, CAssetId model, CAssetId skinRules,
|
|
CAssetId layoutInfo, int shaderIdx, int drawInsts);
|
|
|
|
const TLockedToken<CModel>& GetModel() const {return x4_model;}
|
|
const std::unique_ptr<CBooModel>& GetModelInst() const {return m_modelInst;}
|
|
const TLockedToken<CSkinRules>& GetSkinRules() const {return x10_skinRules;}
|
|
const TLockedToken<CCharLayoutInfo>& GetLayoutInfo() const {return x1c_layoutInfo;}
|
|
|
|
void Calculate(const CPoseAsTransforms& pose,
|
|
const CModelFlags& drawFlags,
|
|
const std::experimental::optional<CVertexMorphEffect>& morphEffect,
|
|
const float* morphMagnitudes);
|
|
void Draw(const CModelFlags& drawFlags) const;
|
|
|
|
typedef void(*FPointGenerator)(void* item, const std::vector<std::pair<zeus::CVector3f, zeus::CVector3f>>& vn);
|
|
static void SetPointGeneratorFunc(void* ctx, FPointGenerator func)
|
|
{
|
|
g_PointGenFunc = func;
|
|
g_PointGenCtx = ctx;
|
|
}
|
|
static void ClearPointGeneratorFunc()
|
|
{
|
|
g_PointGenFunc = nullptr;
|
|
}
|
|
static FPointGenerator g_PointGenFunc;
|
|
static void* g_PointGenCtx;
|
|
};
|
|
|
|
class CMorphableSkinnedModel : public CSkinnedModel
|
|
{
|
|
public:
|
|
CMorphableSkinnedModel(IObjectStore& store, CAssetId model, CAssetId skinRules,
|
|
CAssetId layoutInfo, int shaderIdx, int drawInsts);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CSKINNEDMODEL_HPP__
|