Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
VertexBuffer.hpp
1#pragma once
2
3#include <vector>
4#include <cstring>
5
6namespace Grindstone::GraphicsAPI {
7 enum class VertexFormat {
8 Float = 0,
9 Float2,
10 Float3,
11 Float4,
12 Mat3,
13 Mat4,
14 Int,
15 Int2,
16 Int3,
17 Int4,
18 UInt,
19 UInt2,
20 UInt3,
21 UInt4,
22 Bool
23 };
24
25 static uint32_t vertexFormatTypeSize(VertexFormat type) {
26 switch (type) {
27 case VertexFormat::Float: return 4;
28 case VertexFormat::Float2: return 4 * 2;
29 case VertexFormat::Float3: return 4 * 3;
30 case VertexFormat::Float4: return 4 * 4;
31 case VertexFormat::Mat3: return 4 * 3 * 3;
32 case VertexFormat::Mat4: return 4 * 4 * 4;
33 case VertexFormat::Int: return 4;
34 case VertexFormat::Int2: return 4 * 2;
35 case VertexFormat::Int3: return 4 * 3;
36 case VertexFormat::Int4: return 4 * 4;
37 case VertexFormat::UInt: return 4;
38 case VertexFormat::UInt2: return 4 * 2;
39 case VertexFormat::UInt3: return 4 * 3;
40 case VertexFormat::UInt4: return 4 * 4;
41 case VertexFormat::Bool: return 1;
42 }
43
44 return 0;
45 };
46
47 static uint32_t vertexFormatTypeComponents(VertexFormat type) {
48 switch (type) {
49 case VertexFormat::Float: return 1;
50 case VertexFormat::Float2: return 2;
51 case VertexFormat::Float3: return 3;
52 case VertexFormat::Float4: return 4;
53 case VertexFormat::Mat3: return 4 * 3;
54 case VertexFormat::Mat4: return 4 * 4;
55 case VertexFormat::Int: return 1;
56 case VertexFormat::Int2: return 2;
57 case VertexFormat::Int3: return 3;
58 case VertexFormat::Int4: return 4;
59 case VertexFormat::UInt: return 1;
60 case VertexFormat::UInt2: return 2;
61 case VertexFormat::UInt3: return 3;
62 case VertexFormat::UInt4: return 4;
63 case VertexFormat::Bool: return 1;
64 }
65
66 return 0;
67 };
68
69 // This refers to semantic information about how some vertex data will be used.
70 enum class AttributeUsage {
71 Position,
72 Color,
73 TexCoord0,
74 TexCoord1,
75 TexCoord2,
76 TexCoord3,
77 Normal,
78 Tangent,
79 BlendWeights,
80 BlendIndices,
81 Other
82 };
83
87 uint32_t location = 0;
88 VertexFormat format = VertexFormat::Float;
89 uint32_t offset = 0;
90 uint32_t size = 0;
91 uint32_t componentsCount = 0;
92 bool isNormalized = false;
93
94 AttributeUsage usage = AttributeUsage::Other;
95 const char *name = "";
96
98
99 VertexAttributeDescription(uint32_t location, VertexFormat _format, const char* _name, bool _normalized = false, AttributeUsage _usage = AttributeUsage::Other) :
100 location(location), format(_format), name(_name), usage(_usage), size(vertexFormatTypeSize(_format)), componentsCount(vertexFormatTypeComponents(_format)), isNormalized(_normalized), offset(0) {}
101 };
102
103 // A VertexBufferLayout dictates how the Vertex Buffer data is formatted.
105 VertexBufferLayout() = default;
106 VertexBufferLayout(const std::initializer_list<VertexAttributeDescription>& elements, bool _element_rate = false)
107 : attributeCount((uint32_t)elements.size()), stride(0), elementRate(_element_rate), attributes(new VertexAttributeDescription[elements.size()]) {
108 memcpy(attributes, elements.begin(), sizeof(VertexAttributeDescription) * elements.size());
109
110 for (uint32_t i = 0; i < attributeCount; ++i) {
111 attributes[i].offset = stride;
112 stride += attributes[i].size;
113 }
114 }
115 uint32_t stride = 0;
116 bool elementRate = false;
117 VertexAttributeDescription* attributes = nullptr;
118 uint32_t attributeCount = 0;
119 };
120
122 VertexBufferLayout* vertexBindingDescriptions;
123 uint32_t bindingCount;
124 };
125
131 public:
132 struct CreateInfo {
133 const char* debugName = nullptr;
134 VertexBufferLayout* layout = nullptr;
135 const void* content = 0;
136 uint32_t size = 0;
137 uint32_t count = 0;
138 };
139
140 virtual ~VertexBuffer() {};
141 };
142}
Definition VertexBuffer.hpp:130
Definition InputManager.cpp:52
Definition VertexBuffer.hpp:104