forked from KhronosGroup/glTF-Sample-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
491 lines (420 loc) · 16.6 KB
/
main.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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
function loadCubeMap(gl, envMap, type, state) {
var texture = gl.createTexture();
var textureNumber = -1;
var activeTextureEnum = gl.TEXTURE0;
var mipLevels = 0;
var uniformName = 'u_EnvSampler';
if (type === "diffuse") {
uniformName = 'u_DiffuseEnvSampler';
activeTextureEnum = gl.TEXTURE1;
textureNumber = 1;
mipLevels = 1;
}
else if (type === "specular") {
uniformName = 'u_SpecularEnvSampler';
activeTextureEnum = gl.TEXTURE2;
textureNumber = 2;
mipLevels = 10;
}
else if (type === "environment") {
uniformName = 'u_EnvSampler';
activeTextureEnum = gl.TEXTURE0;
textureNumber = 0;
mipLevels = 1;
}
else {
var error = document.getElementById('error');
error.innerHTML += 'Invalid type of cubemap loaded<br>';
return -1;
}
gl.activeTexture(activeTextureEnum);
gl.bindTexture(gl.TEXTURE_CUBE_MAP, texture);
gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
if (mipLevels < 2) {
gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
}
else {
gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, gl.LINEAR_MIPMAP_LINEAR);
gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
}
var path = "textures/" + envMap + "/" + type + "/" + type;
function onLoadEnvironmentImage(texture, face, image, j) {
return function() {
gl.activeTexture(activeTextureEnum);
gl.bindTexture(gl.TEXTURE_CUBE_MAP, texture);
gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, false);
// todo: should this be srgb? or rgba? what's the HDR scale on this?
gl.texImage2D(face, j, state.sRGBifAvailable, state.sRGBifAvailable, gl.UNSIGNED_BYTE, image);
};
}
for (var j = 0; j < mipLevels; j++) {
var faces = [[path + "_right_" + j + ".jpg", gl.TEXTURE_CUBE_MAP_POSITIVE_X],
[path + "_left_" + j + ".jpg", gl.TEXTURE_CUBE_MAP_NEGATIVE_X],
[path + "_top_" + j + ".jpg", gl.TEXTURE_CUBE_MAP_POSITIVE_Y],
[path + "_bottom_" + j + ".jpg", gl.TEXTURE_CUBE_MAP_NEGATIVE_Y],
[path + "_front_" + j + ".jpg", gl.TEXTURE_CUBE_MAP_POSITIVE_Z],
[path + "_back_" + j + ".jpg", gl.TEXTURE_CUBE_MAP_NEGATIVE_Z]];
for (var i = 0; i < faces.length; i++) {
var face = faces[i][1];
var image = new Image();
image.onload = onLoadEnvironmentImage(texture, face, image, j);
image.src = faces[i][0];
}
}
state.uniforms[uniformName] = { 'funcName': 'uniform1i', 'vals': [textureNumber] };
return 1;
}
// Update model from dat.gui change
function updateModel(value, gl, glState, viewMatrix, projectionMatrix, backBuffer, frontBuffer) {
var error = document.getElementById('error');
glState.scene = null;
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
var canvas2d = document.getElementById('canvas2d');
frontBuffer.clearRect(0, 0, canvas2d.width, canvas2d.height);
document.getElementById('loadSpinner').style.display = 'block';
resetCamera();
$.ajax({
url: 'models/' + value + '/glTF/' + value + '.gltf',
dataType: 'json',
async: true,
error: (jqXhr, textStatus, errorThrown) => {
error.innerHTML += 'Failed to load model: ' + errorThrown + '<br>';
},
success: function(gltf) {
var scene = new Scene(gl, glState, "./models/" + value + "/glTF/", gltf);
scene.projectionMatrix = projectionMatrix;
scene.viewMatrix = viewMatrix;
scene.backBuffer = backBuffer;
scene.frontBuffer = frontBuffer;
glState.scene = scene;
}
});
}
function main() {
var error = document.getElementById('error');
var vertDeferred = $.ajax({
url: './shaders/pbr-vert.glsl',
dataType: 'text',
async: true,
error: (jqXhr, textStatus, errorThrown) => {
error.innerHTML += 'Failed to load the vertex shader: ' + errorThrown + '<br>';
}
});
var fragDeferred = $.ajax({
url: './shaders/pbr-frag.glsl',
dataType: 'text',
async: true,
error: (jqXhr, textStatus, errorThrown) => {
error.innerHTML += 'Failed to load the fragment shader: ' + errorThrown + '<br>';
}
});
$.when(vertDeferred, fragDeferred).then((vertSource, fragSource) => {
init(vertSource[0], fragSource[0]);
});
}
function init(vertSource, fragSource) {
var canvas = document.getElementById('canvas');
var canvas2d = document.getElementById('canvas2d');
var error = document.getElementById('error');
if (!canvas) {
error.innerHTML += 'Failed to retrieve the canvas element<br>';
return;
}
var canvasWidth = -1;
var canvasHeight = -1;
canvas.hidden = true;
var gl = canvas.getContext("webgl", {}) || canvas.getContext("experimental-webgl", {});
if (!gl) {
error.innerHTML += 'Failed to get the rendering context for WebGL<br>';
return;
}
var ctx2d = canvas2d.getContext("2d");
var hasSRGBExt = gl.getExtension('EXT_SRGB');
glState = {
uniforms: {},
attributes: {},
vertSource: vertSource,
fragSource: fragSource,
scene: null,
hasLODExtension:gl.getExtension('EXT_shader_texture_lod'),
hasDerivativesExtension:gl.getExtension('OES_standard_derivatives'),
sRGBifAvailable: (hasSRGBExt ? hasSRGBExt.SRGB_EXT : gl.RGBA),
lightingModel: 'glTF PBR'
};
var projectionMatrix = mat4.create();
function resizeCanvasIfNeeded() {
var width = Math.max(1, window.innerWidth);
var height = Math.max(1, window.innerHeight);
if (width !== canvasWidth || height !== canvasHeight) {
canvas.width = canvas2d.width = canvasWidth = width;
canvas.height = canvas2d.height = canvasHeight = height;
gl.viewport(0, 0, width, height);
mat4.perspective(projectionMatrix, 45.0 * Math.PI / 180.0, width / height, 0.01, 100.0);
}
}
// Create cube maps
var envMap = "papermill";
//loadCubeMap(gl, envMap, "environment");
loadCubeMap(gl, envMap, "diffuse", glState);
loadCubeMap(gl, envMap, "specular", glState);
// Get location of mvp matrix uniform
glState.uniforms['u_MVPMatrix'] = { 'funcName': 'uniformMatrix4fv' };
// Get location of normal matrix uniform
glState.uniforms['u_ModelMatrix'] = { 'funcName': 'uniformMatrix4fv' };
// Light
glState.uniforms['u_LightDirection'] = { 'funcName': 'uniform3f', 'vals': [0.0, 0.5, 0.5] };
glState.uniforms['u_LightColor'] = { 'funcName': 'uniform3f', 'vals': [1.0, 1.0, 1.0] };
glState.uniforms['u_AmbientLightColor'] = { 'funcName': 'uniform3f', 'vals':[0.0,0.0,0.0] };
// Camera
glState.uniforms['u_Camera'] = { 'funcName': 'uniform3f', vals: [0.0, 0.0, -4.0] };
// Model matrix
var modelMatrix = mat4.create();
// View matrix
var viewMatrix = mat4.create();
var eye = vec3.fromValues(0.0, 0.0, 4.0);
var at = vec3.fromValues(0.0, 0.0, 0.0);
var up = vec3.fromValues(0.0, 1.0, 0.0);
mat4.lookAt(viewMatrix, eye, at, up);
// get scaling stuff
glState.uniforms['u_ScaleDiffBaseMR'] = { 'funcName': 'uniform4f', vals: [0.0, 0.0, 0.0, 0.0] };
glState.uniforms['u_ScaleFGDSpec'] = { 'funcName': 'uniform4f', vals: [0.0, 0.0, 0.0, 0.0] };
glState.uniforms['u_ScaleIBLAmbient'] = { 'funcName': 'uniform4f', vals: [1.0, 1.0, 1.0, 1.0] };
// Load scene
var defaultModelName = 'DamagedHelmet';
updateModel(defaultModelName, gl, glState, viewMatrix, projectionMatrix, canvas, ctx2d);
// Set clear color
gl.clearColor(0.2, 0.2, 0.2, 1.0);
// Enable depth test
gl.enable(gl.DEPTH_TEST);
var redrawQueued = false;
var redraw = function() {
if (!redrawQueued) {
redrawQueued = true;
window.requestAnimationFrame(function() {
redrawQueued = false;
resizeCanvasIfNeeded();
var scene = glState.scene;
if (scene) {
scene.drawScene(gl);
}
});
}
};
// Set control callbacks
canvas2d.onmousedown = function(ev) { handleMouseDown(ev); };
document.onmouseup = function(ev) { handleMouseUp(ev); };
document.onmousemove = function(ev) { handleMouseMove(ev, redraw); };
document.onwheel = function(ev) { handleWheel(ev, redraw); };
// Initialize GUI
var gui = new dat.GUI();
var folder = gui.addFolder("Scene Setup");
var text = { Model: defaultModelName };
folder.add(text, 'Model', ['MetalRoughSpheres', 'AppleTree', 'Avocado', 'BarramundiFish', 'BoomBox', 'Corset', 'DamagedHelmet', 'FarmLandDiorama', 'NormalTangentTest', 'Telephone', 'TextureSettingsTest', 'Triangle', 'WaterBottle']).onChange(function(value) {
updateModel(value, gl, glState, viewMatrix, projectionMatrix, canvas, ctx2d);
});
folder.open();
var light = gui.addFolder("Lighting");
var lightProps = { lightColor: [255, 255, 255], lightScale: 1.0, lightRotation: 75, lightPitch: 40, ambientColor: [255,255,255], ambientScale: 0.0, IBLScale: 1.0};
var updateLight = function(value) {
glState.uniforms['u_LightColor'].vals = [lightProps.lightScale * lightProps.lightColor[0] / 255,
lightProps.lightScale * lightProps.lightColor[1] / 255,
lightProps.lightScale * lightProps.lightColor[2] / 255];
var rot = lightProps.lightRotation * Math.PI / 180;
var pitch = lightProps.lightPitch * Math.PI / 180;
glState.uniforms['u_LightDirection'].vals = [Math.sin(rot) * Math.cos(pitch),
Math.sin(pitch),
Math.cos(rot) * Math.cos(pitch)];
glState.uniforms['u_AmbientLightColor'].vals = [lightProps.ambientScale * lightProps.ambientColor[0] / 255,
lightProps.ambientScale * lightProps.ambientColor[1] / 255,
lightProps.ambientScale * lightProps.ambientColor[2] / 255];
redraw();
};
light.addColor(lightProps, "lightColor").onChange(updateLight);
light.add(lightProps, "lightScale", 0, 10).onChange(updateLight);
light.add(lightProps, "lightRotation", 0, 360).onChange(updateLight);
light.add(lightProps, "lightPitch", -90, 90).onChange(updateLight);
light.addColor(lightProps, "ambientColor").onChange(updateLight);
light.add(lightProps, "ambientScale", 0, 1).onChange(updateLight);
light.open();
updateLight();
//mouseover scaling
var scaleVals = {};
var updateMathScales = function(v) {
var el = scaleVals.pinnedElement ? scaleVals.pinnedElement : scaleVals.activeElement;
var elId = el ? el.attr('id') : null;
glState.uniforms['u_ScaleDiffBaseMR'].vals = [elId == "mathDiff" ? 1.0 : 0.0, elId == "baseColor" ? 1.0 : 0.0, elId == "metallic" ? 1.0 : 0.0, elId == "roughness" ? 1.0 : 0.0];
glState.uniforms['u_ScaleFGDSpec'].vals = [elId == "mathF" ? 1.0 : 0.0, elId == "mathG" ? 1.0 : 0.0, elId == "mathD" ? 1.0 : 0.0, elId == "mathSpec" ? 1.0 : 0.0];
glState.uniforms['u_ScaleIBLAmbient'].vals = [lightProps.IBLScale, lightProps.IBLScale, 0.0, 0.0];
redraw();
};
gui.add(lightProps, "IBLScale", 0, 4).onChange(updateMathScales);
folder.add({lightingTechnique: glState.lightingModel}, 'lightingTechnique', ['glTF PBR', 'BlinnPhong', 'Lambert', 'Unlit']).onChange(function(value) {
glState.lightingModel = value;
// Iterate over all controllers
for (var i in gui.__controllers) {
gui.__controllers[i].updateDisplay();
}
updateMathScales();
updateLight();
updateModel(text.Model, gl, glState, viewMatrix, projectionMatrix, canvas, ctx2d);
});
var setActiveComponent = function(el) {
if (scaleVals.activeElement) {
scaleVals.activeElement.removeClass("activeComponent");
}
if (el && !scaleVals.pinnedElement) {
el.addClass("activeComponent");
}
scaleVals.activeElement = el;
if (!scaleVals.pinnedElement) {
updateMathScales();
}
};
var setPinnedComponent = function(el) {
if (scaleVals.activeElement) {
if (el) {
scaleVals.activeElement.removeClass("activeComponent");
}
else {
scaleVals.activeElement.addClass("activeComponent");
}
}
if (scaleVals.pinnedElement) {
scaleVals.pinnedElement.removeClass("pinnedComponent");
}
if (el) {
el.addClass("pinnedComponent");
}
scaleVals.pinnedElement = el;
updateMathScales();
};
var createMouseOverScale = function() {
var localArgs = arguments;
var el = $(localArgs[0]);
el.hover(
function(ev) {
setActiveComponent(el);
},
function(ev) {
setActiveComponent(null);
});
el.click(
function(ev) {
if (scaleVals.pinnedElement) {
setPinnedComponent(null);
}
else {
setPinnedComponent(el);
}
ev.stopPropagation();
}
);
};
createMouseOverScale('#mathDiff', 'diff');
createMouseOverScale('#mathSpec', 'spec');
createMouseOverScale('#mathF', 'F');
createMouseOverScale('#mathG', 'G');
createMouseOverScale('#mathD', 'D');
createMouseOverScale("#baseColor", "baseColor");
createMouseOverScale("#metallic", "metallic");
createMouseOverScale("#roughness", "roughness");
$("#pbrMath").click(function(ev) {
if (scaleVals.pinned && scaleVals.pinnedElement) {
$(scaleVals.pinnedElement).removeClass("pinnedComponent");
}
scaleVals.pinned = false;
});
updateMathScales();
function format255(p) {
var str = p.toString();
return ' '.repeat(3).substring(str.length) + str;
}
// picker
var pixelPickerText = document.getElementById('pixelPickerText');
var pixelPickerColor = document.getElementById('pixelPickerColor');
var pixelPickerPos = { x: 0, y: 0 };
var pixelPickerScheduled = false;
function sample2D() {
pixelPickerScheduled = false;
var x = pixelPickerPos.x;
var y = pixelPickerPos.y;
var p = ctx2d.getImageData(x, y, 1, 1).data;
pixelPickerText.innerHTML =
"r: " + format255(p[0]) + " g: " + format255(p[1]) + " b: " + format255(p[2]) +
"<br>r: " + (p[0] / 255).toFixed(2) + " g: " + (p[1] / 255).toFixed(2) + " b: " + (p[2] / 255).toFixed(2);
pixelPickerColor.style.backgroundColor = 'rgb(' + p[0] + ',' + p[1] + ',' + p[2] + ')';
}
$(canvas2d).mousemove(function(e) {
var pos = $(canvas2d).position();
pixelPickerPos.x = e.pageX - pos.left;
pixelPickerPos.y = e.pageY - pos.top;
if (!pixelPickerScheduled) {
pixelPickerScheduled = true;
window.requestAnimationFrame(sample2D);
}
});
// Redraw the scene after window size changes.
$(window).resize(redraw);
var tick = function() {
animate(roll);
redraw();
requestAnimationFrame(tick);
};
// Uncomment for turntable
//tick();
}
// ***** Mouse Controls ***** //
var mouseDown;
var roll;
var pitch;
var translate;
var lastMouseX = null;
var lastMouseY = null;
function resetCamera() {
roll = Math.PI;
pitch = 0.0;
translate = 4.0;
mouseDown = false;
}
function handleMouseDown(ev) {
mouseDown = true;
lastMouseX = ev.clientX;
lastMouseY = ev.clientY;
}
function handleMouseUp(ev) {
mouseDown = false;
}
function handleMouseMove(ev, redraw) {
if (!mouseDown) {
return;
}
var newX = ev.clientX;
var newY = ev.clientY;
var deltaX = newX - lastMouseX;
roll += (deltaX / 100.0);
var deltaY = newY - lastMouseY;
pitch += (deltaY / 100.0);
lastMouseX = newX;
lastMouseY = newY;
redraw();
}
var wheelSpeed = 1.04;
function handleWheel(ev, redraw) {
ev.preventDefault();
if (ev.deltaY > 0) {
translate *= wheelSpeed;
}
else {
translate /= wheelSpeed;
}
redraw();
}
var prev = Date.now();
function animate(angle) {
var curr = Date.now();
var elapsed = curr - prev;
prev = curr;
roll = angle + ((Math.PI / 4.0) * elapsed) / 1000.0;
}