-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
mouse.js
313 lines (265 loc) · 8.86 KB
/
mouse.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
import { platform } from '../../core/platform.js';
import { EventHandler } from '../../core/event-handler.js';
import { EVENT_MOUSEDOWN, EVENT_MOUSEMOVE, EVENT_MOUSEUP, EVENT_MOUSEWHEEL } from './constants.js';
import { isMousePointerLocked, MouseEvent } from './mouse-event.js';
/**
* Callback used by {@link Mouse#enablePointerLock} and {@link Application#disablePointerLock}.
*
* @callback LockMouseCallback
*/
/**
* A Mouse Device, bound to a DOM Element.
*
* @augments EventHandler
*/
class Mouse extends EventHandler {
/**
* Create a new Mouse instance.
*
* @param {Element} [element] - The Element that the mouse events are attached to.
*/
constructor(element) {
super();
// Clear the mouse state
this._lastX = 0;
this._lastY = 0;
this._buttons = [false, false, false];
this._lastbuttons = [false, false, false];
// Setup event handlers so they are bound to the correct 'this'
this._upHandler = this._handleUp.bind(this);
this._downHandler = this._handleDown.bind(this);
this._moveHandler = this._handleMove.bind(this);
this._wheelHandler = this._handleWheel.bind(this);
this._contextMenuHandler = (event) => {
event.preventDefault();
};
this._target = null;
this._attached = false;
this.attach(element);
}
/**
* Fired when the mouse is moved.
*
* @event Mouse#mousemove
* @param {MouseEvent} event - The MouseEvent object.
*/
/**
* Fired when a mouse button is pressed.
*
* @event Mouse#mousedown
* @param {MouseEvent} event - The MouseEvent object.
*/
/**
* Fired when a mouse button is released.
*
* @event Mouse#mouseup
* @param {MouseEvent} event - The MouseEvent object.
*/
/**
* Fired when a mouse wheel is moved.
*
* @event Mouse#mousewheel
* @param {MouseEvent} event - The MouseEvent object.
*/
/**
* Check if the mouse pointer has been locked, using {@link Mouse#enabledPointerLock}.
*
* @returns {boolean} True if locked.
*/
static isPointerLocked() {
return isMousePointerLocked();
}
/**
* Attach mouse events to an Element.
*
* @param {Element} element - The DOM element to attach the mouse to.
*/
attach(element) {
this._target = element;
if (this._attached) return;
this._attached = true;
const opts = platform.passiveEvents ? { passive: false } : false;
window.addEventListener('mouseup', this._upHandler, opts);
window.addEventListener('mousedown', this._downHandler, opts);
window.addEventListener('mousemove', this._moveHandler, opts);
window.addEventListener('wheel', this._wheelHandler, opts);
}
/**
* Remove mouse events from the element that it is attached to.
*/
detach() {
if (!this._attached) return;
this._attached = false;
this._target = null;
const opts = platform.passiveEvents ? { passive: false } : false;
window.removeEventListener('mouseup', this._upHandler, opts);
window.removeEventListener('mousedown', this._downHandler, opts);
window.removeEventListener('mousemove', this._moveHandler, opts);
window.removeEventListener('wheel', this._wheelHandler, opts);
}
/**
* Disable the context menu usually activated with right-click.
*/
disableContextMenu() {
if (!this._target) return;
this._target.addEventListener('contextmenu', this._contextMenuHandler);
}
/**
* Enable the context menu usually activated with right-click. This option is active by
* default.
*/
enableContextMenu() {
if (!this._target) return;
this._target.removeEventListener('contextmenu', this._contextMenuHandler);
}
/**
* Request that the browser hides the mouse cursor and locks the mouse to the element. Allowing
* raw access to mouse movement input without risking the mouse exiting the element. Notes:
*
* - In some browsers this will only work when the browser is running in fullscreen mode. See
* {@link Application#enableFullscreen}
* - Enabling pointer lock can only be initiated by a user action e.g. in the event handler for
* a mouse or keyboard input.
*
* @param {LockMouseCallback} [success] - Function called if the request for mouse lock is
* successful.
* @param {LockMouseCallback} [error] - Function called if the request for mouse lock is
* unsuccessful.
*/
enablePointerLock(success, error) {
if (!document.body.requestPointerLock) {
if (error)
error();
return;
}
const s = () => {
success();
document.removeEventListener('pointerlockchange', s);
};
const e = () => {
error();
document.removeEventListener('pointerlockerror', e);
};
if (success) {
document.addEventListener('pointerlockchange', s, false);
}
if (error) {
document.addEventListener('pointerlockerror', e, false);
}
document.body.requestPointerLock();
}
/**
* Return control of the mouse cursor to the user.
*
* @param {LockMouseCallback} [success] - Function called when the mouse lock is disabled.
*/
disablePointerLock(success) {
if (!document.exitPointerLock) {
return;
}
const s = () => {
success();
document.removeEventListener('pointerlockchange', s);
};
if (success) {
document.addEventListener('pointerlockchange', s, false);
}
document.exitPointerLock();
}
/**
* Update method, should be called once per frame.
*/
update() {
// Copy current button state
this._lastbuttons[0] = this._buttons[0];
this._lastbuttons[1] = this._buttons[1];
this._lastbuttons[2] = this._buttons[2];
}
/**
* Returns true if the mouse button is currently pressed.
*
* @param {number} button - The mouse button to test. Can be:
*
* - {@link MOUSEBUTTON_LEFT}
* - {@link MOUSEBUTTON_MIDDLE}
* - {@link MOUSEBUTTON_RIGHT}
*
* @returns {boolean} True if the mouse button is current pressed.
*/
isPressed(button) {
return this._buttons[button];
}
/**
* Returns true if the mouse button was pressed this frame (since the last call to update).
*
* @param {number} button - The mouse button to test. Can be:
*
* - {@link MOUSEBUTTON_LEFT}
* - {@link MOUSEBUTTON_MIDDLE}
* - {@link MOUSEBUTTON_RIGHT}
*
* @returns {boolean} True if the mouse button was pressed since the last update.
*/
wasPressed(button) {
return (this._buttons[button] && !this._lastbuttons[button]);
}
/**
* Returns true if the mouse button was released this frame (since the last call to update).
*
* @param {number} button - The mouse button to test. Can be:
*
* - {@link MOUSEBUTTON_LEFT}
* - {@link MOUSEBUTTON_MIDDLE}
* - {@link MOUSEBUTTON_RIGHT}
*
* @returns {boolean} True if the mouse button was released since the last update.
*/
wasReleased(button) {
return (!this._buttons[button] && this._lastbuttons[button]);
}
_handleUp(event) {
// disable released button
this._buttons[event.button] = false;
const e = new MouseEvent(this, event);
if (!e.event) return;
// send 'mouseup' event
this.fire(EVENT_MOUSEUP, e);
}
_handleDown(event) {
// Store which button has affected
this._buttons[event.button] = true;
const e = new MouseEvent(this, event);
if (!e.event) return;
this.fire(EVENT_MOUSEDOWN, e);
}
_handleMove(event) {
const e = new MouseEvent(this, event);
if (!e.event) return;
this.fire(EVENT_MOUSEMOVE, e);
// Store the last offset position to calculate deltas
this._lastX = e.x;
this._lastY = e.y;
}
_handleWheel(event) {
const e = new MouseEvent(this, event);
if (!e.event) return;
this.fire(EVENT_MOUSEWHEEL, e);
}
_getTargetCoords(event) {
const rect = this._target.getBoundingClientRect();
const left = Math.floor(rect.left);
const top = Math.floor(rect.top);
// mouse is outside of canvas
if (event.clientX < left ||
event.clientX >= left + this._target.clientWidth ||
event.clientY < top ||
event.clientY >= top + this._target.clientHeight) {
return null;
}
return {
x: event.clientX - left,
y: event.clientY - top
};
}
}
export { Mouse };