-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd3d11mesh.cpp
176 lines (137 loc) · 5.57 KB
/
d3d11mesh.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#include "d3d11mesh.h"
#ifdef Q_OS_WIN
D3D11Mesh::D3D11Mesh(D3D11Shader* shader, std::vector <Vertex>& vertices, std::vector <unsigned int>& indices, std::vector <D3D11Texture>& textures)
{
D3D11Mesh::vertices = vertices;
D3D11Mesh::indices = indices;
D3D11Mesh::textures = textures;
// Creates the vertex buffer
D3D11_BUFFER_DESC bufDesc;
ZeroMemory(&bufDesc, sizeof(bufDesc));
bufDesc.ByteWidth = vertices.size() * sizeof(Vertex);
bufDesc.Usage = D3D11_USAGE_DEFAULT;
bufDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
HRESULT hr = shader->m_device->CreateBuffer(&bufDesc, nullptr, &m_vbuf);
if (FAILED(hr))
qFatal("Failed to create buffer: 0x%x", hr);
shader->m_context->UpdateSubresource(m_vbuf, 0, nullptr, vertices.data(), 0, 0);
// Creates the index buffer
D3D11_BUFFER_DESC indbufDesc;
ZeroMemory(&indbufDesc,sizeof(indbufDesc));
indbufDesc.ByteWidth = indices.size() * sizeof(unsigned int);
indbufDesc.Usage = D3D11_USAGE_DEFAULT;
indbufDesc.BindFlags = D3D11_BIND_INDEX_BUFFER;
indbufDesc.CPUAccessFlags = 0;
indbufDesc.MiscFlags = 0;
hr = shader->m_device->CreateBuffer(&indbufDesc, nullptr, &m_indbuf);
if (FAILED(hr))
qFatal("Failed to create index buffer: 0x%x", hr);
shader->m_context->UpdateSubresource(m_indbuf, 0, nullptr, indices.data(), 0, 0);
// Creates the input layout. This contains information about which variable goes into the vertex shader input
D3D11_INPUT_ELEMENT_DESC inputDesc[4];
ZeroMemory(inputDesc, sizeof(inputDesc));
inputDesc[0].SemanticName = "POSITION";
inputDesc[0].SemanticIndex = 0;
inputDesc[0].Format = DXGI_FORMAT_R32G32B32_FLOAT; // vec3
inputDesc[0].InputSlot = 0;
inputDesc[0].AlignedByteOffset = 0;
inputDesc[0].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA;
inputDesc[1].SemanticName = "NORMAL";
inputDesc[1].SemanticIndex = 0;
inputDesc[1].Format = DXGI_FORMAT_R32G32B32_FLOAT; // vec3
inputDesc[1].InputSlot = 0;
inputDesc[1].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT;
inputDesc[1].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA;
inputDesc[2].SemanticName = "COLOR";
inputDesc[2].SemanticIndex = 0;
inputDesc[2].Format = DXGI_FORMAT_R32G32B32_FLOAT; // vec3
inputDesc[2].InputSlot = 0;
inputDesc[2].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT;
inputDesc[2].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA;
inputDesc[3].SemanticName = "TEXCOORD";
inputDesc[3].SemanticIndex = 0;
inputDesc[3].Format = DXGI_FORMAT_R32G32_FLOAT; // vec2
inputDesc[3].InputSlot = 0;
inputDesc[3].AlignedByteOffset = D3D11_APPEND_ALIGNED_ELEMENT;
inputDesc[3].InputSlotClass = D3D11_INPUT_PER_VERTEX_DATA;
hr = shader->m_device->CreateInputLayout(inputDesc, 4, shader->vs.constData(), shader->vs.size(), &m_inputLayout);
if (FAILED(hr))
qFatal("Failed to create input layout: 0x%x", hr);
}
void D3D11Mesh::Delete() {
if (m_vbuf)
m_vbuf->Release();
if (m_inputLayout)
m_inputLayout->Release();
if (m_indbuf)
m_indbuf->Release();
if (m_transbuf)
m_transbuf->Release();
if (m_rotbuf)
m_rotbuf->Release();
if (m_scabuf)
m_scabuf->Release();
if (m_modelbuf)
m_modelbuf->Release();
}
void D3D11Mesh::Draw
(
D3D11Shader* shader,
Camera& camera,
glm::mat4 matrix,
glm::vec3 translation,
glm::quat rotation,
glm::vec3 scale
) {
const UINT stride = sizeof(Vertex); // vertex
const UINT offset = 0;
shader->m_context->IASetVertexBuffers(0, 1, &m_vbuf, &stride, &offset);
const UINT ind_offset = 0;
shader->m_context->IASetIndexBuffer(m_indbuf, DXGI_FORMAT_R32_UINT,ind_offset);
shader->m_context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
shader->m_context->IASetInputLayout(m_inputLayout);
unsigned int numDiffuse = 0;
unsigned int numSpecular = 0;
for (unsigned int i = 0; i < textures.size(); i++)
{
std::string num;
std::string type = textures[i].type;
if (type == "diffuse")
{
num = std::to_string(numDiffuse++);
}
else if (type == "specular")
{
num = std::to_string(numSpecular++);
}
textures[i].Bind(shader);
}
// Initialize matrices
glm::mat4 trans = glm::mat4(1.0f);
glm::mat4 rot = glm::mat4(1.0f);
glm::mat4 sca = glm::mat4(1.0f);
// Transform the matrices to their correct form
trans = glm::translate(trans, translation);
rot = glm::mat4_cast(rotation);
sca = glm::scale(sca, scale);
CamMatrixBufferType camMatrixBuffer;
camMatrixBuffer.camMatrix = glm::transpose(camera.cameraMatrix*sca*rot*trans*matrix) ;
// Constant buffer initialisation for the model-view-projection matrix
D3D11_BUFFER_DESC cbufDesc;
ZeroMemory(&cbufDesc, sizeof(cbufDesc));
cbufDesc.Usage = D3D11_USAGE_DEFAULT;
cbufDesc.ByteWidth = sizeof(CamMatrixBufferType);
cbufDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
D3D11_SUBRESOURCE_DATA InitData;
InitData.pSysMem = &camMatrixBuffer;
InitData.SysMemPitch = 0;
InitData.SysMemSlicePitch = 0;
HRESULT hr = shader->m_device->CreateBuffer(&cbufDesc, &InitData, &m_modelbuf);
if (FAILED(hr))
qFatal("Failed to create cam matrix constant buffer: 0x%x", hr);
shader->m_context->UpdateSubresource(m_modelbuf, 0, 0, &camMatrixBuffer, 0, 0);
shader->m_context->VSSetConstantBuffers(0, 1, &m_modelbuf);
// Draws the element
shader->m_context->DrawIndexed(indices.size(),0,0);
}
#endif