phaser/src/input/Pointer.js

606 lines
14 KiB
JavaScript
Raw Normal View History

var Class = require('../utils/Class');
var Vector2 = require('../math/Vector2');
2018-01-26 12:43:34 +00:00
// DOM event button value:
2017-07-27 02:40:58 +00:00
// A number representing a given button:
// 0: Main button pressed, usually the left button or the un-initialized state
// 1: Auxiliary button pressed, usually the wheel button or the middle button (if present)
// 2: Secondary button pressed, usually the right button
// 3: Fourth button, typically the Browser Back button
// 4: Fifth button, typically the Browser Forward button
// For a mouse configured for left-handed use, the button actions are reversed. In this case, the values are read from right to left.
2018-02-07 15:27:21 +00:00
/**
* @classdesc
* [description]
*
* @class Pointer
* @memberOf Phaser.Input
* @constructor
* @since 3.0.0
*
* @param {Phaser.Input.InputManager} manager - [description]
* @param {integer} id - [description]
*/
var Pointer = new Class({
initialize:
function Pointer (manager, id)
{
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @property {Phaser.Input.InputManager} manager
* @since 3.0.0
*/
this.manager = manager;
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @property {integer} id
* @since 3.0.0
*/
this.id = id;
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @property {null} event
* @since 3.0.0
*/
this.event;
2018-01-26 12:43:34 +00:00
/**
* The camera the Pointer interacted with during its last update.
* A Pointer can only ever interact with one camera at once, which will be the top-most camera
* in the list should multiple cameras be positioned on-top of each other.
*
* @property {Phaser.Cameras.Scene2D.Camera} camera
* @default null
* @since 3.0.0
*/
this.camera = null;
2018-01-26 12:43:34 +00:00
/**
* 0: No button or un-initialized
* 1: Left button
* 2: Right button
* 4: Wheel button or middle button
* 8: 4th button (typically the "Browser Back" button)
* 16: 5th button (typically the "Browser Forward" button)
*
* @property {number} buttons
* @default 0
* @since 3.0.0
*/
this.buttons = 0;
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @property {Phaser.Math.Vector2} position
* @since 3.0.0
*/
this.position = new Vector2();
2018-01-26 12:43:34 +00:00
/**
* X coordinate of the Pointer when Button 1 (left button), or Touch, was pressed, used for dragging objects.
*
* @property {number} downX
* @default 0
* @since 3.0.0
*/
2017-07-27 02:40:58 +00:00
this.downX = 0;
2018-01-26 12:43:34 +00:00
/**
* Y coordinate of the Pointer when Button 1 (left button), or Touch, was pressed, used for dragging objects.
*
* @property {number} downY
* @default 0
* @since 3.0.0
*/
2017-07-27 02:40:58 +00:00
this.downY = 0;
2018-01-26 12:43:34 +00:00
/**
* Time when Button 1 (left button), or Touch, was pressed, used for dragging objects.
*
* @property {number} downTime
* @default 0
* @since 3.0.0
*/
2017-07-27 02:40:58 +00:00
this.downTime = 0;
2018-01-26 12:43:34 +00:00
/**
* X coordinate of the Pointer when Button 1 (left button), or Touch, was released, used for dragging objects.
*
* @property {number} upX
* @default 0
* @since 3.0.0
*/
2017-07-27 02:40:58 +00:00
this.upX = 0;
2018-01-26 12:43:34 +00:00
/**
* Y coordinate of the Pointer when Button 1 (left button), or Touch, was released, used for dragging objects.
*
* @property {number} upY
* @default 0
* @since 3.0.0
*/
2017-07-27 02:40:58 +00:00
this.upY = 0;
2018-01-26 12:43:34 +00:00
/**
* Time when Button 1 (left button), or Touch, was released, used for dragging objects.
*
* @property {number} upTime
* @default 0
* @since 3.0.0
*/
2017-07-27 02:40:58 +00:00
this.upTime = 0;
2018-01-26 12:43:34 +00:00
/**
* Is the primary button down? (usually button 0, the left mouse button)
*
* @property {boolean} primaryDown
* @default false
* @since 3.0.0
*/
2017-07-27 02:40:58 +00:00
this.primaryDown = false;
2018-01-26 12:43:34 +00:00
/**
* The Drag State of the Pointer:
*
* 0 = Not dragging anything
* 1 = Being checked if dragging
* 2 = Dragging something
*
* @property {number} dragState
* @default 0
* @since 3.0.0
*/
2017-07-27 02:40:58 +00:00
this.dragState = 0;
2018-01-26 12:43:34 +00:00
/**
* Is _any_ button on this pointer considered as being down?
*
* @property {boolean} isDown
* @default false
* @since 3.0.0
*/
this.isDown = false;
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @property {boolean} dirty
* @default false
* @since 3.0.0
*/
this.dirty = false;
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @property {boolean} justDown
* @default false
* @since 3.0.0
*/
this.justDown = false;
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @property {boolean} justUp
* @default false
* @since 3.0.0
*/
this.justUp = false;
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @property {boolean} justMoved
* @default false
* @since 3.0.0
*/
this.justMoved = false;
2018-01-26 12:43:34 +00:00
/**
* Did the previous input event come from a Touch input (true) or Mouse? (false)
*
* @property {boolean} wasTouch
* @default false
* @since 3.0.0
*/
this.wasTouch = false;
/**
2018-01-26 12:43:34 +00:00
* If the mouse is locked, the horizontal relative movement of the Pointer in pixels since last frame.
*
* @property {number} movementX
* @default 0
* @since 3.0.0
*/
this.movementX = 0;
/**
2018-01-26 12:43:34 +00:00
* If the mouse is locked, the vertical relative movement of the Pointer in pixels since last frame.
*
* @property {number} movementY
* @default 0
* @since 3.0.0
*/
this.movementY = 0;
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#positionToCamera
* @since 3.0.0
*
* @param {[type]} camera - [description]
* @param {[type]} output - [description]
*
* @return {[type]} [description]
*/
positionToCamera: function (camera, output)
{
return camera.getWorldPoint(this.x, this.y, output);
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @name Phaser.Input.Pointer#x
* @property {number} x
* @since 3.0.0
*/
x: {
get: function ()
{
return this.position.x;
},
set: function (value)
{
this.position.x = value;
}
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @name Phaser.Input.Pointer#y
* @property {number} y
* @since 3.0.0
*/
y: {
get: function ()
{
return this.position.y;
},
set: function (value)
{
this.position.y = value;
}
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#reset
* @since 3.0.0
*/
reset: function ()
{
// this.buttons = 0;
this.dirty = false;
this.justDown = false;
this.justUp = false;
this.justMoved = false;
this.movementX = 0;
this.movementY = 0;
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#touchmove
* @since 3.0.0
*
* @param {[type]} event - [description]
* @param {[type]} time - [description]
*/
touchmove: function (event, time)
{
this.event = event;
this.x = this.manager.transformX(event.changedTouches[0].pageX);
this.y = this.manager.transformY(event.changedTouches[0].pageY);
this.justMoved = true;
this.dirty = true;
this.wasTouch = true;
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#move
* @since 3.0.0
*
* @param {[type]} event - [description]
* @param {[type]} time - [description]
*/
2017-07-27 02:40:58 +00:00
move: function (event, time)
{
if (event.buttons)
{
this.buttons = event.buttons;
}
this.event = event;
this.x = this.manager.transformX(event.pageX);
this.y = this.manager.transformY(event.pageY);
if (this.manager.mouse.locked)
{
2017-12-08 23:08:04 +00:00
// Multiple DOM events may occur within one frame, but only one Phaser event will fire
this.movementX += event.movementX || event.mozMovementX || event.webkitMovementX || 0;
this.movementY += event.movementY || event.mozMovementY || event.webkitMovementY || 0;
}
this.justMoved = true;
2017-07-18 16:22:14 +00:00
this.dirty = true;
this.wasTouch = false;
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#down
* @since 3.0.0
*
* @param {[type]} event - [description]
* @param {[type]} time - [description]
*/
2017-07-27 02:40:58 +00:00
down: function (event, time)
{
if (event.buttons)
{
this.buttons = event.buttons;
}
this.event = event;
this.x = this.manager.transformX(event.pageX);
this.y = this.manager.transformY(event.pageY);
2017-07-27 02:40:58 +00:00
// 0: Main button pressed, usually the left button or the un-initialized state
if (event.button === 0)
{
this.primaryDown = true;
this.downX = this.x;
this.downY = this.y;
this.downTime = time;
}
this.justDown = true;
2017-07-18 16:22:14 +00:00
this.isDown = true;
this.dirty = true;
this.wasTouch = false;
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#touchstart
* @since 3.0.0
*
* @param {[type]} event - [description]
* @param {[type]} time - [description]
*/
touchstart: function (event, time)
{
this.buttons = 1;
this.event = event;
this.x = this.manager.transformX(event.changedTouches[0].pageX);
this.y = this.manager.transformY(event.changedTouches[0].pageY);
this.primaryDown = true;
this.downX = this.x;
this.downY = this.y;
this.downTime = time;
this.justDown = true;
this.isDown = true;
this.dirty = true;
this.wasTouch = true;
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#up
* @since 3.0.0
*
* @param {[type]} event - [description]
* @param {[type]} time - [description]
*/
2017-07-27 02:40:58 +00:00
up: function (event, time)
{
if (event.buttons)
{
this.buttons = event.buttons;
}
this.event = event;
this.x = this.manager.transformX(event.pageX);
this.y = this.manager.transformY(event.pageY);
2017-07-27 02:40:58 +00:00
// 0: Main button pressed, usually the left button or the un-initialized state
if (event.button === 0)
{
this.primaryDown = false;
this.upX = this.x;
this.upY = this.y;
this.upTime = time;
}
this.justUp = true;
2017-07-18 16:22:14 +00:00
this.isDown = false;
this.dirty = true;
this.wasTouch = false;
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#touchend
* @since 3.0.0
*
* @param {[type]} event - [description]
* @param {[type]} time - [description]
*/
touchend: function (event, time)
{
this.buttons = 0;
this.event = event;
this.x = this.manager.transformX(event.changedTouches[0].pageX);
this.y = this.manager.transformY(event.changedTouches[0].pageY);
this.primaryDown = false;
this.upX = this.x;
this.upY = this.y;
this.upTime = time;
this.justUp = true;
this.isDown = false;
this.dirty = true;
this.wasTouch = true;
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#noButtonDown
* @since 3.0.0
*
* @return {boolean} [description]
*/
noButtonDown: function ()
{
return (this.buttons === 0);
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#leftButtonDown
* @since 3.0.0
*
* @return {boolean} [description]
*/
leftButtonDown: function ()
{
return (this.buttons & 1);
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#rightButtonDown
* @since 3.0.0
*
* @return {boolean} [description]
*/
rightButtonDown: function ()
{
return (this.buttons & 2);
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#middleButtonDown
* @since 3.0.0
*
* @return {boolean} [description]
*/
middleButtonDown: function ()
{
return (this.buttons & 4);
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#backButtonDown
* @since 3.0.0
*
* @return {boolean} [description]
*/
backButtonDown: function ()
{
return (this.buttons & 8);
},
2018-01-26 12:43:34 +00:00
/**
* [description]
*
* @method Phaser.Input.Pointer#forwardButtonDown
* @since 3.0.0
*
* @return {boolean} [description]
*/
forwardButtonDown: function ()
{
return (this.buttons & 16);
},
/**
* [description]
*
* @method Phaser.Input.Pointer#destroy
* @since 3.0.0
*/
destroy: function ()
{
this.camera = null;
this.manager = null;
this.position = null;
}
});
module.exports = Pointer;