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}
|
|
|
|
*/
|
|
|
|
|
2017-09-09 02:17:13 +00:00
|
|
|
var Class = require('../../utils/Class');
|
2018-03-30 11:03:06 +00:00
|
|
|
var EventEmitter = require('eventemitter3');
|
2017-09-09 02:17:13 +00:00
|
|
|
var Gamepad = require('./Gamepad');
|
|
|
|
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Gamepad_API
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Gamepad_API/Using_the_Gamepad_API
|
|
|
|
// https://www.smashingmagazine.com/2015/11/gamepad-api-in-web-games/
|
2017-09-11 00:28:09 +00:00
|
|
|
// http://html5gamepad.com/
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-03-19 12:43:19 +00:00
|
|
|
/**
|
|
|
|
* @typedef {object} Pad
|
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* @property {string} id - The ID of the Gamepad.
|
|
|
|
* @property {integer} index - The index of the Gamepad.
|
2018-03-27 13:59:49 +00:00
|
|
|
*/
|
|
|
|
|
2018-02-07 15:27:21 +00:00
|
|
|
/**
|
|
|
|
* @classdesc
|
2018-06-06 22:05:10 +00:00
|
|
|
* The Gamepad Manager is a helper class that belongs to the Input Manager.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* Its role is to listen for native DOM Gamepad Events and then process them.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* You do not need to create this class directly, the Input Manager will create an instance of it automatically.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* You can access it from within a Scene using `this.input.gamepad`. For example, you can do:
|
|
|
|
*
|
|
|
|
* ```javascript
|
|
|
|
* ```
|
2018-02-07 15:27:21 +00:00
|
|
|
*
|
|
|
|
* @class GamepadManager
|
2018-03-30 11:03:06 +00:00
|
|
|
* @extends Phaser.Events.EventEmitter
|
2018-02-07 15:27:21 +00:00
|
|
|
* @memberOf Phaser.Input.Gamepad
|
|
|
|
* @constructor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* @param {Phaser.Input.InputManager} inputManager - A reference to the Input Manager.
|
2018-02-07 15:27:21 +00:00
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
var GamepadManager = new Class({
|
|
|
|
|
2018-03-30 11:03:06 +00:00
|
|
|
Extends: EventEmitter,
|
|
|
|
|
2017-09-09 02:17:13 +00:00
|
|
|
initialize:
|
|
|
|
|
|
|
|
function GamepadManager (inputManager)
|
|
|
|
{
|
2018-03-30 11:03:06 +00:00
|
|
|
EventEmitter.call(this);
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* A reference to the Input Manager.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
2018-02-13 01:13:12 +00:00
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#manager
|
|
|
|
* @type {Phaser.Input.InputManager}
|
2018-01-26 06:55:15 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
this.manager = inputManager;
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* A boolean that controls if the Gamepad Manager is enabled or not.
|
|
|
|
* Can be toggled on the fly.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
2018-02-13 01:13:12 +00:00
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#enabled
|
|
|
|
* @type {boolean}
|
2018-06-06 22:05:10 +00:00
|
|
|
* @default true
|
2018-01-26 06:55:15 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-06-06 22:05:10 +00:00
|
|
|
this.enabled = true;
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* The Gamepad Event target, as defined in the Game Config.
|
|
|
|
* Typically the browser window, but can be any interactive DOM element.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
2018-02-13 01:13:12 +00:00
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#target
|
2018-06-06 22:05:10 +00:00
|
|
|
* @type {any}
|
2018-01-26 06:55:15 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
this.target;
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* An array of the connected Gamepads.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
2018-02-13 01:13:12 +00:00
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#gamepads
|
2018-03-19 12:43:19 +00:00
|
|
|
* @type {Phaser.Input.Gamepad.Gamepad[]}
|
2018-01-26 06:55:15 +00:00
|
|
|
* @default []
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
this.gamepads = [];
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* An internal event queue.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
2018-02-13 01:13:12 +00:00
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#queue
|
2018-03-19 12:43:19 +00:00
|
|
|
* @type {GamepadEvent[]}
|
2018-06-06 22:05:10 +00:00
|
|
|
* @private
|
2018-01-26 06:55:15 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
this.queue = [];
|
2018-05-25 18:27:26 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
this._pad1;
|
|
|
|
this._pad2;
|
|
|
|
this._pad3;
|
|
|
|
this._pad4;
|
|
|
|
|
2018-05-25 18:27:26 +00:00
|
|
|
inputManager.events.once('boot', this.boot, this);
|
2017-09-09 02:17:13 +00:00
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* The Boot handler is called by Phaser.Game when it first starts up.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#boot
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
boot: function ()
|
|
|
|
{
|
|
|
|
var config = this.manager.config;
|
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
this.enabled = (config.inputGamepad && this.manager.game.device.input.gamepads);
|
|
|
|
this.target = config.inputGamepadEventTarget;
|
2017-09-09 02:17:13 +00:00
|
|
|
|
|
|
|
if (this.enabled)
|
|
|
|
{
|
|
|
|
this.startListeners();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* The Gamepad Connected Event Handler.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#onGamepadConnected
|
|
|
|
* @since 3.10.0
|
|
|
|
*
|
|
|
|
* @param {GamepadEvent} event - The native DOM Gamepad Event.
|
2018-01-26 06:55:15 +00:00
|
|
|
*/
|
2018-06-06 22:05:10 +00:00
|
|
|
onGamepadConnected: function (event)
|
2017-09-09 02:17:13 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
// console.log(event);
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
if (event.defaultPrevented || !this.enabled)
|
2017-09-09 02:17:13 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
// Do nothing if event already handled
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.refreshPads();
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
this.queue.push(event);
|
|
|
|
},
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
/**
|
|
|
|
* The Gamepad Disconnected Event Handler.
|
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#onGamepadDisconnected
|
|
|
|
* @since 3.10.0
|
|
|
|
*
|
|
|
|
* @param {GamepadEvent} event - The native DOM Gamepad Event.
|
|
|
|
*/
|
|
|
|
onGamepadDisconnected: function (event)
|
|
|
|
{
|
|
|
|
if (event.defaultPrevented || !this.enabled)
|
|
|
|
{
|
|
|
|
// Do nothing if event already handled
|
|
|
|
return;
|
|
|
|
}
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
this.refreshPads();
|
|
|
|
|
|
|
|
this.queue.push(event);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the Gamepad Event listeners running.
|
|
|
|
* This is called automatically and does not need to be manually invoked.
|
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#startListeners
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
startListeners: function ()
|
|
|
|
{
|
2018-01-26 06:55:15 +00:00
|
|
|
var target = this.target;
|
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
target.addEventListener('gamepadconnected', this.onGamepadConnected.bind(this), false);
|
|
|
|
target.addEventListener('gamepaddisconnected', this.onGamepadDisconnected.bind(this), false);
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
// FF also supports gamepadbuttondown, gamepadbuttonup and gamepadaxismove but
|
|
|
|
// nothing else does, and we can get those values via the gamepads anyway, so we will
|
|
|
|
// until more browsers support this
|
2018-05-25 18:27:26 +00:00
|
|
|
|
|
|
|
// Finally, listen for an update event from the Input Manager
|
|
|
|
this.manager.events.on('update', this.update, this);
|
2017-09-09 02:17:13 +00:00
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* Stops the Gamepad Event listeners.
|
|
|
|
* This is called automatically and does not need to be manually invoked.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#stopListeners
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
stopListeners: function ()
|
|
|
|
{
|
2018-01-26 06:55:15 +00:00
|
|
|
var target = this.target;
|
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
target.removeEventListener('gamepadconnected', this.onGamepadConnected);
|
|
|
|
target.removeEventListener('gamepaddisconnected', this.onGamepadDisconnected);
|
2018-05-25 18:27:26 +00:00
|
|
|
|
|
|
|
this.manager.events.off('update', this.update);
|
2017-09-09 02:17:13 +00:00
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* Disconnects all current Gamepads.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#disconnectAll
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
disconnectAll: function ()
|
|
|
|
{
|
|
|
|
for (var i = 0; i < this.gamepads.length; i++)
|
|
|
|
{
|
|
|
|
this.gamepads.connected = false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* Refreshes the list of connected Gamepads.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* This is called automatically when a gamepad is connected or disconnected,
|
|
|
|
* and during the update loop.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#refreshPads
|
2018-06-06 22:05:10 +00:00
|
|
|
* @private
|
2018-01-26 06:55:15 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-06-06 22:05:10 +00:00
|
|
|
refreshPads: function ()
|
2017-09-09 02:17:13 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
var connectedPads = navigator.getGamepads();
|
|
|
|
|
|
|
|
if (!connectedPads)
|
2017-09-09 02:17:13 +00:00
|
|
|
{
|
|
|
|
this.disconnectAll();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
var currentPads = this.gamepads;
|
|
|
|
|
|
|
|
for (var i = 0; i < connectedPads.length; i++)
|
2017-09-09 02:17:13 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
var livePad = connectedPads[i];
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
// Because sometimes they're null (yes, really)
|
|
|
|
if (!livePad)
|
2017-09-09 02:17:13 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
var id = livePad.id;
|
|
|
|
var index = livePad.index;
|
|
|
|
var currentPad = currentPads[index];
|
|
|
|
|
|
|
|
if (!currentPad)
|
2017-09-09 02:17:13 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
// A new Gamepad, not currently stored locally
|
2018-06-07 15:04:27 +00:00
|
|
|
var newPad = new Gamepad(this, livePad);
|
2018-06-06 22:05:10 +00:00
|
|
|
|
|
|
|
currentPads[index] = newPad;
|
|
|
|
|
|
|
|
if (!this._pad1)
|
|
|
|
{
|
|
|
|
this._pad1 = newPad;
|
|
|
|
}
|
|
|
|
else if (!this._pad2)
|
|
|
|
{
|
|
|
|
this._pad2 = newPad;
|
|
|
|
}
|
|
|
|
else if (!this._pad3)
|
|
|
|
{
|
|
|
|
this._pad3 = newPad;
|
|
|
|
}
|
|
|
|
else if (!this._pad4)
|
|
|
|
{
|
|
|
|
this._pad4 = newPad;
|
|
|
|
}
|
2017-09-09 02:17:13 +00:00
|
|
|
}
|
2018-06-06 22:05:10 +00:00
|
|
|
else if (currentPad.id !== id)
|
|
|
|
{
|
|
|
|
// A new Gamepad with a different vendor string, but it has got the same index as an old one
|
|
|
|
currentPad.destroy();
|
2017-09-09 02:17:13 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
currentPads[index] = new Gamepad(this, livePad);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If neither of these, it's a pad we've already got, so update it
|
|
|
|
currentPad.update(livePad);
|
|
|
|
}
|
2017-09-09 02:17:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* Returns an array of all currently connected Gamepads.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#getAll
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* @return {Phaser.Input.Gamepad.Gamepad[]} An array of all currently connected Gamepads.
|
2018-01-26 06:55:15 +00:00
|
|
|
*/
|
2017-09-11 00:28:09 +00:00
|
|
|
getAll: function ()
|
|
|
|
{
|
|
|
|
var out = [];
|
2018-06-06 22:05:10 +00:00
|
|
|
var pads = this.gamepads;
|
2017-09-11 00:28:09 +00:00
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
for (var i = 0; i < pads.length; i++)
|
2017-09-11 00:28:09 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
if (pads[i])
|
2017-09-11 00:28:09 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
out.push(pads[i]);
|
2017-09-11 00:28:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return out;
|
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* Looks-up a single Gamepad based on the given index value.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#getPad
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* @param {number} index - The index of the Gamepad to get.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* @return {Phaser.Input.Gamepad.Gamepad} The Gamepad matching the given index, or undefined if none were found.
|
2018-01-26 06:55:15 +00:00
|
|
|
*/
|
2017-09-11 00:28:09 +00:00
|
|
|
getPad: function (index)
|
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
var pads = this.gamepads;
|
|
|
|
|
|
|
|
for (var i = 0; i < pads.length; i++)
|
2017-09-11 00:28:09 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
if (pads[i] && pads[i].index === index)
|
2017-09-11 00:28:09 +00:00
|
|
|
{
|
2018-06-06 22:05:10 +00:00
|
|
|
return pads[i];
|
2017-09-11 00:28:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* The internal update loop. Refreshes all connected gamepads and processes their events.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* Called automatically by the Input Manager, invoked from the Game step.
|
2018-01-26 06:55:15 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#update
|
2018-06-06 22:05:10 +00:00
|
|
|
* @private
|
2018-01-26 06:55:15 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-09 02:17:13 +00:00
|
|
|
update: function ()
|
|
|
|
{
|
|
|
|
if (!this.enabled)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
this.refreshPads();
|
2017-09-09 02:17:13 +00:00
|
|
|
|
|
|
|
var len = this.queue.length;
|
|
|
|
|
|
|
|
if (len === 0)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var queue = this.queue.splice(0, len);
|
|
|
|
|
|
|
|
// Process the event queue, dispatching all of the events that have stored up
|
|
|
|
for (var i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
var event = queue[i];
|
2017-09-11 00:28:09 +00:00
|
|
|
var pad;
|
2017-09-09 02:17:13 +00:00
|
|
|
|
|
|
|
switch (event.type)
|
|
|
|
{
|
|
|
|
case 'gamepadconnected':
|
2017-09-11 00:28:09 +00:00
|
|
|
|
|
|
|
pad = this.getPad(event.gamepad.index);
|
|
|
|
|
2018-03-30 11:03:06 +00:00
|
|
|
this.emit('connected', pad, event);
|
2017-09-11 00:28:09 +00:00
|
|
|
|
2017-09-09 02:17:13 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'gamepaddisconnected':
|
2017-09-11 00:28:09 +00:00
|
|
|
|
|
|
|
pad = this.getPad(event.gamepad.index);
|
|
|
|
|
2018-03-30 11:03:06 +00:00
|
|
|
this.emit('disconnected', pad, event);
|
2017-09-11 00:28:09 +00:00
|
|
|
|
2017-09-09 02:17:13 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2017-09-11 00:28:09 +00:00
|
|
|
},
|
|
|
|
|
2018-01-31 03:38:10 +00:00
|
|
|
/**
|
2018-06-06 22:05:10 +00:00
|
|
|
* Destroys this Gamepad Manager, disconnecting all Gamepads and releasing internal references.
|
2018-01-31 03:38:10 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Input.Gamepad.GamepadManager#destroy
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.stopListeners();
|
|
|
|
this.disconnectAll();
|
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
this.removeAllListeners();
|
|
|
|
|
|
|
|
for (var i = 0; i < this.gamepads.length; i++)
|
|
|
|
{
|
|
|
|
if (this.gamepads[i])
|
|
|
|
{
|
|
|
|
this.gamepads[i].destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-31 03:38:10 +00:00
|
|
|
this.gamepads = [];
|
2018-06-06 22:05:10 +00:00
|
|
|
|
|
|
|
this.target = null;
|
|
|
|
this.manager = null;
|
2018-01-31 03:38:10 +00:00
|
|
|
},
|
|
|
|
|
2018-01-26 06:55:15 +00:00
|
|
|
/**
|
|
|
|
* The total number of connected game pads.
|
2018-03-19 12:43:19 +00:00
|
|
|
*
|
2018-01-26 06:55:15 +00:00
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#total
|
2018-06-06 22:05:10 +00:00
|
|
|
* @type {integer}
|
2018-01-26 06:55:15 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-09-11 00:28:09 +00:00
|
|
|
total: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this.gamepads.length;
|
|
|
|
}
|
|
|
|
|
2018-06-06 22:05:10 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A reference to the first connected Gamepad.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* This will be undefined if either no pads are connected, or the browser
|
|
|
|
* has not yet issued a gamepadconnect, which can happen even if a Gamepad
|
|
|
|
* is plugged in, but hasn't yet had any buttons pressed on it.
|
|
|
|
*
|
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#pad1
|
|
|
|
* @type {Phaser.Input.Gamepad.Gamepad}
|
|
|
|
* @since 3.10.0
|
|
|
|
*/
|
|
|
|
pad1: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this._pad1;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A reference to the second connected Gamepad.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* This will be undefined if either no pads are connected, or the browser
|
|
|
|
* has not yet issued a gamepadconnect, which can happen even if a Gamepad
|
|
|
|
* is plugged in, but hasn't yet had any buttons pressed on it.
|
|
|
|
*
|
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#pad2
|
|
|
|
* @type {Phaser.Input.Gamepad.Gamepad}
|
|
|
|
* @since 3.10.0
|
|
|
|
*/
|
|
|
|
pad2: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this._pad2;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A reference to the third connected Gamepad.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* This will be undefined if either no pads are connected, or the browser
|
|
|
|
* has not yet issued a gamepadconnect, which can happen even if a Gamepad
|
|
|
|
* is plugged in, but hasn't yet had any buttons pressed on it.
|
|
|
|
*
|
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#pad3
|
|
|
|
* @type {Phaser.Input.Gamepad.Gamepad}
|
|
|
|
* @since 3.10.0
|
|
|
|
*/
|
|
|
|
pad3: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this._pad3;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A reference to the fourth connected Gamepad.
|
2018-06-07 15:04:27 +00:00
|
|
|
*
|
2018-06-06 22:05:10 +00:00
|
|
|
* This will be undefined if either no pads are connected, or the browser
|
|
|
|
* has not yet issued a gamepadconnect, which can happen even if a Gamepad
|
|
|
|
* is plugged in, but hasn't yet had any buttons pressed on it.
|
|
|
|
*
|
|
|
|
* @name Phaser.Input.Gamepad.GamepadManager#pad4
|
|
|
|
* @type {Phaser.Input.Gamepad.Gamepad}
|
|
|
|
* @since 3.10.0
|
|
|
|
*/
|
|
|
|
pad4: {
|
|
|
|
|
|
|
|
get: function ()
|
|
|
|
{
|
|
|
|
return this._pad4;
|
|
|
|
}
|
|
|
|
|
2017-09-09 02:17:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = GamepadManager;
|