2013-05-28 20:38:37 +00:00
/// <reference path="../Game.ts" />
2013-06-07 15:27:33 +00:00
/// <reference path="../math/Vec2.ts" />
2013-05-16 01:36:58 +00:00
/ * *
* Phaser - Pointer
*
* A Pointer object is used by the Touch and MSPoint managers and represents a single finger on the touch screen .
* /
module Phaser {
export class Pointer {
/ * *
* Constructor
* @param { Phaser . Game } game .
* @return { Phaser . Pointer } This object .
* /
constructor ( game : Game , id : number ) {
2013-06-02 13:19:12 +00:00
this . game = game ;
2013-05-16 01:36:58 +00:00
this . id = id ;
this . active = false ;
2013-05-28 20:38:37 +00:00
this . position = new Vec2 ;
this . positionDown = new Vec2 ;
2013-05-16 01:36:58 +00:00
this . circle = new Circle ( 0 , 0 , 44 ) ;
2013-05-16 20:34:24 +00:00
if ( id == 0 )
{
this . isMouse = true ;
}
2013-05-16 01:36:58 +00:00
}
2013-07-15 20:45:26 +00:00
private _highestRenderOrderID : number ;
private _highestRenderObject : number ;
private _highestInputPriorityID : number ;
2013-05-16 01:36:58 +00:00
/ * *
* Local private reference to game .
2013-06-02 13:19:12 +00:00
* @property game
2013-05-16 01:36:58 +00:00
* @type { Phaser . Game }
* @private
* * /
2013-06-02 13:19:12 +00:00
public game : Game ;
2013-05-16 01:36:58 +00:00
/ * *
2013-05-16 20:34:24 +00:00
* Local private variable to store the status of dispatching a hold event
* @property _holdSent
* @type { Boolean }
* @private
* /
private _holdSent : bool = false ;
/ * *
* Local private variable storing the short - term history of pointer movements
* @property _history
* @type { Array }
* @private
* /
private _history = [ ] ;
/ * *
* Local private variable storing the time at which the next history drop should occur
* @property _lastDrop
* @type { Number }
* @private
* /
private _nextDrop : number = 0 ;
2013-06-03 11:03:34 +00:00
// Monitor events outside of a state reset loop
private _stateReset : bool = false ;
2013-05-16 20:34:24 +00:00
/ * *
* The Pointer ID ( a number between 1 and 10 , 0 is reserved for the mouse pointer specifically )
2013-05-16 01:36:58 +00:00
* @property id
* @type { Number }
* /
public id : number ;
/ * *
* An identification number for each touch point .
* When a touch point becomes active , it is assigned an identifier that is distinct from any other active touch point .
* While the touch point remains active , all events that refer to it are assigned the same identifier .
* @property identifier
* @type { Number }
* /
public identifier : number ;
/ * *
* Is this Pointer active or not ? An active Pointer is one that is in contact with the touch screen .
* @property active
* @type { Boolean }
* /
public active : bool ;
/ * *
2013-05-22 23:01:58 +00:00
* A Vector object containing the initial position when the Pointer was engaged with the screen .
* @property positionDown
2013-05-28 20:38:37 +00:00
* @type { Vec2 }
2013-05-16 01:36:58 +00:00
* * /
2013-05-28 20:38:37 +00:00
public positionDown : Vec2 = null ;
2013-05-16 01:36:58 +00:00
/ * *
2013-05-22 23:01:58 +00:00
* A Vector object containing the current position of the Pointer on the screen .
* @property position
2013-05-28 20:38:37 +00:00
* @type { Vec2 }
2013-05-16 01:36:58 +00:00
* * /
2013-05-28 20:38:37 +00:00
public position : Vec2 = null ;
2013-05-16 01:36:58 +00:00
/ * *
* A Circle object centered on the x / y screen coordinates of the Pointer .
* Default size of 44 px ( Apple ' s recommended "finger tip" size )
* @property circle
* @type { Circle }
* * /
public circle : Circle = null ;
/ * *
*
* @property withinGame
* @type { Boolean }
* /
public withinGame : bool = false ;
2013-05-16 20:34:24 +00:00
/ * *
* If this Pointer is a mouse the button property holds the value of which mouse button was pressed down
* @property button
* @type { Number }
* /
public button : number ;
2013-05-16 01:36:58 +00:00
/ * *
* The horizontal coordinate of point relative to the viewport in pixels , excluding any scroll offset
* @property clientX
* @type { Number }
* /
public clientX : number = - 1 ;
/ * *
* The vertical coordinate of point relative to the viewport in pixels , excluding any scroll offset
* @property clientY
* @type { Number }
* /
public clientY : number = - 1 ;
/ * *
* The horizontal coordinate of point relative to the viewport in pixels , including any scroll offset
* @property pageX
* @type { Number }
* /
public pageX : number = - 1 ;
/ * *
* The vertical coordinate of point relative to the viewport in pixels , including any scroll offset
* @property pageY
* @type { Number }
* /
public pageY : number = - 1 ;
/ * *
* The horizontal coordinate of point relative to the screen in pixels
* @property screenX
* @type { Number }
* /
public screenX : number = - 1 ;
/ * *
* The vertical coordinate of point relative to the screen in pixels
* @property screenY
* @type { Number }
* /
public screenY : number = - 1 ;
/ * *
2013-06-07 06:35:28 +00:00
* The horizontal coordinate of point relative to the game element . This value is automatically scaled based on game size .
2013-05-16 01:36:58 +00:00
* @property x
* @type { Number }
* /
public x : number = - 1 ;
/ * *
2013-06-07 06:35:28 +00:00
* The vertical coordinate of point relative to the game element . This value is automatically scaled based on game size .
2013-05-16 01:36:58 +00:00
* @property y
* @type { Number }
* /
public y : number = - 1 ;
/ * *
* The Element on which the touch point started when it was first placed on the surface , even if the touch point has since moved outside the interactive area of that element .
* @property target
* @type { Any }
* /
public target ;
/ * *
2013-05-16 20:34:24 +00:00
* If the Pointer is a mouse this is true , otherwise false
* @property isMouse
* @type { Boolean }
* * /
public isMouse : bool = false ;
/ * *
* If the Pointer is touching the touchscreen , or the mouse button is held down , isDown is set to true
2013-05-16 01:36:58 +00:00
* @property isDown
* @type { Boolean }
* * /
public isDown : bool = false ;
/ * *
2013-05-16 20:34:24 +00:00
* If the Pointer is not touching the touchscreen , or the mouse button is up , isUp is set to true
2013-05-16 01:36:58 +00:00
* @property isUp
* @type { Boolean }
* * /
public isUp : bool = true ;
/ * *
* A timestamp representing when the Pointer first touched the touchscreen .
* @property timeDown
* @type { Number }
* * /
public timeDown : number = 0 ;
/ * *
* A timestamp representing when the Pointer left the touchscreen .
* @property timeUp
* @type { Number }
* * /
public timeUp : number = 0 ;
/ * *
2013-05-16 20:34:24 +00:00
* A timestamp representing when the Pointer was last tapped or clicked
* @property previousTapTime
2013-05-16 01:36:58 +00:00
* @type { Number }
* * /
2013-05-16 20:34:24 +00:00
public previousTapTime : number = 0 ;
2013-05-16 01:36:58 +00:00
/ * *
* The total number of times this Pointer has been touched to the touchscreen
* @property totalTouches
* @type { Number }
* * /
public totalTouches : number = 0 ;
2013-07-15 20:45:26 +00:00
/ * *
* The number of miliseconds since the last click
* @property msSinceLastClick
* @type { Number }
* * /
public msSinceLastClick : number = Number . MAX_VALUE ;
2013-05-16 01:36:58 +00:00
/ * *
2013-05-16 20:34:24 +00:00
* How long the Pointer has been depressed on the touchscreen . If not currently down it returns - 1 .
2013-05-16 01:36:58 +00:00
* @property duration
* @type { Number }
* * /
public get duration ( ) : number {
2013-05-16 20:34:24 +00:00
if ( this . isUp )
{
return - 1 ;
}
2013-06-02 13:19:12 +00:00
return this . game . time . now - this . timeDown ;
2013-05-16 01:36:58 +00:00
}
2013-06-02 13:19:12 +00:00
/ * *
2013-06-03 11:03:34 +00:00
* The Game Object this Pointer is currently over / touching / dragging .
* @property targetObject
2013-06-02 13:19:12 +00:00
* @type { Any }
* * /
2013-06-03 11:03:34 +00:00
public targetObject = null ;
2013-06-02 13:19:12 +00:00
2013-08-08 02:05:59 +00:00
/ * *
* The top - most Camera that this Pointer is over ( if any , null if none ) .
* If the Pointer is over several cameras that are stacked on - top of each other this is only ever set to the top - most rendered camera .
* @property camera
* @type { Phaser . Camera }
* * /
public camera : Phaser.Camera = null ;
2013-05-16 01:36:58 +00:00
/ * *
2013-06-07 06:35:28 +00:00
* Gets the X value of this Pointer in world coordinates based on the given camera .
2013-05-16 01:36:58 +00:00
* @param { Camera } [ camera ]
* /
2013-08-08 02:24:26 +00:00
public get worldX ( ) : number {
2013-08-08 02:05:59 +00:00
if ( this . camera )
{
2013-08-08 02:24:26 +00:00
return ( this . camera . worldView . x - this . camera . screenView . x ) + this . x ;
2013-08-08 02:05:59 +00:00
}
2013-08-08 02:24:26 +00:00
2013-08-08 02:05:59 +00:00
return null ;
2013-08-08 02:24:26 +00:00
2013-05-16 01:36:58 +00:00
}
/ * *
2013-06-07 06:35:28 +00:00
* Gets the Y value of this Pointer in world coordinates based on the given camera .
2013-05-16 01:36:58 +00:00
* @param { Camera } [ camera ]
* /
2013-08-08 02:24:26 +00:00
public get worldY ( ) : number {
2013-08-08 02:05:59 +00:00
if ( this . camera )
{
2013-08-08 02:24:26 +00:00
return ( this . camera . worldView . y - this . camera . screenView . y ) + this . y ;
2013-08-08 02:05:59 +00:00
}
2013-08-08 02:24:26 +00:00
2013-08-08 02:05:59 +00:00
return null ;
2013-06-05 00:49:08 +00:00
}
2013-05-16 01:36:58 +00:00
/ * *
* Called when the Pointer is pressed onto the touchscreen
* @method start
* @param { Any } event
* /
public start ( event ) : Pointer {
this . identifier = event . identifier ;
this . target = event . target ;
2013-05-16 20:34:24 +00:00
if ( event . button )
{
this . button = event . button ;
}
2013-05-22 23:01:58 +00:00
// Fix to stop rogue browser plugins from blocking the visibility state event
2013-06-05 00:49:08 +00:00
if ( this . game . paused == true && this . game . stage . scale . incorrectOrientation == false )
2013-05-22 23:01:58 +00:00
{
2013-06-02 13:19:12 +00:00
this . game . stage . resumeGame ( ) ;
2013-05-22 23:01:58 +00:00
return this ;
}
2013-05-16 20:34:24 +00:00
this . _history . length = 0 ;
2013-05-16 01:36:58 +00:00
this . active = true ;
this . withinGame = true ;
this . isDown = true ;
this . isUp = false ;
2013-07-15 20:45:26 +00:00
// Work out how long it has been since the last click
this . msSinceLastClick = this . game . time . now - this . timeDown ;
2013-06-02 13:19:12 +00:00
this . timeDown = this . game . time . now ;
2013-07-15 20:45:26 +00:00
2013-05-16 20:34:24 +00:00
this . _holdSent = false ;
2013-05-16 01:36:58 +00:00
2013-06-07 06:35:28 +00:00
// This sets the x/y and other local values
this . move ( event ) ;
2013-06-06 01:47:08 +00:00
// x and y are the old values here?
2013-06-03 11:03:34 +00:00
this . positionDown . setTo ( this . x , this . y ) ;
2013-08-06 02:14:48 +00:00
if ( this . game . input . multiInputOverride == InputManager . MOUSE_OVERRIDES_TOUCH || this . game . input . multiInputOverride == InputManager . MOUSE_TOUCH_COMBINE || ( this . game . input . multiInputOverride == InputManager . TOUCH_OVERRIDES_MOUSE && this . game . input . currentPointers == 0 ) )
2013-05-16 20:34:24 +00:00
{
2013-06-07 06:35:28 +00:00
//this.game.input.x = this.x * this.game.input.scale.x;
//this.game.input.y = this.y * this.game.input.scale.y;
this . game . input . x = this . x ;
this . game . input . y = this . y ;
2013-07-28 23:43:10 +00:00
this . game . input . position . setTo ( this . x , this . y ) ;
2013-06-02 13:19:12 +00:00
this . game . input . onDown . dispatch ( this ) ;
2013-07-28 23:43:10 +00:00
this . game . input . resetSpeed ( this . x , this . y ) ;
2013-05-16 20:34:24 +00:00
}
2013-05-16 01:36:58 +00:00
2013-06-03 11:03:34 +00:00
this . _stateReset = false ;
2013-05-16 01:36:58 +00:00
this . totalTouches ++ ;
2013-05-16 20:34:24 +00:00
if ( this . isMouse == false )
{
2013-06-02 13:19:12 +00:00
this . game . input . currentPointers ++ ;
2013-05-16 20:34:24 +00:00
}
2013-06-03 11:03:34 +00:00
if ( this . targetObject !== null )
{
this . targetObject . input . _touchedHandler ( this ) ;
}
2013-05-16 01:36:58 +00:00
return this ;
}
2013-05-16 20:34:24 +00:00
public update() {
if ( this . active )
{
2013-06-02 13:19:12 +00:00
if ( this . _holdSent == false && this . duration >= this . game . input . holdRate )
2013-05-16 20:34:24 +00:00
{
2013-08-06 02:14:48 +00:00
if ( this . game . input . multiInputOverride == InputManager . MOUSE_OVERRIDES_TOUCH || this . game . input . multiInputOverride == InputManager . MOUSE_TOUCH_COMBINE || ( this . game . input . multiInputOverride == InputManager . TOUCH_OVERRIDES_MOUSE && this . game . input . currentPointers == 0 ) )
2013-05-16 20:34:24 +00:00
{
2013-06-02 13:19:12 +00:00
this . game . input . onHold . dispatch ( this ) ;
2013-05-16 20:34:24 +00:00
}
this . _holdSent = true ;
}
// Update the droppings history
2013-06-02 13:19:12 +00:00
if ( this . game . input . recordPointerHistory && this . game . time . now >= this . _nextDrop )
2013-05-16 20:34:24 +00:00
{
2013-06-02 13:19:12 +00:00
this . _nextDrop = this . game . time . now + this . game . input . recordRate ;
2013-05-22 23:01:58 +00:00
this . _history . push ( { x : this.position.x , y : this.position.y } ) ;
2013-05-16 20:34:24 +00:00
2013-06-02 13:19:12 +00:00
if ( this . _history . length > this . game . input . recordLimit )
2013-05-16 20:34:24 +00:00
{
this . _history . shift ( ) ;
}
}
2013-08-08 02:05:59 +00:00
// Check which camera they are over
this . camera = this . game . world . cameras . getCameraUnderPoint ( this . x , this . y ) ;
2013-05-16 20:34:24 +00:00
}
}
2013-05-16 01:36:58 +00:00
/ * *
* Called when the Pointer is moved on the touchscreen
* @method move
* @param { Any } event
* /
public move ( event ) : Pointer {
2013-05-16 20:34:24 +00:00
if ( event . button )
{
this . button = event . button ;
}
2013-05-16 01:36:58 +00:00
this . clientX = event . clientX ;
this . clientY = event . clientY ;
this . pageX = event . pageX ;
this . pageY = event . pageY ;
this . screenX = event . screenX ;
this . screenY = event . screenY ;
2013-06-07 06:35:28 +00:00
this . x = ( this . pageX - this . game . stage . offset . x ) * this . game . input . scale . x ;
this . y = ( this . pageY - this . game . stage . offset . y ) * this . game . input . scale . y ;
2013-05-16 01:36:58 +00:00
2013-05-22 23:01:58 +00:00
this . position . setTo ( this . x , this . y ) ;
2013-05-18 02:05:28 +00:00
this . circle . x = this . x ;
this . circle . y = this . y ;
2013-05-16 01:36:58 +00:00
2013-08-06 02:14:48 +00:00
if ( this . game . input . multiInputOverride == InputManager . MOUSE_OVERRIDES_TOUCH || this . game . input . multiInputOverride == InputManager . MOUSE_TOUCH_COMBINE || ( this . game . input . multiInputOverride == InputManager . TOUCH_OVERRIDES_MOUSE && this . game . input . currentPointers == 0 ) )
2013-05-16 20:34:24 +00:00
{
2013-06-07 06:35:28 +00:00
this . game . input . activePointer = this ;
this . game . input . x = this . x ;
this . game . input . y = this . y ;
2013-06-02 13:19:12 +00:00
this . game . input . position . setTo ( this . game . input . x , this . game . input . y ) ;
this . game . input . circle . x = this . game . input . x ;
this . game . input . circle . y = this . game . input . y ;
2013-05-16 20:34:24 +00:00
}
2013-05-16 01:36:58 +00:00
2013-08-06 02:14:48 +00:00
// If the game is paused we don't process any target objects
if ( this . game . paused )
{
return this ;
}
2013-07-12 02:28:46 +00:00
// Easy out if we're dragging something and it still exists
if ( this . targetObject !== null && this . targetObject . input && this . targetObject . input . isDragged == true )
2013-06-03 11:03:34 +00:00
{
if ( this . targetObject . input . update ( this ) == false )
{
this . targetObject = null ;
}
2013-07-12 02:28:46 +00:00
return this ;
2013-06-03 11:03:34 +00:00
}
2013-07-12 02:28:46 +00:00
// Work out which object is on the top
this . _highestRenderOrderID = - 1 ;
this . _highestRenderObject = - 1 ;
this . _highestInputPriorityID = - 1 ;
for ( var i = 0 ; i < this . game . input . totalTrackedObjects ; i ++ )
{
if ( this . game . input . inputObjects [ i ] && this . game . input . inputObjects [ i ] . input && this . game . input . inputObjects [ i ] . input . checkPointerOver ( this ) )
2013-06-03 11:03:34 +00:00
{
2013-08-06 02:14:48 +00:00
// If the object has a higher InputManager.PriorityID OR if the priority ID is the same as the current highest AND it has a higher renderOrderID, then set it to the top
2013-07-12 02:28:46 +00:00
if ( this . game . input . inputObjects [ i ] . input . priorityID > this . _highestInputPriorityID || ( this . game . input . inputObjects [ i ] . input . priorityID == this . _highestInputPriorityID && this . game . input . inputObjects [ i ] . renderOrderID > this . _highestRenderOrderID ) )
2013-06-03 11:03:34 +00:00
{
2013-07-12 02:28:46 +00:00
this . _highestRenderOrderID = this . game . input . inputObjects [ i ] . renderOrderID ;
this . _highestRenderObject = i ;
this . _highestInputPriorityID = this . game . input . inputObjects [ i ] . input . priorityID ;
2013-06-03 11:03:34 +00:00
}
}
2013-07-12 02:28:46 +00:00
}
2013-06-03 11:03:34 +00:00
2013-07-12 02:28:46 +00:00
if ( this . _highestRenderObject == - 1 )
{
// The pointer isn't over anything, check if we've got a lingering previous target
if ( this . targetObject !== null )
{
this . targetObject . input . _pointerOutHandler ( this ) ;
this . targetObject = null ;
}
}
else
{
if ( this . targetObject == null )
2013-06-03 11:03:34 +00:00
{
2013-07-12 02:28:46 +00:00
// And now set the new one
this . targetObject = this . game . input . inputObjects [ this . _highestRenderObject ] ;
2013-06-03 11:03:34 +00:00
this . targetObject . input . _pointerOverHandler ( this ) ;
}
2013-07-12 02:28:46 +00:00
else
{
// We've got a target from the last update
if ( this . targetObject == this . game . input . inputObjects [ this . _highestRenderObject ] )
{
// Same target as before, so update it
if ( this . targetObject . input . update ( this ) == false )
{
this . targetObject = null ;
}
}
else
{
// The target has changed, so tell the old one we've left it
this . targetObject . input . _pointerOutHandler ( this ) ;
2013-06-05 01:58:16 +00:00
2013-07-12 02:28:46 +00:00
// And now set the new one
this . targetObject = this . game . input . inputObjects [ this . _highestRenderObject ] ;
this . targetObject . input . _pointerOverHandler ( this ) ;
}
}
2013-06-03 11:03:34 +00:00
}
2013-05-16 01:36:58 +00:00
return this ;
}
/ * *
* Called when the Pointer leaves the target area
* @method leave
* @param { Any } event
* /
public leave ( event ) {
this . withinGame = false ;
this . move ( event ) ;
}
/ * *
* Called when the Pointer leaves the touchscreen
* @method stop
* @param { Any } event
* /
public stop ( event ) : Pointer {
2013-06-03 11:03:34 +00:00
if ( this . _stateReset )
{
event . preventDefault ( ) ;
return ;
}
2013-06-02 13:19:12 +00:00
this . timeUp = this . game . time . now ;
2013-05-16 20:34:24 +00:00
2013-08-06 02:14:48 +00:00
if ( this . game . input . multiInputOverride == InputManager . MOUSE_OVERRIDES_TOUCH || this . game . input . multiInputOverride == InputManager . MOUSE_TOUCH_COMBINE || ( this . game . input . multiInputOverride == InputManager . TOUCH_OVERRIDES_MOUSE && this . game . input . currentPointers == 0 ) )
2013-05-16 20:34:24 +00:00
{
2013-06-02 13:19:12 +00:00
this . game . input . onUp . dispatch ( this ) ;
2013-05-16 20:34:24 +00:00
// Was it a tap?
2013-06-02 13:19:12 +00:00
if ( this . duration >= 0 && this . duration <= this . game . input . tapRate )
2013-05-16 20:34:24 +00:00
{
// Was it a double-tap?
2013-06-02 13:19:12 +00:00
if ( this . timeUp - this . previousTapTime < this . game . input . doubleTapRate )
2013-05-16 20:34:24 +00:00
{
2013-05-17 05:49:43 +00:00
// Yes, let's dispatch the signal then with the 2nd parameter set to true
2013-06-02 13:19:12 +00:00
this . game . input . onTap . dispatch ( this , true ) ;
2013-05-17 05:49:43 +00:00
}
else
{
// Wasn't a double-tap, so dispatch a single tap signal
2013-06-02 13:19:12 +00:00
this . game . input . onTap . dispatch ( this , false ) ;
2013-05-16 20:34:24 +00:00
}
this . previousTapTime = this . timeUp ;
}
}
2013-06-02 13:19:12 +00:00
// Mouse is always active
if ( this . id > 0 )
{
this . active = false ;
}
2013-05-16 01:36:58 +00:00
this . withinGame = false ;
this . isDown = false ;
this . isUp = true ;
2013-05-16 20:34:24 +00:00
if ( this . isMouse == false )
{
2013-06-02 13:19:12 +00:00
this . game . input . currentPointers -- ;
2013-05-16 20:34:24 +00:00
}
2013-05-16 01:36:58 +00:00
2013-06-03 00:22:14 +00:00
for ( var i = 0 ; i < this . game . input . totalTrackedObjects ; i ++ )
{
2013-07-12 02:28:46 +00:00
if ( this . game . input . inputObjects [ i ] && this . game . input . inputObjects [ i ] . input && this . game . input . inputObjects [ i ] . input . enabled )
2013-06-03 00:22:14 +00:00
{
this . game . input . inputObjects [ i ] . input . _releasedHandler ( this ) ;
}
}
2013-06-03 11:03:34 +00:00
if ( this . targetObject )
{
this . targetObject . input . _releasedHandler ( this ) ;
}
this . targetObject = null ;
2013-06-03 00:22:14 +00:00
2013-05-16 01:36:58 +00:00
return this ;
}
/ * *
2013-05-16 20:34:24 +00:00
* The Pointer is considered justPressed if the time it was pressed onto the touchscreen or clicked is less than justPressedRate
2013-05-16 01:36:58 +00:00
* @method justPressed
* @param { Number } [ duration ] .
* @return { Boolean }
* /
2013-06-02 13:19:12 +00:00
public justPressed ( duration? : number = this . game . input . justPressedRate ) : bool {
2013-05-16 01:36:58 +00:00
2013-06-02 13:19:12 +00:00
if ( this . isDown === true && ( this . timeDown + duration ) > this . game . time . now )
2013-05-16 01:36:58 +00:00
{
return true ;
}
else
{
return false ;
}
}
/ * *
* The Pointer is considered justReleased if the time it left the touchscreen is less than justReleasedRate
* @method justReleased
* @param { Number } [ duration ] .
* @return { Boolean }
* /
2013-06-02 13:19:12 +00:00
public justReleased ( duration? : number = this . game . input . justReleasedRate ) : bool {
2013-05-16 01:36:58 +00:00
2013-06-02 13:19:12 +00:00
if ( this . isUp === true && ( this . timeUp + duration ) > this . game . time . now )
2013-05-16 01:36:58 +00:00
{
return true ;
}
else
{
return false ;
}
}
2013-05-16 20:34:24 +00:00
/ * *
2013-08-06 02:14:48 +00:00
* Resets the Pointer properties . Called by InputManager . reset when you perform a State change .
2013-05-16 20:34:24 +00:00
* @method reset
* /
2013-05-16 01:36:58 +00:00
public reset() {
2013-06-03 11:03:34 +00:00
if ( this . isMouse == false )
{
this . active = false ;
}
2013-05-16 01:36:58 +00:00
this . identifier = null ;
this . isDown = false ;
this . isUp = true ;
this . totalTouches = 0 ;
2013-05-16 20:34:24 +00:00
this . _holdSent = false ;
this . _history . length = 0 ;
2013-06-03 11:03:34 +00:00
this . _stateReset = true ;
2013-06-05 00:49:08 +00:00
2013-07-12 02:28:46 +00:00
if ( this . targetObject && this . targetObject . input )
2013-06-05 00:49:08 +00:00
{
this . targetObject . input . _releasedHandler ( this ) ;
}
2013-06-03 11:03:34 +00:00
this . targetObject = null ;
2013-05-16 01:36:58 +00:00
}
/ * *
* Returns a string representation of this object .
* @method toString
* @return { String } a string representation of the instance .
* * /
public toString ( ) : string {
return "[{Pointer (id=" + this . id + " identifer=" + this . identifier + " active=" + this . active + " duration=" + this . duration + " withinGame=" + this . withinGame + " x=" + this . x + " y=" + this . y + " clientX=" + this . clientX + " clientY=" + this . clientY + " screenX=" + this . screenX + " screenY=" + this . screenY + " pageX=" + this . pageX + " pageY=" + this . pageY + ")}]" ;
}
}
}