metaforce/Runtime/Graphics/CModel.hpp

181 lines
5.8 KiB
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CMODEL_HPP__
#define __URDE_CMODEL_HPP__
2016-02-13 00:57:09 +00:00
#include "RetroTypes.hpp"
2016-03-04 23:04:53 +00:00
#include "zeus/CColor.hpp"
2016-03-29 23:14:14 +00:00
#include "CFactoryMgr.hpp"
#include "CToken.hpp"
#include "zeus/CAABox.hpp"
2016-03-31 02:44:43 +00:00
#include "DNACommon/CMDL.hpp"
#include "DNAMP1/CMDLMaterials.hpp"
2016-07-21 05:21:45 +00:00
#include "Shaders/CModelShaders.hpp"
2016-02-13 00:57:09 +00:00
2016-03-30 19:16:01 +00:00
#include "boo/graphicsdev/IGraphicsDataFactory.hpp"
2016-03-04 23:04:53 +00:00
namespace urde
2016-02-13 00:57:09 +00:00
{
2016-03-29 23:14:14 +00:00
class IObjectStore;
class CTexture;
2016-04-04 02:32:57 +00:00
class CLight;
2016-02-13 00:57:09 +00:00
struct CModelFlags
{
2016-03-31 06:18:56 +00:00
u8 m_blendMode = 0; /* Blend state 3/5 enable additive */
u8 m_matSetIdx = 0;
2016-04-04 02:32:57 +00:00
u8 m_extendedShaderIdx = 0; /* 0 for shadeless, 1 for lighting, others defined in CModelShaders */
2016-03-31 06:18:56 +00:00
u16 m_flags = 0; /* Flags */
2016-03-17 02:18:01 +00:00
zeus::CColor color; /* Set into kcolor slot specified by material */
2016-04-03 05:25:34 +00:00
CModelFlags() = default;
CModelFlags(u8 blendMode, u8 shadIdx, u16 flags, const zeus::CColor& col)
: m_blendMode(blendMode), m_matSetIdx(shadIdx), m_flags(flags), color(col) {}
2016-03-31 06:18:56 +00:00
/* Flags
2016-03-31 02:44:43 +00:00
0x4: render without texture lock
2016-03-31 06:18:56 +00:00
0x8: depth greater
0x10: depth non-inclusive
2016-03-17 02:18:01 +00:00
*/
2016-02-13 00:57:09 +00:00
};
2016-03-31 02:44:43 +00:00
/* urde addition: doesn't require hacky stashing of
* pointers within loaded CMDL buffer */
struct CBooSurface
2016-03-30 19:16:01 +00:00
{
2016-04-04 02:32:57 +00:00
DataSpec::DNACMDL::SurfaceHeader_2 m_data;
size_t selfIdx;
2016-03-31 02:44:43 +00:00
class CBooModel* m_parent = nullptr;
CBooSurface* m_next = nullptr;
2016-07-26 22:05:59 +00:00
zeus::CAABox GetBounds() const
{
if (!m_data.aabbSz)
return zeus::CAABox(m_data.centroid, m_data.centroid);
else
return zeus::CAABox(m_data.aabb[0], m_data.aabb[1]);
}
2016-03-30 19:16:01 +00:00
};
2016-03-29 23:14:14 +00:00
class CBooModel
{
2016-03-31 06:18:56 +00:00
friend class CModel;
2016-07-25 22:52:02 +00:00
friend class CBooRenderer;
2016-03-29 23:14:14 +00:00
public:
2016-03-31 06:18:56 +00:00
using MaterialSet = DataSpec::DNAMP1::HMDLMaterialSet;
using UVAnimation = DataSpec::DNAMP1::MaterialSet::Material::UVAnimation;
2016-03-31 02:44:43 +00:00
struct SShader
2016-03-29 23:14:14 +00:00
{
2016-03-31 02:44:43 +00:00
std::vector<TCachedToken<CTexture>> x0_textures;
2016-04-04 02:32:57 +00:00
std::vector<std::vector<boo::IShaderPipeline*>> m_shaders;
2016-03-31 06:18:56 +00:00
MaterialSet m_matSet;
2016-03-31 02:44:43 +00:00
void UnlockTextures();
2016-03-29 23:14:14 +00:00
};
2016-03-31 02:44:43 +00:00
2016-03-29 23:14:14 +00:00
private:
2016-03-31 02:44:43 +00:00
std::vector<CBooSurface>* x0_surfaces;
2016-03-31 06:18:56 +00:00
const MaterialSet* x4_matSet;
2016-04-04 02:32:57 +00:00
const std::vector<std::vector<boo::IShaderPipeline*>>* m_pipelines;
2016-03-31 02:44:43 +00:00
boo::IVertexFormat* m_vtxFmt;
2016-03-30 19:16:01 +00:00
boo::IGraphicsBufferS* x8_vbo;
boo::IGraphicsBufferS* xc_ibo;
2016-04-04 02:32:57 +00:00
size_t m_weightVecCount;
size_t m_skinBankCount;
2016-03-31 02:44:43 +00:00
std::vector<TCachedToken<CTexture>>* x1c_textures;
2016-03-29 23:14:14 +00:00
zeus::CAABox x20_aabb;
2016-03-31 02:44:43 +00:00
CBooSurface* x38_firstUnsortedSurface = nullptr;
CBooSurface* x3c_firstSortedSurface = nullptr;
bool x40_24_texturesLoaded : 1;
2016-07-27 23:06:57 +00:00
bool x40_25_modelVisible : 1;
u8 x41_mask = 0;
2016-03-30 19:16:01 +00:00
2016-03-31 06:18:56 +00:00
struct UVAnimationBuffer
{
2016-04-04 02:32:57 +00:00
static void ProcessAnimation(u8*& bufOut, const UVAnimation& anim);
static void PadOutBuffer(u8*& bufStart, u8*& bufOut);
static void Update(u8*& bufOut, const MaterialSet* matSet);
};
CModelShaders::LightingUniform m_lightingData;
2016-03-31 06:18:56 +00:00
2016-03-30 19:16:01 +00:00
/* urde addition: boo! */
boo::GraphicsDataToken m_gfxToken;
2016-04-04 02:32:57 +00:00
size_t m_uniformDataSize = 0;
boo::IGraphicsBufferD* m_uniformBuffer = nullptr;
std::vector<std::vector<boo::IShaderDataBinding*>> m_shaderDataBindings;
2016-03-30 19:16:01 +00:00
2016-03-31 06:18:56 +00:00
void BuildGfxToken();
void UpdateUniformData() const;
2016-03-30 19:16:01 +00:00
void DrawAlphaSurfaces(const CModelFlags& flags) const;
void DrawNormalSurfaces(const CModelFlags& flags) const;
void DrawSurfaces(const CModelFlags& flags) const;
void DrawSurface(const CBooSurface& surf, const CModelFlags& flags) const;
2016-03-29 23:14:14 +00:00
public:
2016-03-31 02:44:43 +00:00
CBooModel(std::vector<CBooSurface>* surfaces, SShader& shader,
boo::IVertexFormat* vtxFmt, boo::IGraphicsBufferS* vbo, boo::IGraphicsBufferS* ibo,
size_t weightVecCount, size_t skinBankCount, const zeus::CAABox& aabb);
2016-03-29 23:14:14 +00:00
2016-03-31 06:18:56 +00:00
static void MakeTexuresFromMats(const MaterialSet& matSet,
2016-03-31 02:44:43 +00:00
std::vector<TCachedToken<CTexture>>& toksOut,
2016-03-29 23:14:14 +00:00
IObjectStore& store);
2016-04-14 21:42:47 +00:00
bool IsOpaque() const {return x3c_firstSortedSurface == nullptr;}
2016-04-04 02:32:57 +00:00
void ActivateLights(const std::vector<CLight>& lights);
2016-03-31 02:44:43 +00:00
void RemapMaterialData(SShader& shader);
bool TryLockTextures() const;
2016-03-30 19:16:01 +00:00
void UnlockTextures() const;
void DrawAlpha(const CModelFlags& flags) const;
void DrawNormal(const CModelFlags& flags) const;
void Draw(const CModelFlags& flags) const;
2016-03-31 06:18:56 +00:00
const MaterialSet::Material& GetMaterialByIndex(int idx) const
2016-03-31 02:44:43 +00:00
{
return x4_matSet->materials.at(idx);
}
2016-03-30 19:16:01 +00:00
static bool g_DrawingOccluders;
static void SetDrawingOccluders(bool occ) {g_DrawingOccluders = occ;}
2016-03-29 23:14:14 +00:00
};
2016-02-13 00:57:09 +00:00
class CModel
{
//std::unique_ptr<u8[]> x0_data;
//u32 x4_dataLen;
zeus::CAABox m_aabb;
2016-03-31 02:44:43 +00:00
std::vector<CBooSurface> x8_surfaces;
std::vector<CBooModel::SShader> x18_matSets;
2016-03-29 23:14:14 +00:00
std::unique_ptr<CBooModel> x28_modelInst;
CModel* x30_next = nullptr;
CModel* x34_prev = nullptr;
2016-03-30 19:16:01 +00:00
/* urde addition: boo! */
boo::GraphicsDataToken m_gfxToken;
boo::IGraphicsBufferS* m_vbo;
boo::IGraphicsBufferS* m_ibo;
2016-03-31 02:44:43 +00:00
boo::IVertexFormat* m_vtxFmt;
void VerifyCurrentShader(int shaderIdx) const;
2016-03-30 19:16:01 +00:00
2016-03-29 23:14:14 +00:00
public:
2016-03-31 06:18:56 +00:00
using MaterialSet = DataSpec::DNAMP1::HMDLMaterialSet;
2016-03-29 23:14:14 +00:00
CModel(std::unique_ptr<u8[]>&& in, u32 dataLen, IObjectStore* store);
2016-03-31 02:44:43 +00:00
void DrawSortedParts(const CModelFlags& flags) const;
void DrawUnsortedParts(const CModelFlags& flags) const;
2016-02-13 00:57:09 +00:00
void Draw(const CModelFlags& flags) const;
2016-03-31 02:44:43 +00:00
void Touch(int shaderIdx) const;
bool IsLoaded(int shaderIdx) const;
2016-04-04 05:02:09 +00:00
2016-04-14 21:42:47 +00:00
const zeus::CAABox& GetAABB() const {return m_aabb;}
2016-04-04 05:02:09 +00:00
CBooModel& GetInstance() {return *x28_modelInst;}
2016-04-14 21:42:47 +00:00
const CBooModel& GetInstance() const {return *x28_modelInst;}
std::unique_ptr<CBooModel> MakeNewInstance(int shaderIdx);
2016-02-13 00:57:09 +00:00
};
2016-03-29 23:14:14 +00:00
CFactoryFnReturn FModelFactory(const urde::SObjectTag& tag,
std::unique_ptr<u8[]>&& in, u32 len,
const urde::CVParamTransfer& vparms);
2016-02-13 00:57:09 +00:00
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CMODEL_HPP__