-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcamera.js
executable file
·163 lines (149 loc) · 5.08 KB
/
camera.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
/**
* Camera by @robashton returns Camera object.
* constructor initial parameters:
* @param {context} str *required
* @param {settings} str *optional
*/
export default class Camera {
constructor(context, settings = {}) {
this.distance = settings.distance || 1000.0;
this.lookAt = settings.initialPosition || [0, 0];
this.context = context;
this.fieldOfView = settings.fieldOfView || Math.PI / 4.0;
this.viewport = {
left: 0,
right: 0,
top: 0,
bottom: 0,
width: 0,
height: 0,
scale: [settings.scaleX || 1.0, settings.scaleY || 1.0]
};
this.init();
}
/**
* Camera Initialization
* -Add listeners.
* -Initial calculations.
*/
init() {
this.addListeners();
this.updateViewport();
}
/**
* Applies to canvas context the parameters:
* -Scale
* -Translation
*/
begin() {
this.context.save();
this.applyScale();
this.applyTranslation();
}
/**
* 2d Context restore() method
*/
end() {
this.context.restore();
}
/**
* 2d Context scale(Camera.viewport.scale[0], Camera.viewport.scale[0]) method
*/
applyScale() {
this.context.scale(this.viewport.scale[0], this.viewport.scale[1]);
}
/**
* 2d Context translate(-Camera.viewport.left, -Camera.viewport.top) method
*/
applyTranslation() {
this.context.translate(-this.viewport.left, -this.viewport.top);
}
/**
* Camera.viewport data update
*/
updateViewport() {
this.aspectRatio = this.context.canvas.width / this.context.canvas.height;
this.viewport.width = this.distance * Math.tan(this.fieldOfView);
this.viewport.height = this.viewport.width / this.aspectRatio;
this.viewport.left = this.lookAt[0] - (this.viewport.width / 2.0);
this.viewport.top = this.lookAt[1] - (this.viewport.height / 2.0);
this.viewport.right = this.viewport.left + this.viewport.width;
this.viewport.bottom = this.viewport.top + this.viewport.height;
this.viewport.scale[0] = this.context.canvas.width / this.viewport.width;
this.viewport.scale[1] = this.context.canvas.height / this.viewport.height;
}
/**
* Zooms to certain z distance
* @param {*z distance} z
*/
zoomTo(z) {
this.distance = z;
this.updateViewport();
}
/**
* Moves the centre of the viewport to new x, y coords (updates Camera.lookAt)
* @param {x axis coord} x
* @param {y axis coord} y
*/
moveTo(x, y) {
this.lookAt[0] = x;
this.lookAt[1] = y;
this.updateViewport();
}
/**
* Transform a coordinate pair from screen coordinates (relative to the canvas) into world coordinates (useful for intersection between mouse and entities)
* Optional: obj can supply an object to be populated with the x/y (for object-reuse in garbage collection efficient code)
* @param {x axis coord} x
* @param {y axis coord} y
* @param {obj can supply an object to be populated with the x/y} obj
* @returns
*/
screenToWorld(x, y, obj) {
obj = obj || {};
obj.x = (x / this.viewport.scale[0]) + this.viewport.left;
obj.y = (y / this.viewport.scale[1]) + this.viewport.top;
return obj;
}
/**
* Transform a coordinate pair from world coordinates into screen coordinates (relative to the canvas) - useful for placing DOM elements over the scene.
* Optional: obj can supply an object to be populated with the x/y (for object-reuse in garbage collection efficient code).
* @param {x axis coord} x
* @param {y axis coord} y
* @param {obj can supply an object to be populated with the x/y} obj
* @returns
*/
worldToScreen(x, y, obj) {
obj = obj || {};
obj.x = (x - this.viewport.left) * (this.viewport.scale[0]);
obj.y = (y - this.viewport.top) * (this.viewport.scale[1]);
return obj;
}
/**
* Event Listeners for:
* -Zoom and scroll around world
* -Center camera on "R" key
*/
addListeners() {
window.onwheel = e => {
if (e.ctrlKey) {
// Your zoom/scale factor
let zoomLevel = this.distance - (e.deltaY * 20);
if (zoomLevel <= 1) {
zoomLevel = 1;
}
this.zoomTo(zoomLevel);
} else {
// Your track-pad X and Y positions
const x = this.lookAt[0] + (e.deltaX * 2);
const y = this.lookAt[1] + (e.deltaY * 2);
this.moveTo(x, y);
}
};
window.addEventListener('keydown', e => {
if (e.key === 'r') {
this.zoomTo(1000);
this.moveTo(0, 0);
}
});
}
};