NcEngine
Material.h
Go to the documentation of this file.
1
5#pragma once
6
8#include "ncmath/Vector.h"
9
10#include <limits>
11#include <utility>
12
13namespace nc
14{
15namespace graphics
16{
17class MaterialRegistry;
18} // namespace graphics
19
21using MaterialInstanceHandle = uint32_t;
22
24constexpr auto NullMaterialInstanceHandle = std::numeric_limits<MaterialInstanceHandle>::max();
25
28{
29 using type = uint64_t;
30
31 static constexpr auto UniShadow = type{1 << 0};
32 static constexpr auto PointShadow = type{1 << 1};
33 static constexpr auto Depth = type{1 << 2};
34 static constexpr auto Toon = type{1 << 3};
35 static constexpr auto Normals = type{1 << 4};
36};
37
39using MaterialPassFlags = MaterialPassFlag::type;
40
42constexpr auto ShadowedToonMaterial = MaterialPassFlag::UniShadow | MaterialPassFlag::PointShadow | MaterialPassFlag::Depth | MaterialPassFlag::Toon | MaterialPassFlag::Normals;
43
46{
47 Vector3 gradientStart = Vector3{0.0f, 0.0f, 0.0f};
49 Vector3 gradientEnd = Vector3{1.0f, 1.0f, 1.0f};
52 float normalIntensity = 1.0f;
53 float hatchTiling = 1.0f;
54 float gradientAmount = 0.1f;
55 float reflectivity = 0.0f;
56 uint32_t useTextureNormals = 1;
57 uint32_t useFlatShading = 1;
58};
59
62{
63 std::string name = "DefaultMaterial";
66};
67
70{
71 public:
72 explicit MaterialInstance(const MaterialDesc& desc = MaterialDesc{});
73 MaterialInstance(MaterialInstance&& other) noexcept;
74 MaterialInstance& operator=(MaterialInstance&& other) noexcept;
75 ~MaterialInstance() noexcept;
76
77 MaterialInstance(const MaterialInstance&) = delete;
78 MaterialInstance& operator=(const MaterialInstance&) = delete;
79
81 auto Clone() const -> MaterialInstance;
82
84 auto GetName() const -> std::string_view;
85 void SetName(std::string_view name);
86
88 auto GetPasses() const -> MaterialPassFlags;
89
91 auto GetProperties() const -> const MaterialProperties&;
92 void SetProperties(const MaterialProperties& properties);
93
96 {
97 return m_handle;
98 }
99
100 private:
102 static inline graphics::MaterialRegistry* s_registry = nullptr;
103
104 MaterialInstanceHandle m_handle;
105
106 void Release() noexcept;
107};
108
109inline MaterialInstance::MaterialInstance(MaterialInstance&& other) noexcept
110 : m_handle{std::exchange(other.m_handle, NullMaterialInstanceHandle)}
111{
112}
113
114inline MaterialInstance& MaterialInstance::operator=(MaterialInstance&& other) noexcept
115{
116 if (this != &other)
117 {
118 Release();
119 m_handle = std::exchange(other.m_handle, NullMaterialInstanceHandle);
120 }
121
122 return *this;
123}
124
125inline MaterialInstance::~MaterialInstance() noexcept
126{
127 Release();
128}
129} // namespace nc
MaterialPassFlag::type MaterialPassFlags
Set of flags indicating a MaterialInstance's enabled passes.
Definition: Material.h:39
constexpr auto NullMaterialInstanceHandle
Null identifier for a MaterialInstance.
Definition: Material.h:24
uint32_t MaterialInstanceHandle
Identifier for a MaterialInstance.
Definition: Material.h:21
constexpr auto ShadowedToonMaterial
Default passes for a toon material.
Definition: Material.h:42
Owning wrapper around a material in GPU memory.
Definition: Material.h:70
auto GetHandle() const -> MaterialInstanceHandle
Get the instance's handle.
Definition: Material.h:95
auto GetProperties() const -> const MaterialProperties &
Get the instance's handle.
void SetProperties(const MaterialProperties &properties)
Get the instance's handle.
auto Clone() const -> MaterialInstance
Create a new MaterialInstance from this instance's properties.
friend class graphics::MaterialRegistry
Get the instance's handle.
Definition: Material.h:101
Properties for constructing a MaterialInstance.
Definition: Material.h:62
Material pass flags.
Definition: Material.h:28
Properties of a MaterialInstance passed to shaders.
Definition: Material.h:46
A three component vector.
Definition: Vector.h:29
Definition: AssetViews.h:66