NcEngine
AssetViews.h
Go to the documentation of this file.
1
5#pragma once
6
8
9#include "ncmath/Geometry.h"
10
11#include <concepts>
12#include <limits>
13#include <span>
14#include <string>
15
16struct ImFont;
17
18namespace nc::asset
19{
20using AssetId = uint64_t;
21constexpr auto NullAssetId = std::numeric_limits<AssetId>::max();
22constexpr auto NullAssetIndex = std::numeric_limits<uint32_t>::max();
23
25{
26 AssetId id = NullAssetId;
27 std::span<const double> leftChannel = {};
28 std::span<const double> rightChannel = {};
29 size_t samplesPerChannel = 0ull;
30};
31
33{
34 AssetId id = NullAssetId;
35};
36
37enum class CubeMapUsage
38{
39 Skybox,
40 ShadowMap
41};
42
44{
45 AssetId id = NullAssetId;
46 CubeMapUsage usage = CubeMapUsage::Skybox;
47 uint32_t index = NullAssetIndex;
48};
49
51{
52 AssetId id = NullAssetId;
53 uint32_t firstVertex = NullAssetIndex;
54 uint32_t vertexCount = NullAssetIndex;
55 uint32_t firstIndex = NullAssetIndex;
56 uint32_t indexCount = NullAssetIndex;
57 float maxExtent = 0.0f;
58};
59
61{
62 AssetId id = NullAssetId;
63};
64
66{
67 AssetId id = NullAssetId;
68 uint32_t index = NullAssetIndex;
69};
70
71enum class DescriptorType : uint8_t
72{
73 None,
74 UniformBuffer,
75 StorageBuffer,
76 CombinedImageSampler
77};
78
79enum class ShaderStages : uint8_t
80{
81 None = 0,
82 Vertex = 1,
83 Fragment = 2
84}; DEFINE_BITWISE_OPERATORS(ShaderStages)
85
86struct DescriptorManifest
87{
88 uint32_t setIndex = NullAssetIndex;
89 uint32_t slotIndex = NullAssetIndex;
90 DescriptorType descriptorType = DescriptorType::None;
91 ShaderStages shaderStages = ShaderStages::None;
92};
93
95{
96 std::string uid;
97 std::span<const uint32_t> vertexByteCode;
98 std::span<const uint32_t> fragmentByteCode;
99 std::span<const DescriptorManifest> descriptors;
100};
101
103{
104 AssetId id = NullAssetId;
105 uint32_t index = NullAssetIndex;
106};
107
109{
110 std::string path;
111 float size = 12.0f;
112};
113
115{
116 ImFont* font = nullptr;
117 float size = 10.0f;
118};
119
122template<class T>
123concept AssetView = std::same_as<T, AudioClipView> ||
124 std::same_as<T, ConvexHullView> ||
125 std::same_as<T, CubeMapView> ||
126 std::same_as<T, FontView> ||
127 std::same_as<T, MeshColliderView> ||
128 std::same_as<T, MeshView> ||
129 std::same_as<T, ShaderView> ||
130 std::same_as<T, SkeletalAnimationView> ||
131 std::same_as<T, TextureView>;
132} // namespace nc::asset
#define DEFINE_BITWISE_OPERATORS(type)
Definition: EnumUtilities.h:23
Definition: AssetViews.h:123
Definition: AssetViews.h:25
Definition: AssetViews.h:33
Definition: AssetViews.h:44
Definition: AssetViews.h:109
Definition: AssetViews.h:115
Definition: AssetViews.h:61
Definition: AssetViews.h:51
Definition: AssetViews.h:95
Definition: AssetViews.h:103
Definition: AssetViews.h:66