NcEngine
Mesh.h
Go to the documentation of this file.
1
5#pragma once
6
11
12namespace nc
13{
14namespace graphics
15{
16class MeshSubsystem;
17} // namespace graphics
18
20enum class MeshInstanceType : uint8_t
21{
22 Static,
23 Skinned
24};
25
28{
29 Entity entity = Entity::Null();
30 asset::AssetId meshId = std::numeric_limits<uint64_t>::max();
31 uint32_t transformDataHandle = std::numeric_limits<uint32_t>::max();
32 uint32_t boneDataHandle = std::numeric_limits<uint32_t>::max();
33 MeshInstanceType type = MeshInstanceType::Static;
34};
35
38{
39 public:
40 explicit MeshBase(Entity self,
41 const asset::MeshView& meshAsset,
42 const MaterialDesc& materialDesc,
43 MeshInstanceType type);
44
45 MeshBase(MeshBase&& other) noexcept
46 : m_ctx{std::exchange(other.m_ctx, MeshInstanceContext{})},
47 m_material{std::move(other.m_material)}
48 {
49 }
50
51 MeshBase& operator=(MeshBase&& other) noexcept
52 {
53 if (this != &other)
54 {
55 Release();
56 m_ctx = std::exchange(other.m_ctx, MeshInstanceContext{});
57 m_material = std::move(other.m_material);
58 }
59
60 return *this;
61 }
62
63 MeshBase(const MeshBase&) = delete;
64 MeshBase& operator=(const MeshBase&) = delete;
65
67 auto GetEntity() const -> Entity { return m_ctx.entity; }
68 auto GetContext() const -> const MeshInstanceContext& { return m_ctx; }
69
71 auto GetMeshId() const -> uint64_t { return m_ctx.meshId; }
72 void SetMesh(const asset::MeshView& meshAsset);
73
75 auto GetMaterial() const -> const MaterialInstance& { return m_material; }
76 auto GetMaterial() -> MaterialInstance& { return m_material; }
77 void SetMaterial(const MaterialDesc& materialDesc);
78
80 static void RegisterSubsystem(graphics::MeshSubsystem* subsystem)
81 {
82 s_subsystem = subsystem;
83 }
86 protected:
87 ~MeshBase() noexcept
88 {
89 Release();
90 }
91
92 private:
93 inline static graphics::MeshSubsystem* s_subsystem = nullptr;
95 MaterialInstance m_material;
96
97 void Release() noexcept;
98};
99
101class StaticMesh : public MeshBase
102{
103 public:
104 explicit StaticMesh(Entity self,
105 const asset::MeshView& meshAsset,
106 const MaterialDesc& materialDesc)
107 : MeshBase{self, meshAsset, materialDesc, MeshInstanceType::Static}
108 {
109 }
110};
111
113class SkinnedMesh : public MeshBase
114{
115 public:
116 explicit SkinnedMesh(Entity self,
117 const asset::MeshView& meshAsset,
118 const MaterialDesc& materialDesc,
119 asset::AssetId rootAnimationId = asset::NullAssetId)
120 : MeshBase{self, meshAsset, materialDesc, MeshInstanceType::Skinned},
121 m_controller{rootAnimationId}
122 {
123 }
124
126 void SetMesh(const asset::MeshView& meshAsset);
127
129 auto GetAnimationController() const -> const SkeletalAnimationController& { return m_controller; }
130 auto GetAnimationController() -> SkeletalAnimationController& { return m_controller; }
131
132 private:
133 SkeletalAnimationController m_controller;
134};
135} // namespace nc
MeshInstanceType
Type of mesh components.
Definition: Mesh.h:21
Identifies an object in the registry.
Definition: Entity.h:18
static constexpr auto Null() noexcept
Construct a null Entity.
Definition: Entity.h:61
Owning wrapper around a material in GPU memory.
Definition: Material.h:70
Base class for mesh components.
Definition: Mesh.h:38
~MeshBase() noexcept
Definition: Mesh.h:87
void SetMaterial(const MaterialDesc &materialDesc)
auto GetMaterial() const -> const MaterialInstance &
Definition: Mesh.h:75
auto GetMaterial() -> MaterialInstance &
Definition: Mesh.h:76
State machine that controls animation transitions for a SkinnedMesh.
Definition: SkeletalAnimationController.h:88
Component enabling rendering of an Entity with a given mesh, material, and skeletal animation.
Definition: Mesh.h:114
Component enabling rendering of an Entity with a given mesh and material.
Definition: Mesh.h:102
Properties for constructing a MaterialInstance.
Definition: Material.h:62
Mesh component state for tracking internal instance data.
Definition: Mesh.h:28
Definition: AssetViews.h:51