-
Notifications
You must be signed in to change notification settings - Fork 6
/
equirect-video.html
530 lines (461 loc) · 20.7 KB
/
equirect-video.html
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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
<!doctype html>
<!--
Copyright 2018 The Immersive Web Community Group
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-->
<html>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1, user-scalable=no'>
<meta name='mobile-web-app-capable' content='yes'>
<meta name='apple-mobile-web-app-capable' content='yes'>
<link rel='icon' type='image/png' sizes='32x32' href='favicon-32x32.png'>
<link rel='icon' type='image/png' sizes='96x96' href='favicon-96x96.png'>
<link rel='stylesheet' href='css/common.css'>
<title>Barebones Video</title>
<script src="js/wglu/wglu-program.js"></script>
<script src="js/stereo-util.js"></script>
</head>
<body>
<header>
<details open>
<summary>Barebones Video</summary>
<p>
This sample shows a stereo video on an equirect layer with a cubemap background.
<a class="back" href="./">Back</a>
</p>
<label>Choose a video</label>
<select id="videoselect">
<option value="https://d25a56pc18k0co.cloudfront.net/sloths_binaural_3840_180_3D-injected.mp4">side-by-side 180
3840x1920 30fps</option>
<option value="https://d25a56pc18k0co.cloudfront.net/sloths_binaural_3840x2160_360_3D_v2_injected.mp4">3840x2160 360
30fps
<option value="https://oculus-mp4.s3.amazonaws.com/101_2700p.mp4">5400x2700 180
30fps
<option value="https://oculus-mp4.s3.amazonaws.com/fountain-3D-4k.mp4">4096x4096 360 side-by-side
</option>
</select>
<input type="checkbox" id="update_every_frame">Update every frm</input>
<br />
<input type="checkbox" id="backdrop" checked>Show backdrop layer</input>
<input type="number" id="radius_txt" value="0">Radius</input>
<br />
<input type="checkbox" id="lower_fps">60 fps</input>
<br />
<button id="xr-button" disabled>XR not found</button>
<p>Trigger = pause<br/>
Squeeze = show/hide controllers<br/>
A/X = forward 15 second<br/>
B/Y = back 15 second<br/>
Joystick = turn movie</p>
</details>
</header>
<main style='text-align: center;'>
<p>Click 'Enter VR' to see content</p>
</main>
<script type="module">
import { WebXRButton } from './js/util/webxr-button.js';
import { Scene, WebXRView } from './js/render/scenes/scene.js';
import { Renderer, createWebGLContext } from './js/render/core/renderer.js';
import { Node } from './js/render/core/node.js';
import { Gltf2Node } from './js/render/nodes/gltf2.js';
import { SkyboxNode } from './js/render/nodes/skybox.js';
import { BoxBuilder } from './js/render/geometry/box-builder.js';
import { PbrMaterial } from './js/render/materials/pbr.js';
import { mat4, vec3, quat } from './js/render/math/gl-matrix.js';
import { InlineViewerHelper } from './js/util/inline-viewer-helper.js';
import { QueryArgs } from './js/util/query-args.js';
'use strict';
//
// Initialize a texture and load an image.
// When the image finished loading copy it into the texture.
//
function loadTexture(gl, url, complete_callback) {
const texture = gl.createTexture();
loadIntoTexture(gl, texture, url, complete_callback);
return texture;
}
function isPowerOf2(value) {
return (value & (value - 1)) == 0;
}
function loadIntoTexture(gl, texture, url, complete_callback) {
gl.bindTexture(gl.TEXTURE_2D, texture);
// Because images have to be download over the internet
// they might take a moment until they are ready.
// Until then put a single pixel in the texture so we can
// use it immediately. When the image has finished downloading
// we'll update the texture with the contents of the image.
const level = 0;
const internalFormat = gl.RGBA;
const width = 1;
const height = 1;
const border = 0;
const srcFormat = gl.RGBA;
const srcType = gl.UNSIGNED_BYTE;
const pixel = new Uint8Array([0, 0, 255, 255]); // opaque blue
gl.texImage2D(gl.TEXTURE_2D, level, internalFormat,
width, height, border, srcFormat, srcType,
pixel);
const image = new Image();
image.onload = function () {
gl.bindTexture(gl.TEXTURE_2D, texture);
gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, true);
gl.texImage2D(gl.TEXTURE_2D, level, internalFormat,
srcFormat, srcType, image);
// WebGL1 has different requirements for power of 2 images
// vs non power of 2 images so check if the image is a
// power of 2 in both dimensions.
if (isPowerOf2(image.width) && isPowerOf2(image.height)) {
// Yes, it's a power of 2. Generate mips.
gl.generateMipmap(gl.TEXTURE_2D);
//?gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR_MIPMAP_LINEAR);
//?gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR_MIPMAP_LINEAR);
} else {
// No, it's not a power of 2. Turn of mips and set
// wrapping to clamp to edge
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
}
complete_callback(image.width, image.height);
};
image.src = url;
}
let backdrop = document.getElementById('backdrop');
let low_fps = document.getElementById('lower_fps');
// XR globals.
let xrButton = document.getElementById('xr-button');
let xrSession = null;
let xrRefSpace = null;
let xrGLFactory = null;
let xrFramebuffer = null;
let xrReadFramebuffer = null;
let videoTexture = null;
let backgroundTexture = null;
let updatevideo = false;
let stereoUtil = null;
let renderer = null;
let eqr_pos = { x: 0.0, y: 0.0, z: 0.0 };
let eqr_orient = { yaw: 0.0, pitch: 0.0, roll: 0.0 };
// WebGL scene globals.
let gl = null;
let cylinder_layer = false;
let equirectlayer = null;
let equirectlayerbackdrop = null;
let proj_layer = null;
let videoWidth = -1;
let videoHeight = -1;
let texture_copied = false;
let video = document.createElement('video');
video.loop = true;
video.crossOrigin = "anonymous";
video.preload = 'auto';
video.autoload = true;
const lastFrameButtonsByGamepad = new WeakMap();
function buttonPressedThisFrame(gamepad, lastFrameButtons, index) {
return (index < gamepad.buttons.length &&
gamepad.buttons[index].pressed &&
!lastFrameButtons[index]);
}
function videoSelect() {
let s = document.getElementById("videoselect");
video.src = s.options[s.selectedIndex].value;
// HACK
switch (s.selectedIndex) {
case 0: videoWidth = 3840; videoHeight = 1920; break;
case 1: videoWidth = 3840; videoHeight = 2160; break;
case 2: videoWidth = 5400; videoHeight = 2700; break;
case 3: videoWidth = 4096; videoHeight = 4096; break;
case 4: videoWidth = 2880; videoHeight = 2880; break;
case 5: videoWidth = 1920; videoHeight = 1920; break;
case 6: videoWidth = 3840; videoHeight = 3840; break;
case 7: videoWidth = 3840; videoHeight = 3840; break;
}
}
videoSelect();
document.getElementById("videoselect").addEventListener('change', (event) => {
xrButton.disabled = true;
videoSelect();
});
let scene = new Scene();
//scene.enableStats(false);
//scene.standingStats(true);
setInterval(function () {
if (video.readyState >= video.HAVE_CURRENT_DATA) {
updatevideo = true;
}
}, 1000 / 60);
// Checks to see if WebXR is available and, if so, requests an XRDevice
// that is connected to the system and tests it to ensure it supports the
// desired session options.
function initXR() {
// Is WebXR available on this UA?
if (navigator.xr) {
// If the device allows creation of exclusive sessions set it as the
// target of the 'Enter XR' button.
navigator.xr.isSessionSupported('immersive-vr').then((supported) => {
if (supported) {
// Updates the button to start an XR session when clicked.
xrButton.addEventListener('click', onButtonClicked);
xrButton.textContent = 'Enter XR';
xrButton.disabled = false;
}
});
}
}
// Called when the user clicks the button to enter XR. If we don't have a
// session we'll request one, and if we do have a session we'll end it.
function onButtonClicked() {
if (!xrSession) {
navigator.xr.requestSession('immersive-vr', { requiredFeatures: ['layers'], optionalFeatures: [low_fps.checked ? 'low-refresh-rate' : ''] }).then(onSessionStarted);
video.play();
} else {
xrSession.end();
}
}
function updateEqrTransform() {
const orient = quat.create();
quat.fromEuler(orient, eqr_orient.pitch, eqr_orient.yaw, eqr_orient.roll);
equirectlayer.transform = new XRRigidTransform(eqr_pos, { x: orient[0], y: orient[1], z: orient[2], w: orient[3] });
}
function ProcessGamepad(gamepad, hand, pose, session) {
if (equirectlayer != null) {
if ("axes" in gamepad && gamepad.axes.length >= 4) {
if (hand == "right") {
const tilt = gamepad.axes[3];
const rot = gamepad.axes[2];
// tilt
eqr_orient.pitch = tilt * 90;
eqr_orient.yaw = rot * 90;
updateEqrTransform();
} else if (hand == "left") {
const zoom = gamepad.axes[3];
const horizontal_shift = gamepad.axes[2];
// tilt
eqr_pos.x = horizontal_shift * 4;
eqr_pos.z = zoom * 3;
updateEqrTransform();
}
}
let lastFrameButtons = lastFrameButtonsByGamepad.get(gamepad);
if (!lastFrameButtons) {
lastFrameButtons = new Array(gamepad.buttons.length);
lastFrameButtons.fill(false);
lastFrameButtonsByGamepad.set(gamepad, lastFrameButtons);
}
// Toggle Play/Pause on primary button press
if (buttonPressedThisFrame(gamepad, lastFrameButtons, 0)) {
if (video.paused) {
video.play();
} else {
video.pause();
}
}
// hide projection layer
if (buttonPressedThisFrame(gamepad, lastFrameButtons, 1)) {
if (session.renderState.layers.length == 3) {
if (backdrop)
session.updateRenderState({ layers: [equirectlayerbackdrop, equirectlayer] });
else
session.updateRenderState({ layers: [equirectlayerbackdrop] });
} else {
if (backdrop)
session.updateRenderState({ layers: [equirectlayerbackdrop, equirectlayer, proj_layer] });
else
session.updateRenderState({ layers: [equirectlayer, proj_layer] });
}
}
// Fast forward 15s on A button press
if (buttonPressedThisFrame(gamepad, lastFrameButtons, 4)) {
video.currentTime += 15;
}
// Rewind 15s on B button press
if (buttonPressedThisFrame(gamepad, lastFrameButtons, 5)) {
video.currentTime -= 15;
}
for (let i = 0; i < gamepad.buttons.length; i++) {
lastFrameButtons[i] = gamepad.buttons[i].pressed;
}
}
}
// Called when we've successfully acquired a XRSession. In response we
// will set up the necessary session state and kick off the frame loop.
function onSessionStarted(session) {
xrSession = session;
xrButton.textContent = 'Exit VR';
scene.inputRenderer.useProfileControllerMeshes(session);
// Listen for the sessions 'end' event so we can respond if the user
// or UA ends the session for any reason.
session.addEventListener('end', onSessionEnded);
// Create a WebGL context to render with, initialized to be compatible
// with the XRDisplay we're presenting to.
let canvas = document.createElement('canvas');
gl = canvas.getContext('webgl2', { xrCompatible: true, webgl2: true });
xrFramebuffer = gl.createFramebuffer();
renderer = new Renderer(gl);
scene.setRenderer(renderer);
stereoUtil = new VRStereoUtil(gl);
xrFramebuffer = gl.createFramebuffer();
xrReadFramebuffer = gl.createFramebuffer();
//? videoTexture = gl.createTexture();
xrGLFactory = new XRWebGLBinding(session, gl);
try {
let s = "color formats:";
xrGLFactory.supportedColorFormats.forEach(item => {s += " " + item});
console.log(s);
s = "depth formats:";
xrGLFactory.supportedDepthStencilFormats.forEach(item => {s += " " + item});
console.log(s);
} catch(error) {
console.log("supportedColorFormats and supportedDepthStencilFormats not supported");
}
session.requestReferenceSpace('local').then((refSpace) => {
xrRefSpace = refSpace;
proj_layer = xrGLFactory.createProjectionLayer( { space: refSpace });
let sideBySide = video.src.includes("3840_180_3D") || video.src.includes("101_2700p");
equirectlayer = xrGLFactory.createEquirectLayer( {
space: refSpace,
viewPixelWidth: sideBySide ? videoWidth / 2 : videoWidth,
viewPixelHeight: sideBySide ? videoHeight : videoHeight / 2,
layout: sideBySide ? "stereo-left-right" : "stereo-top-bottom"
});
if (sideBySide) {
equirectlayer.centralHorizontalAngle = Math.PI;
equirectlayer.upperVerticalAngle = Math.PI / 2.0;
equirectlayer.lowerVerticalAngle = -Math.PI / 2.0;
}
equirectlayer.radius = document.getElementById("radius_txt").value;
if (backdrop.checked) {
backgroundTexture = loadTexture(gl, 'media/textures/mono_equirect_test.png', (w, h) => {
equirectlayerbackdrop = xrGLFactory.createEquirectLayer( {
space: refSpace,
viewPixelWidth: w,
viewPixelHeight: h,
layout: "mono"
});
equirectlayerbackdrop.centralHorizontalAngle = 2 * Math.PI;
equirectlayerbackdrop.upperVerticalAngle = Math.PI / 2.0;
equirectlayerbackdrop.lowerVerticalAngle = -Math.PI / 2.0;
equirectlayerbackdrop.radius = 0;
session.updateRenderState({ layers: [equirectlayerbackdrop, equirectlayer, proj_layer] });
});
}
session.updateRenderState({ layers: [equirectlayer, proj_layer] });
// Inform the session that we're ready to begin drawing.
session.requestAnimationFrame(onXRFrame);
});
}
// Called either when the user has explicitly ended the session by calling
// session.end() or when the UA has ended the session for any reason.
// At this point the session object is no longer usable and should be
// discarded.
function onSessionEnded(event) {
xrSession = null;
xrButton.textContent = 'Enter VR';
video.pause();
// In this simple case discard the WebGL context too, since we're not
// rendering anything else to the screen with it.
gl = null;
}
// Called every time the XRSession requests that a new frame be drawn.
function onXRFrame(time, frame) {
let session = frame.session;
// Inform the session that we're ready for the next frame.
session.requestAnimationFrame(onXRFrame);
// Get the XRDevice pose relative to the reference space we created
// earlier.
let pose = frame.getViewerPose(xrRefSpace);
// Getting the pose may fail if, for example, tracking is lost. So we
// have to check to make sure that we got a valid pose before attempting
// to render with it. If not in this case we'll just leave the
// framebuffer cleared, so tracking loss means the scene will simply
// disappear.
if (pose) {
let arraylength = session.renderState.layers.length;
if (equirectlayerbackdrop && (!texture_copied || equirectlayerbackdrop.needsRedraw)) {
texture_copied = true;
let fb = gl.createFramebuffer();
let glayer = xrGLFactory.getSubImage(equirectlayerbackdrop, frame);
const eqr_texture_width = equirectlayerbackdrop.textureWidth;
const eqr_texture_height = equirectlayerbackdrop.textureHeight;
gl.viewport(0, 0, eqr_texture_width, eqr_texture_height);
gl.bindFramebuffer(gl.DRAW_FRAMEBUFFER, fb);
gl.framebufferTexture2D(gl.DRAW_FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, glayer.colorTexture, 0);
gl.disable(gl.SCISSOR_TEST);
let xrReadFramebuffer = gl.createFramebuffer();
gl.bindFramebuffer(gl.READ_FRAMEBUFFER, xrReadFramebuffer);
gl.framebufferTexture2D(gl.READ_FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, backgroundTexture, 0);
gl.readBuffer(gl.COLOR_ATTACHMENT0);
gl.blitFramebuffer(0, 0, eqr_texture_width, eqr_texture_height,
0, 0, eqr_texture_width, eqr_texture_height, gl.COLOR_BUFFER_BIT, gl.NEAREST);
gl.bindFramebuffer(gl.READ_FRAMEBUFFER, null);
gl.bindFramebuffer(gl.DRAW_FRAMEBUFFER, null);
gl.deleteFramebuffer(fb);
gl.deleteFramebuffer(xrReadFramebuffer);
}
if (updatevideo || update_every_frame.checked || equirectlayer.needsRedraw) {
updatevideo = false;
// draw video
let glayer = xrGLFactory.getSubImage(equirectlayer, frame);
gl.bindTexture(gl.TEXTURE_2D, glayer.colorTexture);
gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, true);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
gl.texSubImage2D(gl.TEXTURE_2D, 0, 0, 0, videoWidth, videoHeight, gl.RGBA, gl.UNSIGNED_BYTE, video);
}
gl.bindFramebuffer(gl.FRAMEBUFFER, xrFramebuffer);
// We need to invalidate the color (and depth, just in case) here to avoid
// loading from the previously bound color texture. It will save some GPU time.
gl.invalidateFramebuffer(gl.FRAMEBUFFER, [gl.COLOR_ATTACHMENT0, gl.DEPTH_ATTACHMENT]);
let views = [];
if (session.renderState.layers.length == 3) {
for (let view of pose.views) {
let viewport = null;
let glLayer = xrGLFactory.getViewSubImage(proj_layer, view);
glLayer.framebuffer = xrFramebuffer;
viewport = glLayer.viewport;
gl.bindFramebuffer(gl.FRAMEBUFFER, xrFramebuffer);
gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, glLayer.colorTexture, 0);
gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.DEPTH_ATTACHMENT, gl.TEXTURE_2D, glLayer.depthStencilTexture, 0);
gl.enable(gl.SCISSOR_TEST);
gl.scissor(viewport.x, viewport.y, viewport.width, viewport.height);
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
gl.disable(gl.SCISSOR_TEST);
views.push(new WebXRView(view, glLayer, viewport));
}
}
// Check for and respond to any gamepad state changes.
for (let source of session.inputSources) {
if (source.gamepad) {
let pose = frame.getPose(source.gripSpace, xrRefSpace);
ProcessGamepad(source.gamepad, source.handedness, pose, session);
}
}
scene.updateInputSources(frame, equirectlayer.space);
scene.drawViewArray(views);
scene.endFrame();
}
}
// Start the XR application.
video.addEventListener('loadeddata', (event) => {
if (video.readyState >= 2) {
initXR();
}
});
</script>
</body>
</html>