2017-04-17 15:10:04 -04:00
|
|
|
const MathUtil = require('../util/math-util');
|
2016-08-15 21:37:36 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
class Mouse {
|
|
|
|
constructor (runtime) {
|
|
|
|
this._x = 0;
|
|
|
|
this._y = 0;
|
|
|
|
this._isDown = false;
|
|
|
|
/**
|
|
|
|
* Reference to the owning Runtime.
|
|
|
|
* Can be used, for example, to activate hats.
|
|
|
|
* @type{!Runtime}
|
|
|
|
*/
|
|
|
|
this.runtime = runtime;
|
|
|
|
}
|
|
|
|
|
2016-09-12 17:16:10 -04:00
|
|
|
/**
|
2017-04-17 19:42:48 -04:00
|
|
|
* Activate "event_whenthisspriteclicked" hats if needed.
|
|
|
|
* @param {number} x X position to be sent to the renderer.
|
|
|
|
* @param {number} y Y position to be sent to the renderer.
|
|
|
|
* @private
|
2016-09-12 17:16:10 -04:00
|
|
|
*/
|
2017-04-17 19:42:48 -04:00
|
|
|
_activateClickHats (x, y) {
|
|
|
|
if (this.runtime.renderer) {
|
|
|
|
const drawableID = this.runtime.renderer.pick(x, y);
|
|
|
|
for (let i = 0; i < this.runtime.targets.length; i++) {
|
|
|
|
const target = this.runtime.targets[i];
|
|
|
|
if (target.hasOwnProperty('drawableID') &&
|
|
|
|
target.drawableID === drawableID) {
|
|
|
|
this.runtime.startHats('event_whenthisspriteclicked',
|
|
|
|
null, target);
|
|
|
|
return;
|
|
|
|
}
|
2016-09-12 17:16:10 -04:00
|
|
|
}
|
2016-09-15 19:02:03 -04:00
|
|
|
}
|
2016-08-15 21:37:36 -04:00
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Mouse DOM event handler.
|
|
|
|
* @param {object} data Data from DOM event.
|
|
|
|
*/
|
|
|
|
postData (data) {
|
|
|
|
if (data.x) {
|
2018-01-09 10:36:03 -05:00
|
|
|
this._clientX = data.x;
|
|
|
|
this._scratchX = MathUtil.clamp(
|
|
|
|
480 * ((data.x / data.canvasWidth) - 0.5),
|
|
|
|
-240,
|
|
|
|
240
|
|
|
|
);
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
|
|
|
if (data.y) {
|
2018-01-09 10:36:03 -05:00
|
|
|
this._clientY = data.y;
|
|
|
|
this._scratchY = MathUtil.clamp(
|
|
|
|
-360 * ((data.y / data.canvasHeight) - 0.5),
|
|
|
|
-180,
|
|
|
|
180
|
|
|
|
);
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
|
|
|
if (typeof data.isDown !== 'undefined') {
|
|
|
|
this._isDown = data.isDown;
|
|
|
|
if (!this._isDown) {
|
|
|
|
this._activateClickHats(data.x, data.y);
|
|
|
|
}
|
2016-10-24 11:56:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
2018-01-09 10:36:03 -05:00
|
|
|
* Get the X position of the mouse in client coordinates.
|
2018-01-09 09:39:52 -05:00
|
|
|
* @return {number} Non-clamped X position of the mouse cursor.
|
2017-04-17 19:42:48 -04:00
|
|
|
*/
|
2018-01-09 10:36:03 -05:00
|
|
|
getClientX () {
|
|
|
|
return this._clientX;
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
2016-08-15 21:37:36 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
2018-01-09 10:36:03 -05:00
|
|
|
* Get the Y position of the mouse in client coordinates.
|
2018-01-09 09:39:52 -05:00
|
|
|
* @return {number} Non-clamped Y position of the mouse cursor.
|
2017-04-17 19:42:48 -04:00
|
|
|
*/
|
2018-01-09 10:36:03 -05:00
|
|
|
getClientY () {
|
|
|
|
return this._clientY;
|
2018-01-09 09:39:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-09 10:36:03 -05:00
|
|
|
* Get the X position of the mouse in scratch coordinates.
|
2018-01-09 09:39:52 -05:00
|
|
|
* @return {number} Clamped X position of the mouse cursor.
|
|
|
|
*/
|
2018-01-09 10:36:03 -05:00
|
|
|
getScratchX () {
|
|
|
|
return this._scratchX;
|
2018-01-09 09:39:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-09 10:36:03 -05:00
|
|
|
* Get the Y position of the mouse in scratch coordinates.
|
2018-01-09 09:39:52 -05:00
|
|
|
* @return {number} Clamped Y position of the mouse cursor.
|
|
|
|
*/
|
2018-01-09 10:36:03 -05:00
|
|
|
getScratchY () {
|
|
|
|
return this._scratchY;
|
2017-04-17 19:42:48 -04:00
|
|
|
}
|
2016-08-15 21:37:36 -04:00
|
|
|
|
2017-04-17 19:42:48 -04:00
|
|
|
/**
|
|
|
|
* Get the down state of the mouse.
|
|
|
|
* @return {boolean} Is the mouse down?
|
|
|
|
*/
|
|
|
|
getIsDown () {
|
|
|
|
return this._isDown;
|
|
|
|
}
|
|
|
|
}
|
2016-08-15 21:37:36 -04:00
|
|
|
|
|
|
|
module.exports = Mouse;
|