This repository has been archived by the owner on Oct 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
IndexBuffer.cpp
274 lines (252 loc) · 8.54 KB
/
IndexBuffer.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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
#include "stdafx.h"
#include "IndexBuffer.h"
#include "RenderDevice.h"
extern unsigned m_curLockCalls, m_frameLockCalls;
//!! Disabled since it still has some bugs
#define COMBINE_BUFFERS 0
IndexBuffer* IndexBuffer::m_curIndexBuffer = nullptr; // is also reset before each Player start
#ifndef ENABLE_SDL
IDirect3DDevice9* IndexBuffer::m_pd3dPrimaryDevice = nullptr; // is set before each Player start
IDirect3DDevice9* IndexBuffer::m_pd3dSecondaryDevice = nullptr; // is set before each Player start
#endif
#ifdef ENABLE_SDL
vector<IndexBuffer*> IndexBuffer::notUploadedBuffers;
#endif
void IndexBuffer::CreateIndexBuffer(const unsigned int numIndices, const DWORD usage, const IndexBuffer::Format format, IndexBuffer **idxBuffer, const deviceNumber dN)
{
IndexBuffer* const ib = new IndexBuffer();
#ifdef ENABLE_SDL
ib->count = numIndices;
ib->indexFormat = format;
ib->size = numIndices * (ib->indexFormat == FMT_INDEX16 ? 2 : 4);
ib->usage = usage ? usage : GL_STATIC_DRAW;
ib->isUploaded = false;
ib->dataBuffer = nullptr;
#else
// NB: We always specify WRITEONLY since MSDN states,
// "Buffers created with D3DPOOL_DEFAULT that do not specify D3DUSAGE_WRITEONLY may suffer a severe performance penalty."
const unsigned idxSize = (format == IndexBuffer::FMT_INDEX16) ? 2 : 4;
const HRESULT hr = (dN == PRIMARY_DEVICE ? m_pd3dPrimaryDevice : m_pd3dSecondaryDevice)->CreateIndexBuffer(idxSize * numIndices, usage | USAGE_STATIC, (D3DFORMAT)format,
(D3DPOOL)memoryPool::DEFAULT, &ib->m_ib, nullptr);
if (FAILED(hr))
ReportError("Fatal Error: unable to create index buffer!", hr, __FILE__, __LINE__);
ib->m_dN = dN;
#endif
*idxBuffer = ib;
}
IndexBuffer* IndexBuffer::CreateAndFillIndexBuffer(const unsigned int numIndices, const WORD *indices, const deviceNumber dN)
{
#ifdef ENABLE_SDL
IndexBuffer* const ib = new IndexBuffer();
ib->count = numIndices;
ib->indexFormat = IndexBuffer::FMT_INDEX16;
ib->usage = GL_STATIC_DRAW;
ib->size = numIndices * (ib->indexFormat == FMT_INDEX16 ? 2 : 4);
ib->sizeToLock = ib->size;
ib->Buffer = 0;
if (COMBINE_BUFFERS == 0 || ib->usage != GL_STATIC_DRAW) {
ib->dataBuffer = (void*)indices;
ib->UploadData(false);
}
else {
ib->offsetToLock = 0;
ib->dataBuffer = nullptr;
ib->addToNotUploadedBuffers(indices);
}
#else
IndexBuffer* ib;
CreateIndexBuffer(numIndices, 0, IndexBuffer::FMT_INDEX16, &ib, dN);
void* buf;
ib->lock(0, 0, &buf, WRITEONLY);
memcpy(buf, indices, numIndices * sizeof(indices[0]));
ib->unlock();
#endif
return ib;
}
IndexBuffer* IndexBuffer::CreateAndFillIndexBuffer(const unsigned int numIndices, const unsigned int *indices, const deviceNumber dN)
{
#ifdef ENABLE_SDL
IndexBuffer* const ib = new IndexBuffer();
ib->count = numIndices;
ib->indexFormat = IndexBuffer::FMT_INDEX32;
ib->usage = GL_STATIC_DRAW;
ib->size = numIndices * (ib->indexFormat == FMT_INDEX16 ? 2 : 4);
ib->sizeToLock = ib->size;
ib->Buffer = 0;
if (COMBINE_BUFFERS == 0 || ib->usage != GL_STATIC_DRAW) {
ib->dataBuffer = (void*)indices;
ib->UploadData(false);
}
else {
ib->offsetToLock = 0;
ib->dataBuffer = nullptr;
ib->addToNotUploadedBuffers(indices);
}
#else
IndexBuffer* ib;
CreateIndexBuffer(numIndices, 0, IndexBuffer::FMT_INDEX32, &ib, dN);
void* buf;
ib->lock(0, 0, &buf, WRITEONLY);
memcpy(buf, indices, numIndices * sizeof(indices[0]));
ib->unlock();
#endif
return ib;
}
IndexBuffer* IndexBuffer::CreateAndFillIndexBuffer(const vector<WORD>& indices, const deviceNumber dN)
{
return CreateAndFillIndexBuffer((unsigned int)indices.size(), indices.data(), dN);
}
IndexBuffer* IndexBuffer::CreateAndFillIndexBuffer(const vector<unsigned int>& indices, const deviceNumber dN)
{
return CreateAndFillIndexBuffer((unsigned int)indices.size(), indices.data(), dN);
}
void IndexBuffer::lock(const unsigned int offsetToLock, const unsigned int sizeToLock, void **dataBuffer, const DWORD flags)
{
m_curLockCalls++;
#ifdef ENABLE_SDL
if (sizeToLock == 0)
this->sizeToLock = size;
else
this->sizeToLock = sizeToLock;
if (offsetToLock < size) {
*dataBuffer = malloc(this->sizeToLock); //!! does not init the buffer from the IBuffer data if flags is set accordingly (i.e. WRITEONLY, or better: create a new flag like 'PARTIALUPDATE'?)
this->dataBuffer = *dataBuffer;
this->offsetToLock = offsetToLock;
}
else {
*dataBuffer = nullptr;
this->dataBuffer = nullptr;
this->sizeToLock = 0;
}
#else
CHECKD3D(m_ib->Lock(offsetToLock, sizeToLock, dataBuffer, flags));
#endif
}
void IndexBuffer::unlock()
{
#ifdef ENABLE_SDL
if (COMBINE_BUFFERS == 0 || usage != GL_STATIC_DRAW || Buffer>0)
UploadData(true);
else
addToNotUploadedBuffers();
#else
CHECKD3D(m_ib->Unlock());
#endif
}
void IndexBuffer::release()
{
#ifdef ENABLE_SDL
if (!sharedBuffer && (Buffer != 0))
{
glDeleteBuffers(1, &Buffer);
Buffer = 0;
}
#else
SAFE_RELEASE(m_ib);
#endif
}
void IndexBuffer::bind()
{
#ifdef ENABLE_SDL
if (!isUploaded) //Should never happen...
{
assert(!"UploadBuffers in IndexBuffer::bind");
IndexBuffer::UploadBuffers();
}
if (m_curIndexBuffer == nullptr || Buffer != m_curIndexBuffer->Buffer)
{
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, Buffer);
m_curIndexBuffer = this;
}
#else
if (/*m_curIndexBuffer == nullptr ||*/ m_curIndexBuffer != this)
{
CHECKD3D((m_dN == PRIMARY_DEVICE ? m_pd3dPrimaryDevice : m_pd3dSecondaryDevice)->SetIndices(m_ib));
m_curIndexBuffer = this;
}
#endif
}
#ifdef ENABLE_SDL
void IndexBuffer::UploadData(bool freeData)
{
if (isUploaded || !dataBuffer) return;
if (Buffer == 0) {
sharedBuffer = false;
sizeToLock = size;
glGenBuffers(1, &Buffer);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, Buffer);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, size, nullptr, usage);
offset = 0;
}
else
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, Buffer);
glBufferSubData(GL_ELEMENT_ARRAY_BUFFER, offset + offsetToLock, min(sizeToLock, size - offsetToLock), dataBuffer);
m_curIndexBuffer = this;
if (freeData)
free(dataBuffer);
dataBuffer = nullptr;
isUploaded = true;
}
void IndexBuffer::addToNotUploadedBuffers(const void* indices)
{
if (std::find(notUploadedBuffers.begin(), notUploadedBuffers.end(), this) == notUploadedBuffers.end())
notUploadedBuffers.push_back(this);
else if (indices) {
//merge dataBuffer and indices...
}
offsetToLock = 0;
if (indices && indices != dataBuffer) {
if (dataBuffer)
free(dataBuffer);
dataBuffer = malloc(size);
memcpy(dataBuffer, indices, size);
}
Buffer = 0;
isUploaded = false;
}
void IndexBuffer::UploadBuffers()
{
if (notUploadedBuffers.empty()) return;
int size16 = 0;
int size32 = 0;
GLuint Buffer16;
GLuint Buffer32;
glGenBuffers(1, &Buffer16);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, Buffer16);
glGenBuffers(1, &Buffer32);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, Buffer32);
//Find out how much data needs to be uploaded
for (auto it = notUploadedBuffers.begin(); it != notUploadedBuffers.end(); ++it) {
if (!(*it)->isUploaded && (*it)->usage == GL_STATIC_DRAW) {
if ((*it)->Buffer>0 && !(*it)->sharedBuffer)
glDeleteBuffers(1, &(*it)->Buffer);
if ((*it)->indexFormat == FMT_INDEX16) {
(*it)->offset = size16;
size16 += (*it)->size;
(*it)->Buffer = Buffer16;
}
else {
(*it)->offset = size32;
size32 += (*it)->size;
(*it)->Buffer = Buffer32;
}
(*it)->sharedBuffer = true;
}
}
//Allocate BufferData on GPU
if (size16 > 0) {
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, Buffer16);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, size16, nullptr, GL_STATIC_DRAW);
}
if (size32 > 0) {
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, Buffer32);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, size32, nullptr, GL_STATIC_DRAW);
}
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0);
m_curIndexBuffer = nullptr;
//Upload all Buffers
for (auto it = notUploadedBuffers.begin(); it != notUploadedBuffers.end(); ++it)
(*it)->UploadData(true);
notUploadedBuffers.clear();
}
#endif