-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvr.js
352 lines (318 loc) · 13.8 KB
/
vr.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
/* eslint-disable require-jsdoc*/
(function libraryWrapper(window) {
function defineLibrary() {
const VrLib = {};
const Vec3 = VemaLib.Vec3; // eslint-disable-line no-undef
const Matrix4 = VemaLib.Matrix4; // eslint-disable-line no-undef
VrLib.frameData = null;
if (navigator.getVRDisplays) {
VrLib.frameData = new VRFrameData(); // eslint-disable-line no-undef
}
let vrDisplay;
const btn = document.getElementById('stop-start'); // eslint-disable-line no-undef
VrLib.normalSceneFrame = null;
let vrSceneFrame;
const vrcontrollerIds = [];
const vrcontrollers = {};
let b0= false;
let b1= false;
let textnotset = true;
// let dices = null;
/*
VrLib.setDices = function setDices(d) {
dices = d;
};
*/
VrLib.getControllers = function getControllers() {
return vrcontrollers;
};
VrLib.getControllerIds = function getControllerIds() {
return vrcontrollerIds;
};
window.addEventListener('gamepadconnected', ((e) => {
// console.log('Gamepad ' + e.gamepad.index + ' connected.');
vrcontrollers[e.gamepad.index] = {
position: null,
radius: 0.05,
color: [1.0, 1.0, 1.0],
pressed: false,
touched: false,
touch: {
selectedparticle: null,
selecteddice: null,
distance: 2.0
},
index: e.gamepad.index,
dicebutton: false,
dice2button: false
};
let found = false;
for (let i = 0; i < vrcontrollerIds.length; i++) {
if (vrcontrollerIds[i] === e.gamepad.index) {
found = true;
}
}
if (!found) {
vrcontrollerIds.push(e.gamepad.index);
}
}));
/*
window.addEventListener('gamepaddisconnected', ((e) => {
//console.log('Gamepad ' + e.gamepad.index + ' disconnected.');
//setTimeout(removeGamepads, 1000);
}));
*/
function vrDown(controller) {
const cont = controller;
const pos = controller.position;
const ori = controller.orientation;
PlotterLib.setStartPosition(pos,ori);
/*
const dir = new Vec3(0, 0, -2.0);
const ma = new Matrix4();
ma.rotationQMatrix(ori);
const dist = ma.multipleV(dir);
const ve = [pos[0] + dist.f[0], pos[1] + dist.f[1], pos[2] + dist.f[2]];
const p2 = new Vec3(pos[0], pos[1], pos[2]);
const p1 = new Vec3(ve[0], ve[1], ve[2]);
const closest = null;
*/
/*
let d = 0.4 * WallLib.getWallX(); // eslint-disable-line no-undef
for (let j = 0; j < dices.length; j++) {
for (let i = 0; i < dices[j].particles.length; i++) {
const p = dices[j].particles[i];
const d1 = MSLib.distanceFromPointToLine(p1, p2, p.pos); // eslint-disable-line no-undef
if (d1 < d) {
closest = p;
d = d1;
cont.selecteddice = dices[j];
}
}
}
if (closest === null) return;
cont.selectedparticle = closest;
let u = p2.subtract(p1);
const v = p2.subtract(controller.selectedparticle.pos);
u = u.normalized();
const px = p2.subtract(u.multiple(u.dot(v)));
cont.distance = (px.subtract(p2)).length;
const diff = (px.subtract(p1)).length / (p2.subtract(p1)).length;
const p3 = new Vec3((p2.f[0] * diff) + (p1.f[0] * (1 - diff)),
(p2.f[1] * diff) + (p1.f[1] * (1 - diff)),
(p2.f[2] * diff) + (p1.f[2] * (1 - diff)));
cont.selectedparticle.sleep = false;
cont.selecteddice.setTouchPoint(p3, controller.selectedparticle, controller.index);
*/
}
function vrMove(controller) {
const pos = controller.position;
const ori = controller.orientation;
PlotterLib.setPosition(pos,ori);
/*
const cont = controller;
const pos = controller.position;
const ori = controller.orientation;
if (controller.selectedparticle === null) return;
const dir = new Vec3(0, 0, -2.0);
const ma = new Matrix4();
ma.rotationQMatrix(ori);
const dist = ma.multipleV(dir);
const v = [pos[0] + dist.f[0], pos[1] + dist.f[1], pos[2] + dist.f[2]];
const p2 = new Vec3(pos[0], pos[1], pos[2]);
const p1 = new Vec3(v[0], v[1], v[2]);
const diff = (controller.distance) / (p1.subtract(p2)).length;
const p3 = new Vec3((p1.f[0] * diff) + (p2.f[0] * (1 - diff)),
(p1.f[1] * diff) + (p2.f[1] * (1 - diff)),
(p1.f[2] * diff) + (p2.f[2] * (1 - diff)));
if (p3.f[0] > WallLib.getWallX()) { // eslint-disable-line no-undef
p3.f[0] = WallLib.getWallX(); // eslint-disable-line no-undef
}
if (p3.f[0] < -WallLib.getWallX()) { // eslint-disable-line no-undef
p3.f[0] = -WallLib.getWallX(); // eslint-disable-line no-undef
}
if (p3.f[2] > WallLib.getWallZ()) { // eslint-disable-line no-undef
p3.f[2] = WallLib.getWallZ(); // eslint-disable-line no-undef
}
if (p3.f[2] < -2 * WallLib.getWallZ()) { // eslint-disable-line no-undef
p3.f[2] = -2 * WallLib.getWallZ(); // eslint-disable-line no-undef
}
if (p3.f[1] < WallLib.getFloorHeight()) { // eslint-disable-line no-undef
p3.f[1] = WallLib.getFloorHeight(); // eslint-disable-line no-undef
}
if (p3.f[1] > -WallLib.getFloorHeight()) { // eslint-disable-line no-undef
p3.f[1] = -WallLib.getFloorHeight(); // eslint-disable-line no-undef
}
cont.selectedparticle.sleep = false;
controller.selecteddice.setTouchPoint(p3, controller.selectedparticle, controller.index);
*/
}
function vrUp(controller) {
const cont = controller;
PlotterLib.setEndPosition();
/*
if (controller.selectedparticle !== null) {
cont.selectedparticle = null;
controller.selecteddice.setTouchPoint(null, controller.selectedparticle, controller.index);
}
*/
}
VrLib.initVR = function initVR(canvas, runner, drawVRScene, gl, makeCamera, makeVRAdjustments) {
const can = canvas;
VrLib.drawVRScene = drawVRScene;
if (navigator.getVRDisplays && navigator.getGamepads) { // eslint-disable-line no-undef
console.log('WebVR 1.1 supported'); // eslint-disable-line no-console
// Then get the displays attached to the computer
navigator.getVRDisplays().then((displays) => { // eslint-disable-line no-undef
// If a display is available, use it to present the scene
if (displays.length > 0) {
vrDisplay = displays[0];
console.log('Display found'); // eslint-disable-line no-console
// Starting the presentation when the button is clicked:
// It can only be called in response to a user gesture
btn.addEventListener('click', () => {
if (btn.textContent === 'Start VR display') {
vrDisplay.requestPresent([{ source: canvas }]).then(() => {
console.log('Presenting to WebVR display'); // eslint-disable-line no-console
// Set the canvas size to the size of the vrDisplay viewport
const leftEye = vrDisplay.getEyeParameters('left');
const rightEye = vrDisplay.getEyeParameters('right');
can.width = Math.max(leftEye.renderWidth, rightEye.renderWidth) * 2;
can.height = Math.max(leftEye.renderHeight, rightEye.renderHeight);
// stop the normal presentation, and start the vr presentation
window.cancelAnimationFrame(VrLib.normalSceneFrame);
//vrDisplay.depthFar = -100000.0;
makeVRAdjustments();
drawVRScene();
btn.textContent = 'Exit VR display';
});
} else {
vrDisplay.exitPresent();
console.log('Stopped presenting to WebVR display'); // eslint-disable-line no-console
btn.textContent = 'Start VR display';
// Stop the VR presentation, and start the normal presentation
vrDisplay.cancelAnimationFrame(vrSceneFrame);
can.width = window.innerWidth;
can.height = window.innerHeight;
// aspectRatio = canvas.width / canvas.height;
gl.viewport(0, 0, canvas.width, canvas.height);
makeCamera();
runner();
}
});
}
});
} else {
console.log('WebVR API not supported by this browser.'); // eslint-disable-line no-console
}
};
/*
function reportDisplays() {
navigator.getVRDisplays().then(function(displays) {
console.log(displays.length + ' displays');
function reportGamepads() {
var gamepads = navigator.getGamepads();
console.log(gamepads.length + ' controllers');
for(var i = 0; i < gamepads.length; ++i) {
var gp = gamepads[i];
}
initialRun = false;
}
setTimeout(reportGamepads, 1000);
// For VR, controllers will only be active after their corresponding headset is active
});
}
*/
VrLib.drawScene = function drawScene() {
// WebVR: Request the next frame of the animation
vrSceneFrame = vrDisplay.requestAnimationFrame(VrLib.drawVRScene);
// Populate frameData with the data of the next frame to display
// if (VrLib.frameData) {
vrDisplay.getFrameData(VrLib.frameData);
// You can get the position, orientation, etc. of the display from the current frame's pose
const gamepads = navigator.getGamepads(); // eslint-disable-line no-undef
for (let i = 0; i < gamepads.length; i++) {
const gp = gamepads[i];
/*
if(gp && (textnotset || gp.buttons[0].pressed || gp.buttons[1].pressed)){
const p = document.getElementById('fillertext');
if(gp.buttons[0].pressed) b0 = true;
if(gp.buttons[1].pressed) b1 = true;
p.innerHTML = "Found gamepad axes "+gp.axes.length+" buttons "+gp.buttons.length+
((gp.pose)?"has pose":"no pose")+((gp.pose && gp.pose.orientation)?("has orientation "+gp.pose.orientation):" no orientation")+
" buttons pressed b0 "+b0+" b1 "+b1;
textnotset =false;
}
*/
if(gp && gp.pose && gp.pose.orientation && !gp.pose.position){
vrcontrollers[gp.index].position =(gp.pose.position)?
[gp.pose.position[0], gp.pose.position[1], gp.pose.position[2]]
:null;
vrcontrollers[gp.index].orientation = gp.pose.orientation;
if (vrcontrollers[gp.index].pressed === false && gp.buttons[1].pressed) {
vrDown(vrcontrollers[gp.index]);
} else if (vrcontrollers[gp.index].pressed === true && gp.buttons[1].pressed) {
vrMove(vrcontrollers[gp.index]);
} else if (vrcontrollers[gp.index].pressed === true && !gp.buttons[1].pressed) {
vrUp(vrcontrollers[gp.index]);
}
vrcontrollers[gp.index].pressed = gp.buttons[1].pressed;
}
if (gp && gp.pose && gp.pose.position) {
vrcontrollers[gp.index].position =
[gp.pose.position[0], gp.pose.position[1], gp.pose.position[2]];
vrcontrollers[gp.index].orientation = gp.pose.orientation;
if (gp.buttons[1].pressed) {
vrcontrollers[gp.index].color = [1.0, 0.0, 0.0];
} else if (gp.buttons[3].touched) {
vrcontrollers[gp.index].color = [0.0, 1.0, 0.0];
} else {
vrcontrollers[gp.index].color = [1.0, 1.0, 1.0];
}
if (vrcontrollers[gp.index].pressed === false && gp.buttons[1].pressed) {
vrDown(vrcontrollers[gp.index]);
} else if (vrcontrollers[gp.index].pressed === true && gp.buttons[1].pressed) {
vrMove(vrcontrollers[gp.index]);
} else if (vrcontrollers[gp.index].pressed === true && !gp.buttons[1].pressed) {
vrUp(vrcontrollers[gp.index]);
}
vrcontrollers[gp.index].pressed = gp.buttons[1].pressed;
}
if(gp && gp.axes && gp.axes[1] && gp.buttons[0].pressed){
const a = gp.axes[1];
PlotterLib.scale(a);
} else if (gp && gp.axes && gp.buttons[1].pressed) {
console.log("HERERERRERER");
PlotterLib.moveXY(gp.axes[0],gp.axes[1]);
} else if(gp && gp.axes) {
PlotterLib.move(gp.axes[0],gp.axes[1]);
}
/*
if (gp.buttons[2].pressed) {
DiceLib.reroll(); // eslint-disable-line no-undef
}
if (gp.buttons[3].pressed && vrcontrollers[gp.index].dicebutton === false) {
DiceLib.addDice(); // eslint-disable-line no-undef
}
vrcontrollers[gp.index].dicebutton = gp.buttons[3].pressed;
if (gp.buttons[0].pressed) {
DiceLib.clear(); // eslint-disable-line no-undef
}
if (gp.buttons[4].pressed && vrcontrollers[gp.index].dice2button === false) {
DiceLib.createRandomColorDice(); // eslint-disable-line no-undef
}
*/
//vrcontrollers[gp.index].dice2button = gp.buttons[4].pressed;
//}
}
// }
// return frameData;
};
VrLib.submitFrame = function submitFrame() {
vrDisplay.submitFrame();
};
return VrLib;
}
if (typeof (VrLib) === 'undefined') window.VrLib = defineLibrary(); // eslint-disable-line no-param-reassign, no-undef
else console.log('Library already defined.'); // eslint-disable-line no-console
}(window)); // eslint-disable-line no-undef