forked from R-Aravind/headtrackr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrollers.js
138 lines (109 loc) · 4.93 KB
/
controllers.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
/**
* Optional controllers for handling headtrackr events
*
* @author auduno / github.com/auduno
*/
headtrackr.controllers = {};
// NB! made for three.js revision 48. May not work with other revisions.
headtrackr.controllers.three = {};
/**
* Controls a THREE.js camera to create pseudo-3D effect
*
* Needs the position of "screen" in 3d-model to be given up front, and to be static (i.e. absolute) during headtracking
*
* @param {THREE.PerspectiveCamera} camera
* @param {number} scaling The scaling of the "screen" in the 3d model.
* This is the vertical size of screen in 3d-model relative to vertical size of computerscreen in real life
* @param {array} fixedPosition array with attributes x,y,z, position of "screen" in 3d-model
* @param {THREE.Vector3} lookAt the object/position the camera should be pointed towards
* @param {object} params optional object with optional parameters
*
* Optional parameters:
* screenHeight : vertical size of computer screen (default is 20 cm, i.e. typical laptop size)
*/
headtrackr.controllers.three.realisticAbsoluteCameraControl = function(camera, scaling, fixedPosition, lookAt, params) {
if (params === undefined) params = {};
if (params.screenHeight === undefined) {
var screenHeight_cms = 20;
} else {
var screenHeight_cms = params.screenHeight;
}
if (params.damping === undefined) {
params.damping = 1;
}
camera.position.x = fixedPosition[0];
camera.position.y = fixedPosition[1];
camera.position.z = fixedPosition[2];
camera.lookAt(lookAt);
var wh = screenHeight_cms * scaling;
var ww = wh * camera.aspect;
document.addEventListener('headtrackingEvent', function(event) {
// update camera
var xOffset = event.x > 0 ? 0 : -event.x * 2 * params.damping * scaling;
var yOffset = event.y < 0 ? 0 : event.y * 2 * params.damping * scaling;
camera.setViewOffset(ww + Math.abs(event.x * 2 * params.damping * scaling), wh + Math.abs(event.y * params.damping * 2 * scaling), xOffset, yOffset, ww, wh);
camera.position.x = fixedPosition[0] + (event.x * scaling * params.damping );
camera.position.y = fixedPosition[1] + (event.y * scaling * params.damping );
camera.position.z = fixedPosition[2] + (event.z * scaling);
// update lookAt?
// when changing height of window, we need to change field of view
camera.fov = Math.atan((wh/2 + Math.abs(event.y * scaling * params.damping ))/(Math.abs(event.z*scaling)))*360/Math.PI;
//debugger;
camera.updateProjectionMatrix();
}, false);
};
/**
* Controls a THREE.js camera to create pseudo-3D effect
*
* Places "screen" in 3d-model in relation to original cameraposition at any given time
* Currently not sure if this works properly, or at all
*
* @param {THREE.PerspectiveCamera} camera
* @param {number} scaling The scaling of the "screen" in the 3d model.
* This is the vertical size of screen in 3d-model relative to vertical size of computerscreen in real life
* @param {array} relativeFixedDistance how long in front of (or behind) original cameraposition the fixed frame will be
* @param {object} params optional object with optional parameters
*
* Optional parameters:
* screenHeight : vertical size of computer screen (default is 20 cm, i.e. typical laptop size)
*/
headtrackr.controllers.three.realisticRelativeCameraControl = function(camera, scaling, relativeFixedDistance, params) {
// we assume that the parent of camera is the scene
if (params === undefined) params = {};
if (params.screenHeight === undefined) {
var screenHeight_cms = 20;
} else {
var screenHeight_cms = params.screenHeight;
}
var scene = camera.parent;
var init = true;
// create an object to offset camera without affecting existing camera interaction
var offset = new THREE.Object3D();
offset.position.set(0,0,0);
offset.add(camera);
scene.add(offset);
// TODO : we maybe need to offset functions like lookAt as well
// use prototype function replacement for this?
var wh = screenHeight_cms * scaling;
var ww = wh * camera.aspect;
// set fov
document.addEventListener('headtrackingEvent', function(event) {
// update camera
var xOffset = event.x > 0 ? 0 : -event.x * 2 * scaling;
var yOffset = event.y > 0 ? 0 : -event.y * 2 * scaling;
camera.setViewOffset(ww + Math.abs(event.x * 2 * scaling), wh + Math.abs(event.y * 2 * scaling), xOffset, yOffset, ww, wh);
offset.rotation = camera.rotation;
offset.position.x = 0;
offset.position.y = 0;
offset.position.z = 0;
offset.translateX(event.x * scaling);
offset.translateY(event.y * scaling);
offset.translateZ((event.z * scaling)+relativeFixedDistance);
//offset.position.x = (event.x * scaling);
//offset.position.y = (event.y * scaling);
//offset.position.z = (event.z * scaling)+relativeFixedDistance;
// when changing height of window, we need to change field of view
camera.fov = Math.atan((wh/2 + Math.abs(event.y * scaling))/(Math.abs(event.z*scaling)))*360/Math.PI;
camera.updateProjectionMatrix();
}, false);
}