phaser/src/input/Pointer.js

834 lines
23 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var Class = require('../utils/Class');
2018-09-12 00:03:56 +00:00
var Distance = require('../math/distance/DistanceBetween');
var SmoothStepInterpolation = require('../math/interpolation/SmoothStepInterpolation');
var Vector2 = require('../math/Vector2');
2018-02-07 15:27:21 +00:00
/**
* @classdesc
* A Pointer object encapsulates both mouse and touch input within Phaser.
*
* By default, Phaser will create 2 pointers for your game to use. If you require more, i.e. for a multi-touch
* game, then use the `InputPlugin.addPointer` method to do so, rather than instantiating this class directly,
* otherwise it won't be managed by the input system.
*
* You can reference the current active pointer via `InputPlugin.activePointer`. You can also use the properties
* `InputPlugin.pointer1` through to `pointer10`, for each pointer you have enabled in your game.
*
* The properties of this object are set by the Input Plugin during processing. This object is then sent in all
* input related events that the Input Plugin emits, so you can reference properties from it directly in your
* callbacks.
2018-02-07 15:27:21 +00:00
*
* @class Pointer
2018-10-10 09:49:13 +00:00
* @memberof Phaser.Input
2018-02-07 15:27:21 +00:00
* @constructor
* @since 3.0.0
*
* @param {Phaser.Input.InputManager} manager - A reference to the Input Manager.
* @param {integer} id - The internal ID of this Pointer.
2018-02-07 15:27:21 +00:00
*/
var Pointer = new Class({
initialize:
function Pointer (manager, id)
{
2018-01-26 12:43:34 +00:00
/**
* A reference to the Input Manager.
2018-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#manager
* @type {Phaser.Input.InputManager}
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*/
this.manager = manager;
2018-01-26 12:43:34 +00:00
/**
* The internal ID of this Pointer.
2018-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#id
* @type {integer}
2018-10-09 12:40:00 +00:00
* @readonly
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*/
this.id = id;
2018-01-26 12:43:34 +00:00
/**
* The most recent native DOM Event this Pointer has processed.
2018-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#event
* @type {(TouchEvent|MouseEvent)}
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*/
this.event;
2018-01-26 12:43:34 +00:00
/**
* The camera the Pointer interacted with during its last update.
*
2018-01-26 12:43:34 +00:00
* 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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#camera
* @type {Phaser.Cameras.Scene2D.Camera}
2018-01-26 12:43:34 +00:00
* @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)
*
* 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-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#buttons
* @type {integer}
2018-01-26 12:43:34 +00:00
* @default 0
* @since 3.0.0
*/
this.buttons = 0;
2018-01-26 12:43:34 +00:00
/**
* The position of the Pointer in screen space.
2018-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#position
* @type {Phaser.Math.Vector2}
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*/
this.position = new Vector2();
/**
* The previous position of the Pointer in screen space.
*
* The old x and y values are stored in here during the InputManager.transformPointer call.
*
* You can use it to track how fast the pointer is moving, or to smoothly interpolate between the old and current position.
* See the `Pointer.getInterpolatedPosition` method to assist in this.
*
* @name Phaser.Input.Pointer#prevPosition
* @type {Phaser.Math.Vector2}
* @since 3.11.0
*/
this.prevPosition = new Vector2();
/**
* The x position of this Pointer, translated into the coordinate space of the most recent Camera it interacted with.
*
* @name Phaser.Input.Pointer#worldX
* @type {number}
* @default 0
* @since 3.10.0
*/
this.worldX = 0;
/**
* The y position of this Pointer, translated into the coordinate space of the most recent Camera it interacted with.
*
* @name Phaser.Input.Pointer#worldY
* @type {number}
* @default 0
* @since 3.10.0
*/
this.worldY = 0;
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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#downX
* @type {number}
2018-01-26 12:43:34 +00:00
* @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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#downY
* @type {number}
2018-01-26 12:43:34 +00:00
* @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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#downTime
* @type {number}
2018-01-26 12:43:34 +00:00
* @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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#upX
* @type {number}
2018-01-26 12:43:34 +00:00
* @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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#upY
* @type {number}
2018-01-26 12:43:34 +00:00
* @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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#upTime
* @type {number}
2018-01-26 12:43:34 +00:00
* @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)
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#primaryDown
* @type {boolean}
2018-01-26 12:43:34 +00:00
* @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:
2018-03-19 12:43:19 +00:00
*
2018-01-26 12:43:34 +00:00
* 0 = Not dragging anything
* 1 = Being checked if dragging
* 2 = Dragging something
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#dragState
* @type {number}
2018-01-26 12:43:34 +00:00
* @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?
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#isDown
* @type {boolean}
2018-01-26 12:43:34 +00:00
* @default false
* @since 3.0.0
*/
this.isDown = false;
2018-01-26 12:43:34 +00:00
/**
* A dirty flag for this Pointer, used internally by the Input Plugin.
2018-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#dirty
* @type {boolean}
2018-01-26 12:43:34 +00:00
* @default false
* @since 3.0.0
*/
this.dirty = false;
2018-01-26 12:43:34 +00:00
/**
* Is this Pointer considered as being "just down" or not?
2018-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#justDown
* @type {boolean}
2018-01-26 12:43:34 +00:00
* @default false
* @since 3.0.0
*/
this.justDown = false;
2018-01-26 12:43:34 +00:00
/**
* Is this Pointer considered as being "just up" or not?
2018-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#justUp
* @type {boolean}
2018-01-26 12:43:34 +00:00
* @default false
* @since 3.0.0
*/
this.justUp = false;
2018-01-26 12:43:34 +00:00
/**
* Is this Pointer considered as being "just moved" or not?
2018-01-26 12:43:34 +00:00
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#justMoved
* @type {boolean}
2018-01-26 12:43:34 +00:00
* @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)
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#wasTouch
* @type {boolean}
2018-01-26 12:43:34 +00:00
* @default false
* @since 3.0.0
*/
this.wasTouch = false;
/**
* Did this Pointer get canceled by a touchcancel event?
*
* Note: "canceled" is the American-English spelling of "cancelled". Please don't submit PRs correcting it!
*
* @name Phaser.Input.Pointer#wasCanceled
* @type {boolean}
* @default false
* @since 3.15.0
*/
this.wasCanceled = 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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#movementX
* @type {number}
2018-01-26 12:43:34 +00:00
* @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.
*
2018-02-13 01:13:12 +00:00
* @name Phaser.Input.Pointer#movementY
* @type {number}
2018-01-26 12:43:34 +00:00
* @default 0
* @since 3.0.0
*/
this.movementY = 0;
/**
* The identifier property of the Pointer as set by the DOM event when this Pointer is started.
*
* @name Phaser.Input.Pointer#identifier
* @type {number}
* @since 3.10.0
*/
this.identifier = 0;
/**
* The pointerId property of the Pointer as set by the DOM event when this Pointer is started.
* The browser can and will recycle this value.
*
* @name Phaser.Input.Pointer#pointerId
* @type {number}
* @since 3.10.0
*/
this.pointerId = null;
/**
* An active Pointer is one that is currently pressed down on the display.
* A Mouse is always considered as active.
*
* @name Phaser.Input.Pointer#active
* @type {boolean}
* @since 3.10.0
*/
this.active = (id === 0) ? true : false;
},
2018-01-26 12:43:34 +00:00
/**
* Takes a Camera and returns a Vector2 containing the translated position of this Pointer
* within that Camera. This can be used to convert this Pointers position into camera space.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#positionToCamera
* @since 3.0.0
*
* @param {Phaser.Cameras.Scene2D.Camera} camera - The Camera to use for the translation.
* @param {(Phaser.Math.Vector2|object)} [output] - A Vector2-like object in which to store the translated position.
2018-01-26 12:43:34 +00:00
*
* @return {(Phaser.Math.Vector2|object)} A Vector2 containing the translated coordinates of this Pointer, based on the given camera.
2018-01-26 12:43:34 +00:00
*/
positionToCamera: function (camera, output)
{
return camera.getWorldPoint(this.x, this.y, output);
},
2018-01-26 12:43:34 +00:00
/**
* Resets the temporal properties of this Pointer.
* Called automatically by the Input Plugin each update.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#reset
* @private
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*/
reset: function ()
{
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
/**
* Internal method to handle a Mouse Up Event.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#up
* @private
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*
* @param {MouseEvent} event - The Mouse Event to process.
2018-03-18 13:43:37 +00:00
* @param {integer} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
2018-01-26 12:43:34 +00:00
*/
up: function (event, time)
{
if (event.buttons)
{
this.buttons = event.buttons;
}
this.event = event;
// Sets the local x/y properties
this.manager.transformPointer(this, event.pageX, event.pageY);
// 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;
this.isDown = false;
this.dirty = true;
this.wasTouch = false;
},
2018-01-26 12:43:34 +00:00
/**
* Internal method to handle a Mouse Down Event.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#down
* @private
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*
* @param {MouseEvent} event - The Mouse Event to process.
2018-03-18 13:43:37 +00:00
* @param {integer} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
2018-01-26 12:43:34 +00:00
*/
down: function (event, time)
{
if (event.buttons)
{
this.buttons = event.buttons;
}
this.event = event;
// Sets the local x/y properties
this.manager.transformPointer(this, event.pageX, event.pageY);
// 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;
this.isDown = true;
2017-07-18 16:22:14 +00:00
this.dirty = true;
this.wasTouch = false;
},
2018-01-26 12:43:34 +00:00
/**
* Internal method to handle a Mouse Move Event.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#move
* @private
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*
* @param {MouseEvent} event - The Mouse Event to process.
2018-03-18 13:43:37 +00:00
* @param {integer} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
2018-01-26 12:43:34 +00:00
*/
move: function (event)
{
if (event.buttons)
{
this.buttons = event.buttons;
}
this.event = event;
// Sets the local x/y properties
this.manager.transformPointer(this, event.pageX, event.pageY);
if (this.manager.mouse.locked)
2017-07-27 02:40:58 +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;
2017-07-27 02:40:58 +00:00
}
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
/**
* Internal method to handle a Touch Start Event.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#touchstart
* @private
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*
* @param {TouchEvent} event - The Touch Event to process.
2018-03-18 13:43:37 +00:00
* @param {integer} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
2018-01-26 12:43:34 +00:00
*/
touchstart: function (event, time)
{
if (event['pointerId'])
{
this.pointerId = event.pointerId;
}
this.identifier = event.identifier;
this.target = event.target;
this.active = true;
this.buttons = 1;
this.event = event;
// Sets the local x/y properties
this.manager.transformPointer(this, event.pageX, event.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;
this.wasCanceled = false;
},
2018-01-26 12:43:34 +00:00
/**
* Internal method to handle a Touch Move Event.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#touchmove
* @private
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*
* @param {TouchEvent} event - The Touch Event to process.
2018-03-18 13:43:37 +00:00
* @param {integer} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
2018-01-26 12:43:34 +00:00
*/
touchmove: function (event)
{
this.event = event;
// Sets the local x/y properties
this.manager.transformPointer(this, event.pageX, event.pageY);
this.justMoved = true;
2017-07-18 16:22:14 +00:00
this.dirty = true;
this.wasTouch = true;
},
2018-01-26 12:43:34 +00:00
/**
* Internal method to handle a Touch End Event.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#touchend
* @private
2018-01-26 12:43:34 +00:00
* @since 3.0.0
*
* @param {TouchEvent} event - The Touch Event to process.
2018-03-18 13:43:37 +00:00
* @param {integer} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
2018-01-26 12:43:34 +00:00
*/
touchend: function (event, time)
{
this.buttons = 0;
this.event = event;
// Sets the local x/y properties
this.manager.transformPointer(this, event.pageX, event.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;
this.wasCanceled = false;
this.active = false;
},
/**
* Internal method to handle a Touch Cancel Event.
*
* @method Phaser.Input.Pointer#touchcancel
* @private
* @since 3.15.0
*
* @param {TouchEvent} event - The Touch Event to process.
*/
touchcancel: function (event)
{
this.buttons = 0;
this.event = event;
this.primaryDown = false;
this.justUp = false;
this.isDown = false;
this.dirty = true;
this.wasTouch = true;
this.wasCanceled = true;
this.active = false;
},
2018-01-26 12:43:34 +00:00
/**
* Checks to see if any buttons are being held down on this Pointer.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#noButtonDown
* @since 3.0.0
*
* @return {boolean} `true` if no buttons are being held down.
2018-01-26 12:43:34 +00:00
*/
noButtonDown: function ()
{
return (this.buttons === 0);
},
2018-01-26 12:43:34 +00:00
/**
* Checks to see if the left button is being held down on this Pointer.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#leftButtonDown
* @since 3.0.0
*
* @return {boolean} `true` if the left button is being held down.
2018-01-26 12:43:34 +00:00
*/
leftButtonDown: function ()
{
return (this.buttons & 1);
},
2018-01-26 12:43:34 +00:00
/**
* Checks to see if the right button is being held down on this Pointer.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#rightButtonDown
* @since 3.0.0
*
* @return {boolean} `true` if the right button is being held down.
2018-01-26 12:43:34 +00:00
*/
rightButtonDown: function ()
{
return (this.buttons & 2);
},
2018-01-26 12:43:34 +00:00
/**
* Checks to see if the middle button is being held down on this Pointer.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#middleButtonDown
* @since 3.0.0
*
* @return {boolean} `true` if the middle button is being held down.
2018-01-26 12:43:34 +00:00
*/
middleButtonDown: function ()
{
return (this.buttons & 4);
},
2018-01-26 12:43:34 +00:00
/**
* Checks to see if the back button is being held down on this Pointer.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#backButtonDown
* @since 3.0.0
*
* @return {boolean} `true` if the back button is being held down.
2018-01-26 12:43:34 +00:00
*/
backButtonDown: function ()
{
return (this.buttons & 8);
},
2018-01-26 12:43:34 +00:00
/**
* Checks to see if the forward button is being held down on this Pointer.
2018-01-26 12:43:34 +00:00
*
* @method Phaser.Input.Pointer#forwardButtonDown
* @since 3.0.0
*
* @return {boolean} `true` if the forward button is being held down.
2018-01-26 12:43:34 +00:00
*/
forwardButtonDown: function ()
{
return (this.buttons & 16);
},
2018-09-12 00:03:56 +00:00
/**
* Returns the distance between the Pointer's current position and where it was
* first pressed down (the `downX` and `downY` properties)
*
* @method Phaser.Input.Pointer#getDistance
* @since 3.13.0
*
* @return {number} The distance the Pointer has moved since being pressed down.
*/
getDistance: function ()
{
return Distance(this.downX, this.downY, this.x, this.y);
},
/**
* Takes the previous and current Pointer positions and then generates an array of interpolated values between
* the two. The array will be populated up to the size of the `steps` argument.
*
* ```javaScript
* var points = pointer.getInterpolatedPosition(4);
*
* // points[0] = { x: 0, y: 0 }
* // points[1] = { x: 2, y: 1 }
* // points[2] = { x: 3, y: 2 }
* // points[3] = { x: 6, y: 3 }
* ```
*
* Use this if you need to get smoothed values between the previous and current pointer positions. DOM pointer
* events can often fire faster than the main browser loop, and this will help you avoid janky movement
* especially if you have an object following a Pointer.
*
* Note that if you provide an output array it will only be populated up to the number of steps provided.
* It will not clear any previous data that may have existed beyond the range of the steps count.
*
* Internally it uses the Smooth Step interpolation calculation.
*
* @method Phaser.Input.Pointer#getInterpolatedPosition
* @since 3.11.0
*
* @param {integer} [steps=10] - The number of interpolation steps to use.
* @param {array} [out] - An array to store the results in. If not provided a new one will be created.
*
* @return {array} An array of interpolated values.
*/
getInterpolatedPosition: function (steps, out)
{
if (steps === undefined) { steps = 10; }
if (out === undefined) { out = []; }
var prevX = this.prevPosition.x;
var prevY = this.prevPosition.y;
var curX = this.position.x;
var curY = this.position.y;
for (var i = 0; i < steps; i++)
{
var t = (1 / steps) * i;
out[i] = { x: SmoothStepInterpolation(t, prevX, curX), y: SmoothStepInterpolation(t, prevY, curY) };
}
return out;
},
/**
* Destroys this Pointer instance and resets its external references.
*
* @method Phaser.Input.Pointer#destroy
* @since 3.0.0
*/
destroy: function ()
{
this.camera = null;
this.manager = null;
this.position = null;
},
/**
* The x position of this Pointer.
* The value is in screen space.
* See `worldX` to get a camera converted position.
*
* @name Phaser.Input.Pointer#x
* @type {number}
* @since 3.0.0
*/
x: {
get: function ()
{
return this.position.x;
},
set: function (value)
{
this.position.x = value;
}
},
/**
* The y position of this Pointer.
* The value is in screen space.
* See `worldY` to get a camera converted position.
*
* @name Phaser.Input.Pointer#y
* @type {number}
* @since 3.0.0
*/
y: {
get: function ()
{
return this.position.y;
},
set: function (value)
{
this.position.y = value;
}
}
});
module.exports = Pointer;