phaser/src/device/Input.js

61 lines
1.5 KiB
JavaScript
Raw Normal View History

var OS = require('./OS');
var Browser = require('./Browser');
2016-11-25 04:00:15 +00:00
var Input = {
// @property {boolean} touch - Is touch available?
2016-11-25 04:00:15 +00:00
touch: false,
// @property {boolean} mspointer - Is mspointer available?
2016-11-25 04:00:15 +00:00
mspointer: false,
// @property {?string} wheelType - The newest type of Wheel/Scroll event supported: 'wheel', 'mousewheel', 'DOMMouseScroll'
2017-09-09 02:28:38 +00:00
wheelEvent: null,
// @property {boolean} gamepads - Is navigator.getGamepads available?
gamepads: false
2016-11-25 04:00:15 +00:00
};
function init ()
2016-11-25 04:00:15 +00:00
{
2017-09-09 02:28:38 +00:00
if ('ontouchstart' in document.documentElement || (navigator.maxTouchPoints && navigator.maxTouchPoints >= 1))
2016-11-25 04:00:15 +00:00
{
Input.touch = true;
}
2017-09-09 02:28:38 +00:00
if (navigator.msPointerEnabled || navigator.pointerEnabled)
2016-11-25 04:00:15 +00:00
{
Input.mspointer = true;
}
2017-09-09 02:28:38 +00:00
if (navigator.getGamepads)
{
Input.gamepads = true;
}
2016-11-25 04:00:15 +00:00
if (!OS.cocoonJS)
{
// See https://developer.mozilla.org/en-US/docs/Web/Events/wheel
if ('onwheel' in window || (Browser.ie && 'WheelEvent' in window))
{
// DOM3 Wheel Event: FF 17+, IE 9+, Chrome 31+, Safari 7+
Input.wheelEvent = 'wheel';
}
else if ('onmousewheel' in window)
{
// Non-FF legacy: IE 6-9, Chrome 1-31, Safari 5-7.
Input.wheelEvent = 'mousewheel';
}
else if (Browser.firefox && 'MouseScrollEvent' in window)
{
// FF prior to 17. This should probably be scrubbed.
Input.wheelEvent = 'DOMMouseScroll';
}
}
return Input;
}
module.exports = init();