phaser/Phaser/system/Device.ts
2013-08-08 11:34:33 +01:00

613 lines
No EOL
16 KiB
TypeScript

/// <reference path="../Game.ts" />
/**
* Phaser - Device
*
* Detects device support capabilities. Using some elements from System.js by MrDoob and Modernizr
* https://github.com/Modernizr/Modernizr/blob/master/feature-detects/audio.js
*/
module Phaser {
export class Device {
/**
* Device constructor
*/
constructor() {
this._checkAudio();
this._checkBrowser();
this._checkCSS3D();
this._checkDevice();
this._checkFeatures();
this._checkOS();
}
// Android bug specific :)
/**
* An optional 'fix' for the horrendous Android stock browser bug
* https://code.google.com/p/android/issues/detail?id=39247
* @type {boolean}
*/
public patchAndroidClearRectBug: boolean = false;
// Operating System
/**
* Is running desktop?
* @type {boolean}
*/
public desktop: boolean = false;
/**
* Is running on iOS?
* @type {boolean}
*/
public iOS: boolean = false;
/**
* Is running on android?
* @type {boolean}
*/
public android: boolean = false;
/**
* Is running on chromeOS?
* @type {boolean}
*/
public chromeOS: boolean = false;
/**
* Is running on linux?
* @type {boolean}
*/
public linux: boolean = false;
/**
* Is running on maxOS?
* @type {boolean}
*/
public macOS: boolean = false;
/**
* Is running on windows?
* @type {boolean}
*/
public windows: boolean = false;
// Features
/**
* Is canvas available?
* @type {boolean}
*/
public canvas: boolean = false;
/**
* Is file available?
* @type {boolean}
*/
public file: boolean = false;
/**
* Is fileSystem available?
* @type {boolean}
*/
public fileSystem: boolean = false;
/**
* Is localStorage available?
* @type {boolean}
*/
public localStorage: boolean = false;
/**
* Is webGL available?
* @type {boolean}
*/
public webGL: boolean = false;
/**
* Is worker available?
* @type {boolean}
*/
public worker: boolean = false;
/**
* Is touch available?
* @type {boolean}
*/
public touch: boolean = false;
/**
* Is mspointer available?
* @type {boolean}
*/
public mspointer: boolean = false;
/**
* Is css3D available?
* @type {boolean}
*/
public css3D: boolean = false;
// Browser
/**
* Is running in arora?
* @type {boolean}
*/
public arora: boolean = false;
/**
* Is running in chrome?
* @type {boolean}
*/
public chrome: boolean = false;
/**
* Is running in epiphany?
* @type {boolean}
*/
public epiphany: boolean = false;
/**
* Is running in firefox?
* @type {boolean}
*/
public firefox: boolean = false;
/**
* Is running in ie?
* @type {boolean}
*/
public ie: boolean = false;
/**
* Version of ie?
* @type Number
*/
public ieVersion: number = 0;
/**
* Is running in mobileSafari?
* @type {boolean}
*/
public mobileSafari: boolean = false;
/**
* Is running in midori?
* @type {boolean}
*/
public midori: boolean = false;
/**
* Is running in opera?
* @type {boolean}
*/
public opera: boolean = false;
/**
* Is running in safari?
* @type {boolean}
*/
public safari: boolean = false;
public webApp: boolean = false;
// Audio
/**
* Are Audio tags available?
* @type {boolean}
*/
public audioData: boolean = false;
/**
* Is the WebAudio API available?
* @type {boolean}
*/
public webAudio: boolean = false;
/**
* Can this device play ogg files?
* @type {boolean}
*/
public ogg: boolean = false;
/**
* Can this device play opus files?
* @type {boolean}
*/
public opus: boolean = false;
/**
* Can this device play mp3 files?
* @type {boolean}
*/
public mp3: boolean = false;
/**
* Can this device play wav files?
* @type {boolean}
*/
public wav: boolean = false;
/**
* Can this device play m4a files?
* @type {boolean}
*/
public m4a: boolean = false;
/**
* Can this device play webm files?
* @type {boolean}
*/
public webm: boolean = false;
// Device
/**
* Is running on iPhone?
* @type {boolean}
*/
public iPhone: boolean = false;
/**
* Is running on iPhone4?
* @type {boolean}
*/
public iPhone4: boolean = false;
/**
* Is running on iPad?
* @type {boolean}
*/
public iPad: boolean = false;
/**
* PixelRatio of the host device?
* @type Number
*/
public pixelRatio: number = 0;
/**
* Check which OS is game running on.
* @private
*/
private _checkOS() {
var ua = navigator.userAgent;
if (/Android/.test(ua))
{
this.android = true;
}
else if (/CrOS/.test(ua))
{
this.chromeOS = true;
}
else if (/iP[ao]d|iPhone/i.test(ua))
{
this.iOS = true;
}
else if (/Linux/.test(ua))
{
this.linux = true;
}
else if (/Mac OS/.test(ua))
{
this.macOS = true;
}
else if (/Windows/.test(ua))
{
this.windows = true;
}
if (this.windows || this.macOS || this.linux)
{
this.desktop = true;
}
}
/**
* Check HTML5 features of the host environment.
* @private
*/
private _checkFeatures() {
this.canvas = !!window['CanvasRenderingContext2D'];
try
{
this.localStorage = !!localStorage.getItem;
}
catch (error)
{
this.localStorage = false;
}
this.file = !!window['File'] && !!window['FileReader'] && !!window['FileList'] && !!window['Blob'];
this.fileSystem = !!window['requestFileSystem'];
this.webGL = !!window['WebGLRenderingContext'];
this.worker = !!window['Worker'];
if ('ontouchstart' in document.documentElement || window.navigator.msPointerEnabled)
{
this.touch = true;
}
if (window.navigator.msPointerEnabled)
{
this.mspointer = true;
}
}
/**
* Check what browser is game running in.
* @private
*/
private _checkBrowser() {
var ua = navigator.userAgent;
if (/Arora/.test(ua))
{
this.arora = true;
}
else if (/Chrome/.test(ua))
{
this.chrome = true;
}
else if (/Epiphany/.test(ua))
{
this.epiphany = true;
}
else if (/Firefox/.test(ua))
{
this.firefox = true;
}
else if (/Mobile Safari/.test(ua))
{
this.mobileSafari = true;
}
else if (/MSIE (\d+\.\d+);/.test(ua))
{
this.ie = true;
this.ieVersion = parseInt(RegExp.$1);
}
else if (/Midori/.test(ua))
{
this.midori = true;
}
else if (/Opera/.test(ua))
{
this.opera = true;
}
else if (/Safari/.test(ua))
{
this.safari = true;
}
// WebApp mode in iOS
if (navigator['standalone'])
{
this.webApp = true;
}
}
public canPlayAudio(type: string): boolean {
if (type == 'mp3' && this.mp3)
{
return true;
}
else if (type == 'ogg' && (this.ogg || this.opus))
{
return true;
}
else if (type == 'm4a' && this.m4a)
{
return true;
}
else if (type == 'wav' && this.wav)
{
return true;
}
else if (type == 'webm' && this.webm)
{
return true;
}
return false;
}
/**
* Check audio support.
* @private
*/
private _checkAudio() {
this.audioData = !!(window['Audio']);
this.webAudio = !!(window['webkitAudioContext'] || window['AudioContext']);
var audioElement: HTMLAudioElement = <HTMLAudioElement> document.createElement('audio');
var result = false;
try
{
if (result = !!audioElement.canPlayType)
{
if (audioElement.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/, ''))
{
this.ogg = true;
}
if (audioElement.canPlayType('audio/ogg; codecs="opus"').replace(/^no$/, ''))
{
this.opus = true;
}
if (audioElement.canPlayType('audio/mpeg;').replace(/^no$/, ''))
{
this.mp3 = true;
}
// Mimetypes accepted:
// developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements
// bit.ly/iphoneoscodecs
if (audioElement.canPlayType('audio/wav; codecs="1"').replace(/^no$/, ''))
{
this.wav = true;
}
if (audioElement.canPlayType('audio/x-m4a;') || audioElement.canPlayType('audio/aac;').replace(/^no$/, ''))
{
this.m4a = true;
}
if (audioElement.canPlayType('audio/webm; codecs="vorbis"').replace(/^no$/, ''))
{
this.webm = true;
}
}
} catch (e) { }
}
/**
* Check PixelRatio of devices.
* @private
*/
private _checkDevice() {
this.pixelRatio = window['devicePixelRatio'] || 1;
this.iPhone = navigator.userAgent.toLowerCase().indexOf('iphone') != -1;
this.iPhone4 = (this.pixelRatio == 2 && this.iPhone);
this.iPad = navigator.userAgent.toLowerCase().indexOf('ipad') != -1;
}
/**
* Check whether the host environment support 3D CSS.
* @private
*/
private _checkCSS3D() {
var el = document.createElement('p');
var has3d;
var transforms = {
'webkitTransform': '-webkit-transform',
'OTransform': '-o-transform',
'msTransform': '-ms-transform',
'MozTransform': '-moz-transform',
'transform': 'transform'
};
// Add it to the body to get the computed style.
document.body.insertBefore(el, null);
for (var t in transforms)
{
if (el.style[t] !== undefined)
{
el.style[t] = "translate3d(1px,1px,1px)";
has3d = window.getComputedStyle(el).getPropertyValue(transforms[t]);
}
}
document.body.removeChild(el);
this.css3D = (has3d !== undefined && has3d.length > 0 && has3d !== "none");
}
public isConsoleOpen(): boolean {
if (window.console && window.console['firebug'])
{
return true;
}
if (window.console)
{
console.profile();
console.profileEnd();
if (console.clear) console.clear();
return console['profiles'].length > 0;
}
return false;
}
/**
* Get all informations of host device.
* @return {string} Informations in a string.
*/
public getAll(): string {
var output: string = '';
output = output.concat('Device\n');
output = output.concat('iPhone : ' + this.iPhone + '\n');
output = output.concat('iPhone4 : ' + this.iPhone4 + '\n');
output = output.concat('iPad : ' + this.iPad + '\n');
output = output.concat('\n');
output = output.concat('Operating System\n');
output = output.concat('iOS: ' + this.iOS + '\n');
output = output.concat('Android: ' + this.android + '\n');
output = output.concat('ChromeOS: ' + this.chromeOS + '\n');
output = output.concat('Linux: ' + this.linux + '\n');
output = output.concat('MacOS: ' + this.macOS + '\n');
output = output.concat('Windows: ' + this.windows + '\n');
output = output.concat('\n');
output = output.concat('Browser\n');
output = output.concat('Arora: ' + this.arora + '\n');
output = output.concat('Chrome: ' + this.chrome + '\n');
output = output.concat('Epiphany: ' + this.epiphany + '\n');
output = output.concat('Firefox: ' + this.firefox + '\n');
output = output.concat('Internet Explorer: ' + this.ie + ' (' + this.ieVersion + ')\n');
output = output.concat('Mobile Safari: ' + this.mobileSafari + '\n');
output = output.concat('Midori: ' + this.midori + '\n');
output = output.concat('Opera: ' + this.opera + '\n');
output = output.concat('Safari: ' + this.safari + '\n');
output = output.concat('\n');
output = output.concat('Features\n');
output = output.concat('Canvas: ' + this.canvas + '\n');
output = output.concat('File: ' + this.file + '\n');
output = output.concat('FileSystem: ' + this.fileSystem + '\n');
output = output.concat('LocalStorage: ' + this.localStorage + '\n');
output = output.concat('WebGL: ' + this.webGL + '\n');
output = output.concat('Worker: ' + this.worker + '\n');
output = output.concat('Touch: ' + this.touch + '\n');
output = output.concat('MSPointer: ' + this.mspointer + '\n');
output = output.concat('CSS 3D: ' + this.css3D + '\n');
output = output.concat('\n');
output = output.concat('Audio\n');
output = output.concat('Audio Data: ' + this.canvas + '\n');
output = output.concat('Web Audio: ' + this.canvas + '\n');
output = output.concat('Can play OGG: ' + this.canvas + '\n');
output = output.concat('Can play MP3: ' + this.canvas + '\n');
output = output.concat('Can play M4A: ' + this.canvas + '\n');
output = output.concat('Can play WAV: ' + this.canvas + '\n');
return output;
}
}
}