mirror of https://github.com/AxioDL/metaforce.git
68 lines
2.1 KiB
C++
68 lines
2.1 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;
|
|
public:
|
|
enum class EDataOwnership
|
|
{
|
|
Zero,
|
|
One
|
|
};
|
|
CSkinnedModel(TLockedToken<CModel> model,
|
|
TLockedToken<CSkinRules> skinRules,
|
|
TLockedToken<CCharLayoutInfo> layoutInfo,
|
|
int shaderIdx, int drawInsts);
|
|
CSkinnedModel(IObjectStore& store, ResId model, ResId skinRules,
|
|
ResId 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 zeus::CVector3f* v1, const zeus::CVector3f* v2, int w1);
|
|
static void SetPointGeneratorFunc(void* ctx, FPointGenerator func)
|
|
{
|
|
g_PointGenFunc = func;
|
|
g_PointGenCtx = ctx;
|
|
}
|
|
static FPointGenerator g_PointGenFunc;
|
|
static void* g_PointGenCtx;
|
|
};
|
|
|
|
class CMorphableSkinnedModel : public CSkinnedModel
|
|
{
|
|
public:
|
|
CMorphableSkinnedModel(IObjectStore& store, ResId model, ResId skinRules,
|
|
ResId layoutInfo, int shaderIdx, int drawInsts);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CSKINNEDMODEL_HPP__
|