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}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Phaser - Keyboard constructor.
|
|
|
|
*
|
|
|
|
* @class Phaser.Keyboard
|
|
|
|
* @classdesc A Keyboard object Description.
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
|
|
|
*/
|
2013-08-31 20:50:34 +00:00
|
|
|
Phaser.Keyboard = function (game) {
|
2013-08-31 12:54:59 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - Local reference to game.
|
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this.game = game;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Description} _keys - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this._keys = {};
|
2013-10-01 12:54:29 +00:00
|
|
|
|
2013-10-01 15:15:45 +00:00
|
|
|
/**
|
|
|
|
* @property {Description} _hotkeys - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._hotkeys = {};
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {Description} _capture - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
this._capture = {};
|
2013-10-01 00:18:29 +00:00
|
|
|
|
2013-10-02 12:18:58 +00:00
|
|
|
/**
|
|
|
|
* You can disable all Keyboard Input by setting disabled to true. While true all new input related events will be ignored.
|
|
|
|
* @property {boolean} disabled - The disabled state of the Keyboard.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-10-02 14:05:55 +00:00
|
|
|
this.disabled = false;
|
2013-10-02 12:18:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} _onKeyDown
|
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
2013-10-02 14:05:55 +00:00
|
|
|
this._onKeyDown = null;
|
2013-10-02 12:18:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} _onKeyUp
|
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
2013-10-02 14:05:55 +00:00
|
|
|
this._onKeyUp = null;
|
2013-10-02 12:18:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Object} callbackContext - The context under which the callbacks are run.
|
|
|
|
*/
|
2013-10-01 00:18:29 +00:00
|
|
|
this.callbackContext = this;
|
2013-10-02 12:18:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onDownCallback - This callback is invoked every time a key is pressed down.
|
|
|
|
*/
|
2013-10-01 00:18:29 +00:00
|
|
|
this.onDownCallback = null;
|
|
|
|
|
2013-10-02 12:18:58 +00:00
|
|
|
/**
|
|
|
|
* @property {function} onUpCallback - This callback is invoked every time a key is released.
|
|
|
|
*/
|
|
|
|
this.onUpCallback = null;
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
Phaser.Keyboard.prototype = {
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-10-02 12:18:58 +00:00
|
|
|
* Add callbacks to the Keyboard handler so that each time a key is pressed down or releases the callbacks are activated.
|
|
|
|
* @method Phaser.Keyboard#addCallbacks
|
|
|
|
* @param {Object} context - The context under which the callbacks are run.
|
|
|
|
* @param {function} onDown - This callback is invoked every time a key is pressed down.
|
|
|
|
* @param {function} [onUp=null] - This callback is invoked every time a key is released.
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
2013-10-01 15:15:45 +00:00
|
|
|
addCallbacks: function (context, onDown, onUp) {
|
|
|
|
|
|
|
|
this.callbackContext = context;
|
|
|
|
this.onDownCallback = onDown;
|
|
|
|
|
|
|
|
if (typeof onUp !== 'undefined')
|
|
|
|
{
|
|
|
|
this.onUpCallback = onUp;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 12:18:58 +00:00
|
|
|
/**
|
|
|
|
* If you need more fine-grained control over a Key you can create a new Phaser.Key object via this method.
|
|
|
|
* The Key object can then be polled, have events attached to it, etc.
|
|
|
|
*
|
|
|
|
* @method Phaser.Keyboard#addKey
|
|
|
|
* @param {number} keycode - The keycode of the key, i.e. Phaser.Keyboard.UP or Phaser.Keyboard.SPACE_BAR
|
|
|
|
* @return {Phaser.Key} The Key object which you can store locally and reference directly.
|
|
|
|
*/
|
2013-10-01 15:15:45 +00:00
|
|
|
addKey: function (keycode) {
|
|
|
|
|
|
|
|
this._hotkeys[keycode] = new Phaser.Key(this.game, keycode);
|
|
|
|
return this._hotkeys[keycode];
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 12:18:58 +00:00
|
|
|
/**
|
|
|
|
* Removes a Key object from the Keyboard manager.
|
|
|
|
*
|
|
|
|
* @method Phaser.Keyboard#removeKey
|
|
|
|
* @param {number} keycode - The keycode of the key to remove, i.e. Phaser.Keyboard.UP or Phaser.Keyboard.SPACE_BAR
|
|
|
|
*/
|
2013-10-01 15:15:45 +00:00
|
|
|
removeKey: function (keycode) {
|
|
|
|
|
|
|
|
delete (this._hotkeys[keycode]);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-03 22:20:24 +00:00
|
|
|
/**
|
|
|
|
* Creates and returns an object containing 4 hotkeys for Up, Down, Left and Right.
|
|
|
|
*
|
|
|
|
* @method Phaser.Keyboard#createCursorKeys
|
|
|
|
* @return {object} An object containing properties: up, down, left and right. Which can be polled like any other Phaser.Key object.
|
|
|
|
*/
|
|
|
|
createCursorKeys: function () {
|
|
|
|
|
|
|
|
return {
|
|
|
|
up: this.addKey(Phaser.Keyboard.UP),
|
|
|
|
down: this.addKey(Phaser.Keyboard.DOWN),
|
|
|
|
left: this.addKey(Phaser.Keyboard.LEFT),
|
|
|
|
right: this.addKey(Phaser.Keyboard.RIGHT)
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 12:18:58 +00:00
|
|
|
/**
|
|
|
|
* Starts the Keyboard event listeners running (keydown and keyup). They are attached to the document.body.
|
|
|
|
* This is called automatically by Phaser.Input and should not normally be invoked directly.
|
|
|
|
*
|
|
|
|
* @method Phaser.Keyboard#start
|
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
start: function () {
|
|
|
|
|
|
|
|
var _this = this;
|
|
|
|
|
|
|
|
this._onKeyDown = function (event) {
|
2013-10-01 00:18:29 +00:00
|
|
|
return _this.processKeyDown(event);
|
2013-08-31 12:54:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
this._onKeyUp = function (event) {
|
2013-10-01 00:18:29 +00:00
|
|
|
return _this.processKeyUp(event);
|
2013-08-31 12:54:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
document.body.addEventListener('keydown', this._onKeyDown, false);
|
|
|
|
document.body.addEventListener('keyup', this._onKeyUp, false);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 12:18:58 +00:00
|
|
|
/**
|
|
|
|
* Stops the Keyboard event listeners from running (keydown and keyup). They are removed from the document.body.
|
|
|
|
*
|
|
|
|
* @method Phaser.Keyboard#stop
|
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
stop: function () {
|
|
|
|
|
|
|
|
document.body.removeEventListener('keydown', this._onKeyDown);
|
|
|
|
document.body.removeEventListener('keyup', this._onKeyUp);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* By default when a key is pressed Phaser will not stop the event from propagating up to the browser.
|
|
|
|
* There are some keys this can be annoying for, like the arrow keys or space bar, which make the browser window scroll.
|
|
|
|
* You can use addKeyCapture to consume the keyboard event for specific keys so it doesn't bubble up to the the browser.
|
|
|
|
* Pass in either a single keycode or an array/hash of keycodes.
|
2013-10-02 12:18:58 +00:00
|
|
|
* @method Phaser.Keyboard#addKeyCapture
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {Any} keycode
|
|
|
|
*/
|
|
|
|
addKeyCapture: function (keycode) {
|
|
|
|
|
|
|
|
if (typeof keycode === 'object')
|
|
|
|
{
|
|
|
|
for (var key in keycode)
|
|
|
|
{
|
|
|
|
this._capture[keycode[key]] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this._capture[keycode] = true;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-02 12:18:58 +00:00
|
|
|
* Removes an existing key capture.
|
|
|
|
* @method Phaser.Keyboard#removeKeyCapture
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} keycode
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
|
|
|
removeKeyCapture: function (keycode) {
|
|
|
|
|
|
|
|
delete this._capture[keycode];
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-02 12:18:58 +00:00
|
|
|
* Clear all set key captures.
|
|
|
|
* @method Phaser.Keyboard#clearCaptures
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
clearCaptures: function () {
|
|
|
|
|
|
|
|
this._capture = {};
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-02 12:18:58 +00:00
|
|
|
* Process the keydown event.
|
|
|
|
* @method Phaser.Keyboard#processKeyDown
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {KeyboardEvent} event
|
2013-10-02 12:18:58 +00:00
|
|
|
* @protected
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
2013-10-01 00:18:29 +00:00
|
|
|
processKeyDown: function (event) {
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
if (this.game.input.disabled || this.disabled)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._capture[event.keyCode])
|
|
|
|
{
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
2013-10-01 00:18:29 +00:00
|
|
|
if (this.onDownCallback)
|
|
|
|
{
|
|
|
|
this.onDownCallback.call(this.callbackContext, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._keys[event.keyCode] && this._keys[event.keyCode].isDown)
|
2013-08-31 12:54:59 +00:00
|
|
|
{
|
2013-10-01 00:18:29 +00:00
|
|
|
// Key already down and still down, so update
|
|
|
|
this._keys[event.keyCode].duration = this.game.time.now - this._keys[event.keyCode].timeDown;
|
2013-08-31 12:54:59 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-01 00:18:29 +00:00
|
|
|
if (!this._keys[event.keyCode])
|
|
|
|
{
|
|
|
|
// Not used this key before, so register it
|
|
|
|
this._keys[event.keyCode] = {
|
|
|
|
isDown: true,
|
|
|
|
timeDown: this.game.time.now,
|
|
|
|
timeUp: 0,
|
|
|
|
duration: 0
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Key used before but freshly down
|
|
|
|
this._keys[event.keyCode].isDown = true;
|
|
|
|
this._keys[event.keyCode].timeDown = this.game.time.now;
|
|
|
|
this._keys[event.keyCode].duration = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._hotkeys[event.keyCode])
|
|
|
|
{
|
|
|
|
this._hotkeys[event.keyCode].processKeyDown(event);
|
2013-08-31 12:54:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-02 12:18:58 +00:00
|
|
|
* Process the keyup event.
|
|
|
|
* @method Phaser.Keyboard#processKeyUp
|
2013-08-31 12:54:59 +00:00
|
|
|
* @param {KeyboardEvent} event
|
2013-10-02 12:18:58 +00:00
|
|
|
* @protected
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
2013-10-01 00:18:29 +00:00
|
|
|
processKeyUp: function (event) {
|
2013-08-31 12:54:59 +00:00
|
|
|
|
|
|
|
if (this.game.input.disabled || this.disabled)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._capture[event.keyCode])
|
|
|
|
{
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
|
2013-10-01 00:18:29 +00:00
|
|
|
if (this.onUpCallback)
|
2013-08-31 12:54:59 +00:00
|
|
|
{
|
2013-10-01 00:18:29 +00:00
|
|
|
this.onUpCallback.call(this.callbackContext, event);
|
2013-08-31 12:54:59 +00:00
|
|
|
}
|
2013-10-01 00:18:29 +00:00
|
|
|
|
|
|
|
if (this._hotkeys[event.keyCode])
|
2013-08-31 12:54:59 +00:00
|
|
|
{
|
2013-10-01 00:18:29 +00:00
|
|
|
this._hotkeys[event.keyCode].processKeyUp(event);
|
2013-08-31 12:54:59 +00:00
|
|
|
}
|
|
|
|
|
2013-10-01 00:18:29 +00:00
|
|
|
this._keys[event.keyCode].isDown = false;
|
|
|
|
this._keys[event.keyCode].timeUp = this.game.time.now;
|
|
|
|
|
2013-08-31 12:54:59 +00:00
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-02 12:18:58 +00:00
|
|
|
* Reset the "isDown" state of all keys.
|
|
|
|
* @method Phaser.Keyboard#reset
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-31 12:54:59 +00:00
|
|
|
reset: function () {
|
|
|
|
|
|
|
|
for (var key in this._keys)
|
|
|
|
{
|
|
|
|
this._keys[key].isDown = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 12:18:58 +00:00
|
|
|
/**
|
|
|
|
* Returns the "just pressed" state of the key. Just pressed is considered true if the key was pressed down within the duration given (default 250ms)
|
|
|
|
* @method Phaser.Keyboard#justPressed
|
|
|
|
* @param {number} keycode - The keycode of the key to remove, i.e. Phaser.Keyboard.UP or Phaser.Keyboard.SPACE_BAR
|
|
|
|
* @param {number} [duration=250] - The duration below which the key is considered as being just pressed.
|
|
|
|
* @return {boolean} True if the key is just pressed otherwise false.
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
|
|
|
justPressed: function (keycode, duration) {
|
|
|
|
|
|
|
|
if (typeof duration === "undefined") { duration = 250; }
|
|
|
|
|
2013-10-01 00:18:29 +00:00
|
|
|
if (this._keys[keycode] && this._keys[keycode].isDown && this._keys[keycode].duration < duration)
|
2013-08-31 12:54:59 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-02 12:18:58 +00:00
|
|
|
* Returns the "just released" state of the Key. Just released is considered as being true if the key was released within the duration given (default 250ms)
|
|
|
|
* @method Phaser.Keyboard#justPressed
|
|
|
|
* @param {number} keycode - The keycode of the key to remove, i.e. Phaser.Keyboard.UP or Phaser.Keyboard.SPACE_BAR
|
|
|
|
* @param {number} [duration=250] - The duration below which the key is considered as being just released.
|
|
|
|
* @return {boolean} True if the key is just released otherwise false.
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
|
|
|
justReleased: function (keycode, duration) {
|
|
|
|
|
|
|
|
if (typeof duration === "undefined") { duration = 250; }
|
|
|
|
|
|
|
|
if (this._keys[keycode] && this._keys[keycode].isDown === false && (this.game.time.now - this._keys[keycode].timeUp < duration))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-02 12:18:58 +00:00
|
|
|
* Returns true of the key is currently pressed down. Note that it can only detect key presses on the web browser.
|
|
|
|
* @method Phaser.Keyboard#isDown
|
|
|
|
* @param {number} keycode - The keycode of the key to remove, i.e. Phaser.Keyboard.UP or Phaser.Keyboard.SPACE_BAR
|
|
|
|
* @return {boolean} True if the key is currently down.
|
2013-08-31 12:54:59 +00:00
|
|
|
*/
|
|
|
|
isDown: function (keycode) {
|
|
|
|
|
|
|
|
if (this._keys[keycode])
|
|
|
|
{
|
|
|
|
return this._keys[keycode].isDown;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
Phaser.Keyboard.A = "A".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.B = "B".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.C = "C".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.D = "D".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.E = "E".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.F = "F".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.G = "G".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.H = "H".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.I = "I".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.J = "J".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.K = "K".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.L = "L".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.M = "M".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.N = "N".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.O = "O".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.P = "P".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.Q = "Q".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.R = "R".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.S = "S".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.T = "T".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.U = "U".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.V = "V".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.W = "W".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.X = "X".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.Y = "Y".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.Z = "Z".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.ZERO = "0".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.ONE = "1".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.TWO = "2".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.THREE = "3".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.FOUR = "4".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.FIVE = "5".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.SIX = "6".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.SEVEN = "7".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.EIGHT = "8".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.NINE = "9".charCodeAt(0);
|
|
|
|
Phaser.Keyboard.NUMPAD_0 = 96;
|
|
|
|
Phaser.Keyboard.NUMPAD_1 = 97;
|
|
|
|
Phaser.Keyboard.NUMPAD_2 = 98;
|
|
|
|
Phaser.Keyboard.NUMPAD_3 = 99;
|
|
|
|
Phaser.Keyboard.NUMPAD_4 = 100;
|
|
|
|
Phaser.Keyboard.NUMPAD_5 = 101;
|
|
|
|
Phaser.Keyboard.NUMPAD_6 = 102;
|
|
|
|
Phaser.Keyboard.NUMPAD_7 = 103;
|
|
|
|
Phaser.Keyboard.NUMPAD_8 = 104;
|
|
|
|
Phaser.Keyboard.NUMPAD_9 = 105;
|
|
|
|
Phaser.Keyboard.NUMPAD_MULTIPLY = 106;
|
|
|
|
Phaser.Keyboard.NUMPAD_ADD = 107;
|
|
|
|
Phaser.Keyboard.NUMPAD_ENTER = 108;
|
|
|
|
Phaser.Keyboard.NUMPAD_SUBTRACT = 109;
|
|
|
|
Phaser.Keyboard.NUMPAD_DECIMAL = 110;
|
|
|
|
Phaser.Keyboard.NUMPAD_DIVIDE = 111;
|
|
|
|
Phaser.Keyboard.F1 = 112;
|
|
|
|
Phaser.Keyboard.F2 = 113;
|
|
|
|
Phaser.Keyboard.F3 = 114;
|
|
|
|
Phaser.Keyboard.F4 = 115;
|
|
|
|
Phaser.Keyboard.F5 = 116;
|
|
|
|
Phaser.Keyboard.F6 = 117;
|
|
|
|
Phaser.Keyboard.F7 = 118;
|
|
|
|
Phaser.Keyboard.F8 = 119;
|
|
|
|
Phaser.Keyboard.F9 = 120;
|
|
|
|
Phaser.Keyboard.F10 = 121;
|
|
|
|
Phaser.Keyboard.F11 = 122;
|
|
|
|
Phaser.Keyboard.F12 = 123;
|
|
|
|
Phaser.Keyboard.F13 = 124;
|
|
|
|
Phaser.Keyboard.F14 = 125;
|
|
|
|
Phaser.Keyboard.F15 = 126;
|
|
|
|
Phaser.Keyboard.COLON = 186;
|
|
|
|
Phaser.Keyboard.EQUALS = 187;
|
|
|
|
Phaser.Keyboard.UNDERSCORE = 189;
|
|
|
|
Phaser.Keyboard.QUESTION_MARK = 191;
|
|
|
|
Phaser.Keyboard.TILDE = 192;
|
|
|
|
Phaser.Keyboard.OPEN_BRACKET = 219;
|
|
|
|
Phaser.Keyboard.BACKWARD_SLASH = 220;
|
|
|
|
Phaser.Keyboard.CLOSED_BRACKET = 221;
|
|
|
|
Phaser.Keyboard.QUOTES = 222;
|
|
|
|
Phaser.Keyboard.BACKSPACE = 8;
|
|
|
|
Phaser.Keyboard.TAB = 9;
|
|
|
|
Phaser.Keyboard.CLEAR = 12;
|
|
|
|
Phaser.Keyboard.ENTER = 13;
|
|
|
|
Phaser.Keyboard.SHIFT = 16;
|
|
|
|
Phaser.Keyboard.CONTROL = 17;
|
|
|
|
Phaser.Keyboard.ALT = 18;
|
|
|
|
Phaser.Keyboard.CAPS_LOCK = 20;
|
|
|
|
Phaser.Keyboard.ESC = 27;
|
|
|
|
Phaser.Keyboard.SPACEBAR = 32;
|
|
|
|
Phaser.Keyboard.PAGE_UP = 33;
|
|
|
|
Phaser.Keyboard.PAGE_DOWN = 34;
|
|
|
|
Phaser.Keyboard.END = 35;
|
|
|
|
Phaser.Keyboard.HOME = 36;
|
|
|
|
Phaser.Keyboard.LEFT = 37;
|
|
|
|
Phaser.Keyboard.UP = 38;
|
|
|
|
Phaser.Keyboard.RIGHT = 39;
|
|
|
|
Phaser.Keyboard.DOWN = 40;
|
|
|
|
Phaser.Keyboard.INSERT = 45;
|
|
|
|
Phaser.Keyboard.DELETE = 46;
|
|
|
|
Phaser.Keyboard.HELP = 47;
|
|
|
|
Phaser.Keyboard.NUM_LOCK = 144;
|