forked from KhronosGroup/glTF-Sample-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mesh.js
424 lines (363 loc) · 16.5 KB
/
mesh.js
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
function defined(value) {
return value !== undefined && value !== null;
}
class Mesh {
constructor(gl, scene, globalState, modelPath, gltf, meshIdx) {
this.modelPath = modelPath;
this.scene = scene;
this.defines = {
'USE_IBL': 1
};
this.localState = {
uniforms: {},
uniformLocations: {},
attributes: {}
};
this.vertSource = globalState.vertSource;
this.fragSource = globalState.fragSource;
this.sRGBifAvailable = globalState.sRGBifAvailable;
++scene.pendingBuffers;
var primitives = gltf.meshes[meshIdx].primitives;
// todo: multiple primitives doesn't work.
for (let i = 0; i < primitives.length; i++) {
var primitive = primitives[Object.keys(primitives)[i]];
for (let attribute in primitive.attributes) {
switch (attribute) {
case "NORMAL":
this.defines.HAS_NORMALS = 1;
break;
case "TANGENT":
this.defines.HAS_TANGENTS = 1;
break;
case "TEXCOORD_0":
this.defines.HAS_UV = 1;
break;
}
}
// Material
var materialName = primitive.material;
if (defined(materialName)) {
this.material = gltf.materials[materialName];
}
var imageInfos = this.initTextures(gl, gltf);
this.initProgram(gl, globalState);
this.accessorsLoading = 0;
// Attributes
for (let attribute in primitive.attributes) {
this.getAccessorData(gl, gltf, modelPath, primitive.attributes[attribute], attribute);
}
// Indices
this.getAccessorData(gl, gltf, modelPath, primitive.indices, 'INDEX');
scene.loadImages(imageInfos, gl, this);
}
}
initProgram(gl, globalState) {
var definesToString = function(defines) {
var outStr = '';
for (var def in defines) {
outStr += '#define ' + def + ' ' + defines[def] + '\n';
}
return outStr;
};
var shaderDefines = definesToString(this.defines);
if (globalState.hasLODExtension) {
shaderDefines += '#define USE_TEX_LOD 1\n';
}
switch(globalState.lightingModel) {
case "BlinnPhong":
shaderDefines += '#define LIGHTING_BLINN_PHONG 1\n';
break;
case "Lambert":
shaderDefines += '#define LIGHTING_LAMBERT 1\n';
break;
case "Unlit":
shaderDefines += '#define LIGHTING_UNLIT 1\n';
break;
default:
shaderDefines += '#define LIGHTING_PBR_MR 1\n';
break;
}
var vertexShader = gl.createShader(gl.VERTEX_SHADER);
gl.shaderSource(vertexShader, shaderDefines + this.vertSource);
gl.compileShader(vertexShader);
var compiled = gl.getShaderParameter(vertexShader, gl.COMPILE_STATUS);
if (!compiled) {
error.innerHTML += 'Failed to compile the vertex shader<br>';
let compilationLog = gl.getShaderInfoLog(vertexShader);
error.innerHTML += 'Shader compiler log: ' + compilationLog + '<br>';
}
var fragmentShader = gl.createShader(gl.FRAGMENT_SHADER);
gl.shaderSource(fragmentShader, shaderDefines + this.fragSource);
gl.compileShader(fragmentShader);
compiled = gl.getShaderParameter(fragmentShader, gl.COMPILE_STATUS);
if (!compiled) {
error.innerHTML += 'Failed to compile the fragment shader<br>';
let compilationLog = gl.getShaderInfoLog(fragmentShader);
error.innerHTML += 'Shader compiler log: ' + compilationLog + '<br>';
}
var program = gl.createProgram();
gl.attachShader(program, vertexShader);
gl.attachShader(program, fragmentShader);
gl.linkProgram(program);
this.program = program;
}
drawMesh(gl, transform, view, projection, globalState) {
// Update model matrix
var modelMatrix = mat4.create();
mat4.multiply(modelMatrix, modelMatrix, transform);
if (this.material && this.material.doubleSided) {
gl.disable(gl.CULL_FACE);
} else {
gl.enable(gl.CULL_FACE);
}
// Update mvp matrix
var mvMatrix = mat4.create();
var mvpMatrix = mat4.create();
mat4.multiply(mvMatrix, view, modelMatrix);
mat4.multiply(mvpMatrix, projection, mvMatrix);
// these should actually be local to the mesh (not in global)
globalState.uniforms['u_MVPMatrix'].vals = [false, mvpMatrix];
// Update normal matrix
globalState.uniforms['u_ModelMatrix'].vals = [false, modelMatrix];
this.applyState(gl, globalState);
// Draw
if (defined(this.indicesAccessor)) {
gl.drawElements(gl.TRIANGLES, this.indicesAccessor.count, gl.UNSIGNED_SHORT, this.indicesAccessor.byteOffset);
}
this.disableState(gl);
}
initArrayBuffer(gl, data, num, type, attribute, stride, offset) {
var buffer = gl.createBuffer();
if (!buffer) {
var error = document.GetElementById('error');
error.innerHTML += 'Failed to create the buffer object<br>';
return -1;
}
gl.useProgram(this.program);
gl.bindBuffer(gl.ARRAY_BUFFER, buffer);
gl.bufferData(gl.ARRAY_BUFFER, data, gl.STATIC_DRAW);
var a_attribute = gl.getAttribLocation(this.program, attribute);
this.localState.attributes[attribute] = {
'cmds': [
{ 'funcName': 'bindBuffer', 'vals': [gl.ARRAY_BUFFER, buffer] },
{ 'funcName': 'vertexAttribPointer', 'vals': [a_attribute, num, type, false, stride, offset] },
{ 'funcName': 'enableVertexAttribArray', 'vals': [a_attribute] }
],
'a_attribute': a_attribute
};
return true;
}
initBuffers(gl, gltf) {
var error = document.getElementById('error');
var indexBuffer = gl.createBuffer();
if (!indexBuffer) {
error.innerHTML += 'Failed to create the buffer object<br>';
return -1;
}
if (!this.initArrayBuffer(gl, this.vertices, 3, gl.FLOAT, 'a_Position', this.verticesAccessor.byteStride, this.verticesAccessor.byteOffset)) {
error.innerHTML += 'Failed to initialize position buffer<br>';
}
if (this.normalsAccessor) {
if (!this.initArrayBuffer(gl, this.normals, 3, gl.FLOAT, 'a_Normal', this.normalsAccessor.byteStride, this.normalsAccessor.byteOffset)) {
error.innerHTML += 'Failed to initialize normal buffer<br>';
}
}
if (this.tangentsAccessor) {
if (!this.initArrayBuffer(gl, this.tangents, 4, gl.FLOAT, 'a_Tangent', this.tangentsAccessor.byteStride, this.tangentsAccessor.byteOffset)) {
error.innerHTML += 'Failed to initialize tangent buffer<br>';
}
}
if (this.texcoordsAccessor) {
if (!this.initArrayBuffer(gl, this.texcoords, 2, gl.FLOAT, 'a_UV', this.texcoordsAccessor.byteStride, this.texcoordsAccessor.byteOffset)) {
error.innerHTML += 'Failed to initialize texture buffer<br>';
}
}
gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, indexBuffer);
gl.bufferData(gl.ELEMENT_ARRAY_BUFFER, this.indices, gl.STATIC_DRAW);
--this.scene.pendingBuffers;
this.scene.drawScene(gl);
}
getImageInfo(gl, gltf, textureIndex, funcName, uniformName, colorSpace) {
var textureInfo = gltf.textures[textureIndex];
var uri = this.modelPath + gltf.images[textureInfo.source].uri;
var samplerIndex = this.scene.getNextSamplerIndex();
this.localState.uniforms[uniformName] = { 'funcName': funcName, 'vals': [samplerIndex] };
return {
'uri': uri,
'samplerIndex': samplerIndex,
'colorSpace': colorSpace
};
}
initTextures(gl, gltf) {
var imageInfos = {};
var pbrMat = this.material ? this.material.pbrMetallicRoughness : null;
var samplerIndex;
// Base Color
var baseColorFactor = pbrMat && defined(pbrMat.baseColorFactor) ? pbrMat.baseColorFactor : [1.0, 1.0, 1.0, 1.0];
this.localState.uniforms['u_BaseColorFactor'] = {
funcName: 'uniform4f',
vals: baseColorFactor
};
if (pbrMat && pbrMat.baseColorTexture && gltf.textures.length > pbrMat.baseColorTexture.index) {
imageInfos['baseColor'] = this.getImageInfo(gl, gltf, pbrMat.baseColorTexture.index, 'uniform1i', 'u_BaseColorSampler', this.sRGBifAvailable);
this.defines.HAS_BASECOLORMAP = 1;
}
else if (this.localState.uniforms['u_BaseColorSampler']) {
delete this.localState.uniforms['u_BaseColorSampler'];
}
// Metallic-Roughness
var metallic = (pbrMat && defined(pbrMat.metallicFactor)) ? pbrMat.metallicFactor : 1.0;
var roughness = (pbrMat && defined(pbrMat.roughnessFactor)) ? pbrMat.roughnessFactor : 1.0;
this.localState.uniforms['u_MetallicRoughnessValues'] = {
funcName: 'uniform2f',
vals: [metallic, roughness]
};
if (pbrMat && pbrMat.metallicRoughnessTexture && gltf.textures.length > pbrMat.metallicRoughnessTexture.index) {
imageInfos['metalRoughness'] = this.getImageInfo(gl, gltf, pbrMat.metallicRoughnessTexture.index, 'uniform1i', 'u_MetallicRoughnessSampler', gl.RGBA);
this.defines.HAS_METALROUGHNESSMAP = 1;
}
else if (this.localState.uniforms['u_MetallicRoughnessSampler']) {
delete this.localState.uniforms['u_MetallicRoughnessSampler'];
}
// Normals
if (this.material && this.material.normalTexture && gltf.textures.length > this.material.normalTexture.index) {
imageInfos['normal'] = this.getImageInfo(gl, gltf, this.material.normalTexture.index, 'uniform1i', 'u_NormalSampler', gl.RGBA);
var normalScale = defined(this.material.normalTexture.scale) ? this.material.normalTexture.scale : 1.0;
this.localState.uniforms['u_NormalScale'] = { 'funcName': 'uniform1f', 'vals': [normalScale] };
this.defines.HAS_NORMALMAP = 1;
}
else if (this.localState.uniforms['u_NormalSampler']) {
delete this.localState.uniforms['u_NormalSampler'];
}
// brdfLUT
var brdfLUT = 'textures/brdfLUT.png';
samplerIndex = this.scene.getNextSamplerIndex();
imageInfos['brdfLUT'] = { 'uri': brdfLUT, 'samplerIndex': samplerIndex, 'colorSpace': gl.RGBA, 'clamp': true };
this.localState.uniforms['u_brdfLUT'] = { 'funcName': 'uniform1i', 'vals': [samplerIndex] };
// Emissive
if (this.material && this.material.emissiveTexture) {
imageInfos['emissive'] = this.getImageInfo(gl, gltf, this.material.emissiveTexture.index, 'uniform1i', 'u_EmissiveSampler', this.sRGBifAvailable);
this.defines.HAS_EMISSIVEMAP = 1;
var emissiveFactor = defined(this.material.emissiveFactor) ? this.material.emissiveFactor : [0.0, 0.0, 0.0];
this.localState.uniforms['u_EmissiveFactor'] = {
funcName: 'uniform3f',
vals: emissiveFactor
};
}
else if (this.localState.uniforms['u_EmissiveSampler']) {
delete this.localState.uniforms['u_EmissiveSampler'];
}
// AO
if (this.material && this.material.occlusionTexture) {
imageInfos['occlusion'] = this.getImageInfo(gl, gltf, this.material.occlusionTexture.index, 'uniform1i', 'u_OcclusionSampler', gl.RGBA);
var occlusionStrength = defined(this.material.occlusionTexture.strength) ? this.material.occlusionTexture.strength : 1.0;
this.localState.uniforms['u_OcclusionStrength'] = { 'funcName': 'uniform1f', 'vals': [occlusionStrength] };
this.defines.HAS_OCCLUSIONMAP = 1;
}
else if (this.localState.uniforms['u_OcclusionSampler']) {
delete this.localState.uniforms['u_OcclusionSampler'];
}
return imageInfos;
}
getAccessorData(gl, gltf, modelPath, accessorName, attribute) {
var mesh = this;
this.accessorsLoading++;
var accessor = gltf.accessors[accessorName];
var bufferView = gltf.bufferViews[accessor.bufferView];
var buffer = gltf.buffers[bufferView.buffer];
var bin = buffer.uri;
var reader = new FileReader();
reader.onload = function(e) {
var arrayBuffer = reader.result;
var start = defined(bufferView.byteOffset) ? bufferView.byteOffset : 0;
var end = start + bufferView.byteLength;
var slicedBuffer = arrayBuffer.slice(start, end);
var data;
if (accessor.componentType === 5126) {
data = new Float32Array(slicedBuffer);
}
else if (accessor.componentType === 5123) {
data = new Uint16Array(slicedBuffer);
}
switch (attribute) {
case "POSITION": mesh.vertices = data;
mesh.verticesAccessor = accessor;
break;
case "NORMAL": mesh.normals = data;
mesh.normalsAccessor = accessor;
break;
case "TANGENT": mesh.tangents = data;
mesh.tangentsAccessor = accessor;
break;
case "TEXCOORD_0": mesh.texcoords = data;
mesh.texcoordsAccessor = accessor;
break;
case "INDEX": mesh.indices = data;
mesh.indicesAccessor = accessor;
break;
default:
console.warn('Unknown attribute semantic: ' + attribute);
}
mesh.accessorsLoading--;
if (mesh.accessorsLoading === 0) {
mesh.initBuffers(gl, gltf);
}
};
var assets = mesh.scene.assets;
var assetUrl = modelPath + bin;
var promise;
if (assets.hasOwnProperty(assetUrl)) {
// We already requested this, and a promise already exists.
promise = assets[assetUrl];
} else {
// We didn't request this yet, create a promise for it.
var deferred = $.Deferred();
assets[assetUrl] = deferred;
promise = deferred.promise();
var oReq = new XMLHttpRequest();
oReq.open("GET", assetUrl, true);
oReq.responseType = "blob";
oReq.onload = function(e) {
deferred.resolve(oReq.response);
};
oReq.send();
}
// This will fire when the promise is resolved, or immediately if the promise has previously resolved.
promise.then(function(blob) {
reader.readAsArrayBuffer(blob);
});
}
applyState(gl, globalState) {
var program = this.program;
var localState = this.localState;
gl.useProgram(program);
var applyUniform = function(u, uniformName) {
if (!defined(localState.uniformLocations[uniformName])) {
localState.uniformLocations[uniformName] = gl.getUniformLocation(program, uniformName);
}
if (u.funcName && defined(localState.uniformLocations[uniformName]) && u.vals) {
gl[u.funcName](localState.uniformLocations[uniformName], ...u.vals);
}
};
for (let uniform in globalState.uniforms) {
applyUniform(globalState.uniforms[uniform], uniform);
}
for (let uniform in localState.uniforms) {
applyUniform(localState.uniforms[uniform], uniform);
}
for (var attrib in localState.attributes) {
var a = localState.attributes[attrib];
for (var cmd in a.cmds) {
var c = a.cmds[cmd];
gl[c.funcName](...c.vals);
}
}
}
disableState(gl) {
var localState = this.localState;
for (var attrib in localState.attributes) {
// do something.
gl.disableVertexAttribArray(localState.attributes[attrib].a_attribute);
}
}
}