forked from WonderlandEngine/emscripten-webxr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary_webxr_webgpu.js
468 lines (378 loc) · 15.5 KB
/
library_webxr_webgpu.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
var LibraryWebXR = {
$WebXR: {
refSpaces: {},
_curRAF: null,
// WebXR/WebGPU interop globals.
xrGpuBinding: null,
projectionLayer: null,
gpuDevice: null,
WEBXR_ERR_WEBXR_UNSUPPORTED: -2,
WEBXR_ERR_WEBGPU_UNSUPPORTED: -3,
WEBXR_ERR_XRGPU_BINDING_UNSUPPORTED: -4,
WEBXR_ERR_IMMERSIVE_XR_UNSUPPORTED: -5,
_nativize_vec3: function(offset, vec) {
setValue(offset + 0, vec.x, 'float');
setValue(offset + 4, vec.y, 'float');
setValue(offset + 8, vec.z, 'float');
return offset + 12;
},
_nativize_vec4: function(offset, vec) {
WebXR._nativize_vec3(offset, vec);
setValue(offset + 12, vec.w, 'float');
return offset + 16;
},
_nativize_matrix: function(offset, mat) {
for (var i = 0; i < 16; ++i) {
setValue(offset + i*4, mat[i], 'float');
}
return offset + 16*4;
},
_nativize_rigid_transform: function(offset, t) {
offset = WebXR._nativize_matrix(offset, t.inverse.matrix);
offset = WebXR._nativize_vec3(offset, t.position);
offset = WebXR._nativize_vec4(offset, t.orientation);
return offset;
},
/* Sets input source values to offset and returns pointer after struct */
_nativize_input_source: function(offset, inputSource, id) {
var handedness = -1;
if(inputSource.handedness == "left") handedness = 0;
else if(inputSource.handedness == "right") handedness = 1;
var targetRayMode = 0;
if(inputSource.targetRayMode == "tracked-pointer") targetRayMode = 1;
else if(inputSource.targetRayMode == "screen") targetRayMode = 2;
setValue(offset, id, 'i32');
offset +=4;
setValue(offset, handedness, 'i32');
offset +=4;
setValue(offset, targetRayMode, 'i32');
offset +=4;
return offset;
},
_set_input_callback__deps: ['$dynCall'],
_set_input_callback: function(event, callback, userData) {
var s = Module['webxr_session'];
if(!s) return;
if(!callback) return;
s.addEventListener(event, function(e) {
/* Nativize input source */
var inputSource = Module._malloc(8); /* 2*sizeof(int32) */
WebXR._nativize_input_source(inputSource, e.inputSource, i);
/* Call native callback */
dynCall('vii', callback, [inputSource, userData]);
_free(inputSource);
});
},
_set_session_callback__deps: ['$dynCall'],
_set_session_callback: function(event, callback, userData) {
var s = Module['webxr_session'];
if(!s) return;
if(!callback) return;
s.addEventListener(event, function() {
dynCall('vi', callback, [userData]);
});
},
_print_error: function(error, error_code, on_error) {
console.error( error );
/* Call error callback */
on_error(error_code);
// const msg = document.createElement("div");
// Object.assign( msg.style, {
// width: "50%",
// fontSize: "36px",
// fontWeight: "500",
// textAlign: "center",
// margin: "0 auto",
// marginTop: "25%"
// } );
// msg.innerText = error;
// document.body.appendChild(msg);
}
},
webxr_set_device: async function(gpuDevice) {
WebXR.gpuDevice = WebGPU.getJsObject(gpuDevice);
},
webxr_init__deps: ['$dynCall'],
webxr_init: async function(frameCallback, initWebXRCallback, startSessionCallback, endSessionCallback, errorCallback, userData) {
function onInitWebXR() {
if(!initWebXRCallback) return;
dynCall('vi', initWebXRCallback, [userData]);
};
function onError(errorCode) {
if(!errorCallback) return;
dynCall('vii', errorCallback, [userData, errorCode]);
};
function onSessionEnd(mode) {
if(!endSessionCallback) return;
mode = {'inline': 0, 'immersive-vr': 1, 'immersive-ar': 2}[mode];
dynCall('vii', endSessionCallback, [userData, mode]);
};
function onSessionStart(mode) {
if(!startSessionCallback) return;
mode = {'inline': 0, 'immersive-vr': 1, 'immersive-ar': 2}[mode];
dynCall('vii', startSessionCallback, [userData, mode]);
};
const SIZE_OF_WEBXR_VIEW = (16 + 3 + 4 + 16 + 4)*4;
const views = Module._malloc(SIZE_OF_WEBXR_VIEW*2 + (16 + 4 + 3)*4);
let texture_views = [];
function onFrame(time, frame) {
if(!frameCallback) return;
/* Request next frame */
const session = frame.session;
/* RAF is set to null on session end to avoid rendering */
if(Module['webxr_session'] != null) session.requestAnimationFrame(onFrame);
// 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.
const pose = frame.getViewerPose(WebXR.refSpace);
if(!pose) return;
pose.views.forEach(function(view) {
let subImage = WebXR.xrGpuBinding.getViewSubImage(WebXR.projectionLayer, view);
let viewport = subImage.viewport;
let idx = (view.eye == 'right' ? 1 : 0)
let texture_view = subImage.colorTexture.createView(subImage.getViewDescriptor())
texture_views[idx] = WebGPU.importJsTextureView(texture_view)
let offset = views + SIZE_OF_WEBXR_VIEW*idx;
offset = WebXR._nativize_rigid_transform(offset, view.transform);
offset = WebXR._nativize_matrix(offset, view.projectionMatrix);
setValue(offset + 0, viewport.x, 'i32');
setValue(offset + 4, viewport.y, 'i32');
setValue(offset + 8, viewport.width, 'i32');
setValue(offset + 12, viewport.height, 'i32');
});
/* Model matrix */
const modelMatrix = views + SIZE_OF_WEBXR_VIEW*2;
WebXR._nativize_matrix(modelMatrix, pose.transform.matrix);
/* Set and reset environment for webxr_get_input_pose calls */
Module['webxr_frame'] = frame;
dynCall('viiiiiii', frameCallback, [userData, time, modelMatrix, views, texture_views[0], texture_views[1], pose.views.length]);
Module['webxr_frame'] = null;
};
async function onSessionStarted(session, mode) {
Module['webxr_session'] = 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', async function() {
Module['webxr_session'].cancelAnimationFrame(WebXR._curRAF);
Module['webxr_session'] = null;
WebXR._curRAF = null;
WebXR.xrGpuBinding = null;
onSessionEnd(mode);
});
if (!WebXR.gpuDevice) {
console.error("No GPU Device, please call webxr_set_device(device).");
}
// Create the WebXR/WebGPU binding, and with it create a projection layer to render to.
WebXR.xrGpuBinding = new XRGPUBinding(session, WebXR.gpuDevice);
const colorFormat = navigator.gpu.getPreferredCanvasFormat();
WebXR.projectionLayer = WebXR.xrGpuBinding.createProjectionLayer({
colorFormat
});
// Set the session's layers to display the projection layer. This allows
// any content rendered to the layer to be displayed on the XR device.
session.updateRenderState({ layers: [WebXR.projectionLayer], depthNear: 1000.0, depthFar: 0.01 });
// Get a reference space, which is required for querying poses. In this
// case an 'local' reference space means that all poses will be relative
// to the location where the XR device was first detected.
session.requestReferenceSpace('local').then((refSpace) => {
// WebXR.refSpaces['local'] = refSpace;
WebXR.refSpace = refSpace;
// Give application a chance to react to session starting
// e.g. finish current desktop frame.
onSessionStart(mode);
// Inform the session that we're ready to begin drawing.
session.requestAnimationFrame(onFrame);
});
// /* Request and cache other available spaces, which may not be available */
// for(const s of ['viewer', 'local-floor', 'bounded-floor', 'unbounded']) {
// session.requestReferenceSpace(s).then(refSpace => {
// /* We prefer the reference space automatically in above order */
// WebXR.refSpace = s;
// WebXR.refSpaces[s] = refSpace;
// }, function() { /* Leave refSpaces[s] unset. */ })
// }
};
let xrButton = document.getElementById('xr-button');
if (!navigator.xr) {
const error_msg = "WebXR is not supported by your browser.";
xrButton.textContent = error_msg;
WebXR._print_error(error_msg, WebXR.WEBXR_ERR_API_UNSUPPORTED, onError);
return;
}
// If there's not WebGPU it won't load the engine, so this is unnecessary..
if (!navigator.gpu) {
const error_msg = "WebGPU is not supported by your browser.";
xrButton.textContent = error_msg;
WebXR._print_error(error_msg, WebXR.WEBXR_ERR_WEBGPU_UNSUPPORTED, onError);
return;
}
if (!('XRGPUBinding' in window)) {
const error_msg = "WebXR/WebGPU interop is not supported by your browser.";
xrButton.textContent = error_msg;
WebXR._print_error(error_msg, WebXR.WEBXR_ERR_XRGPU_BINDING_UNSUPPORTED, onError);
return;
}
// If the UA allows creation of immersive VR sessions enable the
// target of the 'Enter XR' button.
const supported = await navigator.xr.isSessionSupported('immersive-vr');
if (!supported) {
const error_msg = "Immersive VR not supported.";
xrButton.textContent = error_msg;
WebXR._print_error(error_msg, WebXR.WEBXR_ERR_IMMERSIVE_XR_UNSUPPORTED, onError);
return;
}
// Reaching this means it's all supported!
xrButton.addEventListener('click', function() {
Module["webxr_request_session_func"]('immersive-vr', ['webgpu'])
});
xrButton.textContent = 'Enter VR';
xrButton.disabled = false;
Module['webxr_request_session_func'] = function(mode, requiredFeatures, optionalFeatures) {
if(typeof(mode) !== 'string') {
mode = (['inline', 'immersive-vr', 'immersive-ar'])[mode];
}
let toFeatureList = function(bitMask) {
const f = [];
const features = ['local', 'local-floor', 'bounded-floor', 'unbounded', 'hit-test', 'webgpu'];
for(let i = 0; i < features.length; ++i) {
if((bitMask & (1 << i)) != 0) {
f.push(features[i]);
}
}
return f;
};
if(typeof(requiredFeatures) === 'number') {
requiredFeatures = toFeatureList(requiredFeatures);
}
if(typeof(optionalFeatures) === 'number') {
optionalFeatures = toFeatureList(optionalFeatures);
}
navigator.xr.requestSession(mode, {
requiredFeatures: requiredFeatures,
optionalFeatures: optionalFeatures
}).then(function(s) {
onSessionStarted(s, mode);
}).catch(console.error);
};
onInitWebXR();
},
webxr_is_session_supported__deps: ['$dynCall'],
webxr_is_session_supported: function(mode, callback) {
if (!navigator.xr || !navigator.gpu || !('XRGPUBinding' in window) ) {
dynCall('vii', callback, [mode, 0]);
return;
}
navigator.xr.isSessionSupported((['inline', 'immersive-vr', 'immersive-ar'])[mode]).then(function() {
dynCall('vii', callback, [mode, 1]);
}, function() {
dynCall('vii', callback, [mode, 0]);
});
},
webxr_request_session: function(mode, requiredFeatures) {
var s = Module['webxr_request_session_func'];
if(s) s(mode, requiredFeatures);
},
webxr_request_exit: function() {
var s = Module['webxr_session'];
if(s) Module['webxr_session'].end();
},
webxr_set_projection_params: function(near, far) {
var s = Module['webxr_session'];
if(!s) return;
s.depthNear = near;
s.depthFar = far;
},
webxr_set_session_blur_callback: function(callback, userData) {
WebXR._set_session_callback("blur", callback, userData);
},
webxr_set_session_focus_callback: function(callback, userData) {
WebXR._set_session_callback("focus", callback, userData);
},
webxr_set_select_callback: function(callback, userData) {
WebXR._set_input_callback("select", callback, userData);
},
webxr_set_select_start_callback: function(callback, userData) {
WebXR._set_input_callback("selectstart", callback, userData);
},
webxr_set_select_end_callback: function(callback, userData) {
WebXR._set_input_callback("selectend", callback, userData);
},
webxr_get_input_sources: function(outArrayPtr, max, outCountPtr) {
let s = Module['webxr_session'];
if(!s) return; // TODO(squareys) warning or return error
let i = 0;
for (let inputSource of s.inputSources) {
if(i >= max) break;
outArrayPtr = WebXR._nativize_input_source(outArrayPtr, inputSource, i);
++i;
}
setValue(outCountPtr, i, 'i32');
},
webxr_get_input_pose: function(source, outPosePtr, space) {
let f = Module['webxr_frame'];
if(!f) {
console.warn("Cannot call webxr_get_input_pose outside of frame callback");
return false;
}
const id = getValue(source, 'i32');
const input = Module['webxr_session'].inputSources[id];
if(!input) {
console.warn("No valid input with id: " + id);
return false;
}
const s = space == 0 ? input.gripSpace : input.targetRaySpace;
if(!s) return false;
const pose = f.getPose(s, WebXR.refSpace);
if(!pose || Number.isNaN(pose.transform.matrix[0])) return false;
WebXR._nativize_rigid_transform(outPosePtr, pose.transform);
return true;
},
webxr_get_input_button: function(source, buttonId, outButtonPtr) {
let f = Module['webxr_frame'];
if(!f) {
console.warn("Cannot call webxr_get_input_button outside of frame callback");
return false;
}
const id = getValue(source, 'i32');
const input = Module['webxr_session'].inputSources[id];
if(!input) {
console.warn("No valid input with id: " + id);
return false;
}
const button = input.gamepad.buttons[buttonId];
// nativize gamepad button
setValue(outButtonPtr, button.pressed ? 1 : 0, 'i32');
outButtonPtr +=4;
setValue(outButtonPtr, button.touched ? 1 : 0, 'i32');
outButtonPtr +=4;
setValue(outButtonPtr, button.value ?? 0.0, 'float');
outButtonPtr +=4;
return true;
},
webxr_get_input_axes: function(source, outAxesPtr) {
let f = Module['webxr_frame'];
if(!f) {
console.warn("Cannot call webxr_get_input_axes outside of frame callback");
return false;
}
const id = getValue(source, 'i32');
const hand = getValue(source + 4, 'i32');
const input = Module['webxr_session'].inputSources[id];
if(!input) {
console.warn("No valid input with id: " + id);
return false;
}
const axes = input.gamepad.axes;
const offset = (hand == 1 ? 2 : 0);
// nativize gamepad axis
for(let i = offset; i < offset + 2; ++i) {
setValue(outAxesPtr, axes[i], 'float');
outAxesPtr +=4;
}
return true;
},
};
autoAddDeps(LibraryWebXR, '$WebXR');
mergeInto(LibraryManager.library, LibraryWebXR);