2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2013 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2013-08-31 12:54:59 +00:00
|
|
|
/**
|
2013-10-02 14:05:55 +00:00
|
|
|
* Phaser.Touch handles touch events with your game. Note: Android 2.x only supports 1 touch event at once, no multi-touch.
|
2013-08-31 12:54:59 +00:00
|
|
|
*
|
2013-10-02 14:05:55 +00:00
|
|
|
* @class Phaser.Touch
|
2013-10-01 12:54:29 +00:00
|
|
|
* @classdesc The Touch class handles touch interactions with the game and the resulting Pointer objects.
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
2013-08-31 20:50:34 +00:00
|
|
|
Phaser.Touch = function (game) {
|
2013-08-31 12:54:59 +00:00
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {Phaser.Game} game - Local reference to game.
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
|
|
|
this.game = game;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* You can disable all Input by setting disabled = true. While set all new input related events will be ignored.
|
|
|
|
* @method Phaser.Touch#disabled
|
|
|
|
* @return {boolean}
|
|
|
|
*/
|
|
|
|
this.disabled = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} callbackContext - Description.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this.callbackContext = this.game;
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} touchStartCallback - Description.
|
|
|
|
* @default
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this.touchStartCallback = null;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} touchMoveCallback - Description.
|
|
|
|
* @default
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this.touchMoveCallback = null;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} touchEndCallback - Description.
|
|
|
|
* @default
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this.touchEndCallback = null;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} touchEnterCallback - Description.
|
|
|
|
* @default
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this.touchEnterCallback = null;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} touchLeaveCallback - Description.
|
|
|
|
* @default
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this.touchLeaveCallback = null;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* @property {Description} touchCancelCallback - Description.
|
|
|
|
* @default
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this.touchCancelCallback = null;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
|
|
|
* @property {boolean} preventDefault - Description.
|
|
|
|
* @default
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-11 12:21:07 +00:00
|
|
|
this.preventDefault = true;
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
this._onTouchStart = null;
|
|
|
|
this._onTouchMove = null;
|
|
|
|
this._onTouchEnd = null;
|
|
|
|
this._onTouchEnter = null;
|
|
|
|
this._onTouchLeave = null;
|
|
|
|
this._onTouchCancel = null;
|
|
|
|
this._onTouchMove = null;
|
|
|
|
|
2013-08-31 12:54:59 +00:00
|
|
|
};
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
Phaser.Touch.prototype = {
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Starts the event listeners running.
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#start
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
|
|
|
start: function () {
|
|
|
|
|
|
|
|
var _this = this;
|
|
|
|
|
|
|
|
if (this.game.device.touch)
|
|
|
|
{
|
|
|
|
this._onTouchStart = function (event) {
|
|
|
|
return _this.onTouchStart(event);
|
|
|
|
};
|
|
|
|
|
|
|
|
this._onTouchMove = function (event) {
|
|
|
|
return _this.onTouchMove(event);
|
|
|
|
};
|
|
|
|
|
|
|
|
this._onTouchEnd = function (event) {
|
|
|
|
return _this.onTouchEnd(event);
|
|
|
|
};
|
|
|
|
|
|
|
|
this._onTouchEnter = function (event) {
|
|
|
|
return _this.onTouchEnter(event);
|
|
|
|
};
|
|
|
|
|
|
|
|
this._onTouchLeave = function (event) {
|
|
|
|
return _this.onTouchLeave(event);
|
|
|
|
};
|
|
|
|
|
|
|
|
this._onTouchCancel = function (event) {
|
|
|
|
return _this.onTouchCancel(event);
|
|
|
|
};
|
|
|
|
|
2013-09-10 15:46:39 +00:00
|
|
|
this.game.renderer.view.addEventListener('touchstart', this._onTouchStart, false);
|
|
|
|
this.game.renderer.view.addEventListener('touchmove', this._onTouchMove, false);
|
|
|
|
this.game.renderer.view.addEventListener('touchend', this._onTouchEnd, false);
|
|
|
|
this.game.renderer.view.addEventListener('touchenter', this._onTouchEnter, false);
|
|
|
|
this.game.renderer.view.addEventListener('touchleave', this._onTouchLeave, false);
|
|
|
|
this.game.renderer.view.addEventListener('touchcancel', this._onTouchCancel, false);
|
2013-08-31 12:54:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Consumes all touchmove events on the document (only enable this if you know you need it!).
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#consumeTouchMove
|
|
|
|
*/
|
2013-09-11 12:21:07 +00:00
|
|
|
consumeDocumentTouches: function () {
|
|
|
|
|
|
|
|
this._documentTouchMove = function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
};
|
2013-08-31 12:54:59 +00:00
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
document.addEventListener('touchmove', this._documentTouchMove, false);
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Description.
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#onTouchStart
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {Any} event
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
onTouchStart: function (event) {
|
|
|
|
|
|
|
|
if (this.touchStartCallback)
|
|
|
|
{
|
|
|
|
this.touchStartCallback.call(this.callbackContext, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.game.input.disabled || this.disabled)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
if (this.preventDefault)
|
|
|
|
{
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
// event.targetTouches = list of all touches on the TARGET ELEMENT (i.e. game dom element)
|
|
|
|
// event.touches = list of all touches on the ENTIRE DOCUMENT, not just the target element
|
|
|
|
// event.changedTouches = the touches that CHANGED in this event, not the total number of them
|
|
|
|
for (var i = 0; i < event.changedTouches.length; i++)
|
|
|
|
{
|
|
|
|
this.game.input.startPointer(event.changedTouches[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Touch cancel - touches that were disrupted (perhaps by moving into a plugin or browser chrome).
|
|
|
|
* Occurs for example on iOS when you put down 4 fingers and the app selector UI appears.
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#onTouchCancel
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {Any} event
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
onTouchCancel: function (event) {
|
|
|
|
|
|
|
|
if (this.touchCancelCallback)
|
|
|
|
{
|
|
|
|
this.touchCancelCallback.call(this.callbackContext, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.game.input.disabled || this.disabled)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
if (this.preventDefault)
|
|
|
|
{
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
// Touch cancel - touches that were disrupted (perhaps by moving into a plugin or browser chrome)
|
|
|
|
// http://www.w3.org/TR/touch-events/#dfn-touchcancel
|
|
|
|
for (var i = 0; i < event.changedTouches.length; i++)
|
|
|
|
{
|
|
|
|
this.game.input.stopPointer(event.changedTouches[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* For touch enter and leave its a list of the touch points that have entered or left the target.
|
|
|
|
* Doesn't appear to be supported by most browsers on a canvas element yet.
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#onTouchEnter
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {Any} event
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
onTouchEnter: function (event) {
|
|
|
|
|
|
|
|
if (this.touchEnterCallback)
|
|
|
|
{
|
|
|
|
this.touchEnterCallback.call(this.callbackContext, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.game.input.disabled || this.disabled)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
if (this.preventDefault)
|
|
|
|
{
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
for (var i = 0; i < event.changedTouches.length; i++)
|
|
|
|
{
|
|
|
|
//console.log('touch enter');
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* For touch enter and leave its a list of the touch points that have entered or left the target.
|
|
|
|
* Doesn't appear to be supported by most browsers on a canvas element yet.
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#onTouchLeave
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {Any} event
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
onTouchLeave: function (event) {
|
|
|
|
|
|
|
|
if (this.touchLeaveCallback)
|
|
|
|
{
|
|
|
|
this.touchLeaveCallback.call(this.callbackContext, event);
|
|
|
|
}
|
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
if (this.preventDefault)
|
|
|
|
{
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
for (var i = 0; i < event.changedTouches.length; i++)
|
|
|
|
{
|
|
|
|
//console.log('touch leave');
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Description.
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#onTouchMove
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {Any} event
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
onTouchMove: function (event) {
|
|
|
|
|
|
|
|
if (this.touchMoveCallback)
|
|
|
|
{
|
|
|
|
this.touchMoveCallback.call(this.callbackContext, event);
|
|
|
|
}
|
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
if (this.preventDefault)
|
|
|
|
{
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
for (var i = 0; i < event.changedTouches.length; i++)
|
|
|
|
{
|
|
|
|
this.game.input.updatePointer(event.changedTouches[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Description.
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#onTouchEnd
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {Any} event
|
2013-10-02 14:05:55 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
onTouchEnd: function (event) {
|
|
|
|
|
|
|
|
if (this.touchEndCallback)
|
|
|
|
{
|
|
|
|
this.touchEndCallback.call(this.callbackContext, event);
|
|
|
|
}
|
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
if (this.preventDefault)
|
|
|
|
{
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
// For touch end its a list of the touch points that have been removed from the surface
|
|
|
|
// https://developer.mozilla.org/en-US/docs/DOM/TouchList
|
|
|
|
// event.changedTouches = the touches that CHANGED in this event, not the total number of them
|
|
|
|
for (var i = 0; i < event.changedTouches.length; i++)
|
|
|
|
{
|
|
|
|
this.game.input.stopPointer(event.changedTouches[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 14:05:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Stop the event listeners.
|
2013-10-02 14:05:55 +00:00
|
|
|
* @method Phaser.Touch#stop
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
|
|
|
stop: function () {
|
|
|
|
|
|
|
|
if (this.game.device.touch)
|
|
|
|
{
|
|
|
|
this.game.stage.canvas.removeEventListener('touchstart', this._onTouchStart);
|
|
|
|
this.game.stage.canvas.removeEventListener('touchmove', this._onTouchMove);
|
|
|
|
this.game.stage.canvas.removeEventListener('touchend', this._onTouchEnd);
|
|
|
|
this.game.stage.canvas.removeEventListener('touchenter', this._onTouchEnter);
|
|
|
|
this.game.stage.canvas.removeEventListener('touchleave', this._onTouchLeave);
|
|
|
|
this.game.stage.canvas.removeEventListener('touchcancel', this._onTouchCancel);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|