2013-11-25 04:40:04 +00:00
|
|
|
/* jshint supernew: true */
|
|
|
|
|
2013-09-19 14:34:48 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2014-02-05 05:54:25 +00:00
|
|
|
* @copyright 2014 Photon Storm Ltd.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
2013-09-19 14:34:48 +00:00
|
|
|
*/
|
2013-09-10 11:46:14 +00:00
|
|
|
|
2013-09-19 14:34:48 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* @class Phaser.Utils
|
2013-09-19 14:34:48 +00:00
|
|
|
* @static
|
|
|
|
*/
|
2013-09-03 03:43:26 +00:00
|
|
|
Phaser.Utils = {
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2014-02-25 16:26:11 +00:00
|
|
|
/**
|
|
|
|
* Get a unit dimension from a string.
|
|
|
|
*
|
|
|
|
* @method Phaser.Utils.parseDimension
|
|
|
|
* @param {string|number} size - The size to parse.
|
|
|
|
* @param {number} dimension - The window dimension to check.
|
|
|
|
* @return {number} The parsed dimension.
|
|
|
|
*/
|
|
|
|
parseDimension: function (size, dimension) {
|
|
|
|
|
|
|
|
var f = 0;
|
|
|
|
var px = 0;
|
|
|
|
|
|
|
|
if (typeof size === 'string')
|
|
|
|
{
|
|
|
|
// %?
|
|
|
|
if (size.substr(-1) === '%')
|
|
|
|
{
|
|
|
|
f = parseInt(size, 10) / 100;
|
|
|
|
|
|
|
|
if (dimension === 0)
|
|
|
|
{
|
|
|
|
px = window.innerWidth * f;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
px = window.innerHeight * f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
px = parseInt(size, 10);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
px = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return px;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* A standard Fisher-Yates Array shuffle implementation.
|
|
|
|
* @method Phaser.Utils.shuffle
|
|
|
|
* @param {array} array - The array to shuffle.
|
|
|
|
* @return {array} The shuffled array.
|
|
|
|
*/
|
|
|
|
shuffle: function (array) {
|
|
|
|
|
|
|
|
for (var i = array.length - 1; i > 0; i--)
|
|
|
|
{
|
|
|
|
var j = Math.floor(Math.random() * (i + 1));
|
|
|
|
var temp = array[i];
|
|
|
|
array[i] = array[j];
|
|
|
|
array[j] = temp;
|
|
|
|
}
|
|
|
|
|
|
|
|
return array;
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Javascript string pad http://www.webtoolkit.info/.
|
|
|
|
* pad = the string to pad it out with (defaults to a space)
|
|
|
|
* dir = 1 (left), 2 (right), 3 (both)
|
|
|
|
* @method Phaser.Utils.pad
|
2014-03-23 07:59:28 +00:00
|
|
|
* @param {string} str - The target string.
|
2014-02-06 06:20:40 +00:00
|
|
|
* @param {number} len - The number of characters to be added.
|
|
|
|
* @param {number} pad - The string to pad it out with (defaults to a space).
|
|
|
|
* @param {number} [dir=3] The direction dir = 1 (left), 2 (right), 3 (both).
|
2013-11-25 04:40:04 +00:00
|
|
|
* @return {string} The padded string
|
|
|
|
*/
|
|
|
|
pad: function (str, len, pad, dir) {
|
|
|
|
|
|
|
|
if (typeof(len) == "undefined") { var len = 0; }
|
|
|
|
if (typeof(pad) == "undefined") { var pad = ' '; }
|
|
|
|
if (typeof(dir) == "undefined") { var dir = 3; }
|
|
|
|
|
|
|
|
var padlen = 0;
|
|
|
|
|
|
|
|
if (len + 1 >= str.length)
|
|
|
|
{
|
|
|
|
switch (dir)
|
|
|
|
{
|
|
|
|
case 1:
|
2014-03-23 06:31:51 +00:00
|
|
|
str = new Array(len + 1 - str.length).join(pad) + str;
|
2013-11-25 04:40:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
var right = Math.ceil((padlen = len - str.length) / 2);
|
|
|
|
var left = padlen - right;
|
2014-03-23 06:31:51 +00:00
|
|
|
str = new Array(left+1).join(pad) + str + new Array(right+1).join(pad);
|
2013-11-25 04:40:04 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2014-03-23 06:31:51 +00:00
|
|
|
str = str + new Array(len + 1 - str.length).join(pad);
|
2013-11-25 04:40:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return str;
|
|
|
|
|
|
|
|
},
|
2013-09-10 11:46:14 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* This is a slightly modified version of jQuery.isPlainObject. A plain object is an object whose internal class property is [object Object].
|
|
|
|
* @method Phaser.Utils.isPlainObject
|
|
|
|
* @param {object} obj - The object to inspect.
|
|
|
|
* @return {boolean} - true if the object is plain, otherwise false.
|
2013-09-19 14:34:48 +00:00
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
isPlainObject: function (obj) {
|
|
|
|
|
|
|
|
// Not plain objects:
|
|
|
|
// - Any object or value whose internal [[Class]] property is not "[object Object]"
|
|
|
|
// - DOM nodes
|
|
|
|
// - window
|
|
|
|
if (typeof(obj) !== "object" || obj.nodeType || obj === obj.window)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Support: Firefox <20
|
|
|
|
// The try/catch suppresses exceptions thrown when attempting to access
|
|
|
|
// the "constructor" property of certain host objects, ie. |window.location|
|
|
|
|
// https://bugzilla.mozilla.org/show_bug.cgi?id=814622
|
|
|
|
try {
|
2014-03-23 06:31:51 +00:00
|
|
|
if (obj.constructor && !({}).hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf"))
|
2013-11-25 04:40:04 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the function hasn't returned already, we're confident that
|
|
|
|
// |obj| is a plain object, created by {} or constructed with new Object
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* This is a slightly modified version of http://api.jquery.com/jQuery.extend/
|
|
|
|
* @method Phaser.Utils.extend
|
2013-10-03 03:17:44 +00:00
|
|
|
* @param {boolean} deep - Perform a deep copy?
|
|
|
|
* @param {object} target - The target object to copy to.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @return {object} The extended object.
|
2013-09-19 14:34:48 +00:00
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
extend: function () {
|
|
|
|
|
|
|
|
var options, name, src, copy, copyIsArray, clone,
|
|
|
|
target = arguments[0] || {},
|
|
|
|
i = 1,
|
|
|
|
length = arguments.length,
|
|
|
|
deep = false;
|
|
|
|
|
|
|
|
// Handle a deep copy situation
|
|
|
|
if (typeof target === "boolean")
|
|
|
|
{
|
|
|
|
deep = target;
|
|
|
|
target = arguments[1] || {};
|
|
|
|
// skip the boolean and the target
|
|
|
|
i = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// extend Phaser if only one argument is passed
|
|
|
|
if (length === i)
|
|
|
|
{
|
|
|
|
target = this;
|
|
|
|
--i;
|
|
|
|
}
|
|
|
|
|
2014-03-23 07:59:28 +00:00
|
|
|
for (; i < length; i++)
|
2013-11-25 04:40:04 +00:00
|
|
|
{
|
|
|
|
// Only deal with non-null/undefined values
|
|
|
|
if ((options = arguments[i]) != null)
|
|
|
|
{
|
|
|
|
// Extend the base object
|
|
|
|
for (name in options)
|
|
|
|
{
|
|
|
|
src = target[name];
|
|
|
|
copy = options[name];
|
|
|
|
|
|
|
|
// Prevent never-ending loop
|
|
|
|
if (target === copy)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recurse if we're merging plain objects or arrays
|
|
|
|
if (deep && copy && (Phaser.Utils.isPlainObject(copy) || (copyIsArray = Array.isArray(copy))))
|
|
|
|
{
|
|
|
|
if (copyIsArray)
|
|
|
|
{
|
|
|
|
copyIsArray = false;
|
|
|
|
clone = src && Array.isArray(src) ? src : [];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
clone = src && Phaser.Utils.isPlainObject(src) ? src : {};
|
|
|
|
}
|
|
|
|
|
|
|
|
// Never move original objects, clone them
|
|
|
|
target[name] = Phaser.Utils.extend(deep, clone, copy);
|
|
|
|
|
|
|
|
// Don't bring in undefined values
|
|
|
|
}
|
|
|
|
else if (copy !== undefined)
|
|
|
|
{
|
|
|
|
target[name] = copy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the modified object
|
|
|
|
return target;
|
|
|
|
}
|
2013-09-03 03:43:26 +00:00
|
|
|
|
2013-09-08 23:30:44 +00:00
|
|
|
};
|
|
|
|
|
2013-11-20 02:28:28 +00:00
|
|
|
/**
|
|
|
|
* A polyfill for Function.prototype.bind
|
|
|
|
*/
|
2013-09-08 23:30:44 +00:00
|
|
|
if (typeof Function.prototype.bind != 'function') {
|
2013-11-25 04:40:04 +00:00
|
|
|
|
2014-03-23 06:31:51 +00:00
|
|
|
/* jshint freeze: false */
|
2013-11-25 04:40:04 +00:00
|
|
|
Function.prototype.bind = (function () {
|
|
|
|
|
|
|
|
var slice = Array.prototype.slice;
|
|
|
|
|
|
|
|
return function (thisArg) {
|
|
|
|
|
|
|
|
var target = this, boundArgs = slice.call(arguments, 1);
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (typeof target != 'function')
|
|
|
|
{
|
|
|
|
throw new TypeError();
|
|
|
|
}
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
function bound() {
|
|
|
|
var args = boundArgs.concat(slice.call(arguments));
|
|
|
|
target.apply(this instanceof bound ? this : thisArg, args);
|
|
|
|
}
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
bound.prototype = (function F(proto) {
|
2014-03-23 06:31:51 +00:00
|
|
|
if (proto)
|
|
|
|
{
|
|
|
|
F.prototype = proto;
|
|
|
|
}
|
2013-11-25 04:40:04 +00:00
|
|
|
|
|
|
|
if (!(this instanceof F))
|
|
|
|
{
|
|
|
|
return new F;
|
|
|
|
}
|
|
|
|
})(target.prototype);
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
return bound;
|
|
|
|
};
|
|
|
|
})();
|
2013-09-08 23:30:44 +00:00
|
|
|
}
|
2014-02-05 02:39:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A polyfill for Array.isArray
|
|
|
|
*/
|
2014-03-13 16:49:52 +00:00
|
|
|
if (!Array.isArray)
|
|
|
|
{
|
|
|
|
Array.isArray = function (arg)
|
|
|
|
{
|
|
|
|
return Object.prototype.toString.call(arg) == '[object Array]';
|
2014-03-23 06:31:51 +00:00
|
|
|
};
|
2014-02-05 02:39:03 +00:00
|
|
|
}
|
2014-04-10 21:45:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A polyfill for Array.forEach
|
2014-04-10 23:43:30 +00:00
|
|
|
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
|
2014-04-10 21:45:35 +00:00
|
|
|
*/
|
|
|
|
if (!Array.prototype.forEach)
|
|
|
|
{
|
2014-04-10 23:43:30 +00:00
|
|
|
Array.prototype.forEach = function(fun /*, thisArg */)
|
|
|
|
{
|
|
|
|
"use strict";
|
2014-04-10 21:45:35 +00:00
|
|
|
|
2014-04-10 23:43:30 +00:00
|
|
|
if (this === void 0 || this === null)
|
|
|
|
{
|
|
|
|
throw new TypeError();
|
|
|
|
}
|
2014-04-10 21:45:35 +00:00
|
|
|
|
2014-04-10 23:43:30 +00:00
|
|
|
var t = Object(this);
|
|
|
|
var len = t.length >>> 0;
|
2014-04-10 21:45:35 +00:00
|
|
|
|
2014-04-10 23:43:30 +00:00
|
|
|
if (typeof fun !== "function")
|
|
|
|
{
|
|
|
|
throw new TypeError();
|
|
|
|
}
|
|
|
|
|
|
|
|
var thisArg = arguments.length >= 2 ? arguments[1] : void 0;
|
|
|
|
|
|
|
|
for (var i = 0; i < len; i++)
|
|
|
|
{
|
|
|
|
if (i in t)
|
|
|
|
{
|
|
|
|
fun.call(thisArg, t[i], i, t);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2014-04-29 01:09:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
(function(global, undefined) {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Low-budget Float32Array knock-off, suitable for use with P2.js in IE9
|
|
|
|
* Source: http://www.html5gamedevs.com/topic/5988-phaser-12-ie9/
|
|
|
|
* Cameron Foale (http://www.kibibu.com)
|
|
|
|
*/
|
|
|
|
if (typeof global.Uint32Array !== "function")
|
|
|
|
{
|
|
|
|
var CheapArray = function(type)
|
|
|
|
{
|
|
|
|
var proto = new Array(); // jshint ignore:line
|
|
|
|
|
|
|
|
global[type] = function(arg) {
|
|
|
|
|
|
|
|
if (typeof(arg) === "number")
|
|
|
|
{
|
|
|
|
Array.call(this, arg);
|
|
|
|
this.length = arg;
|
|
|
|
|
|
|
|
for (var i = 0; i < this.length; i++)
|
|
|
|
{
|
|
|
|
this[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Array.call(this, arg.length);
|
|
|
|
|
|
|
|
this.length = arg.length;
|
|
|
|
|
|
|
|
for (var i = 0; i < this.length; i++)
|
|
|
|
{
|
|
|
|
this[i] = arg[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
global[type].prototype = proto;
|
|
|
|
global[type].constructor = global[type];
|
|
|
|
};
|
|
|
|
|
|
|
|
CheapArray('Uint32Array'); // jshint ignore:line
|
|
|
|
CheapArray('Int16Array'); // jshint ignore:line
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Also fix for the absent console in IE9
|
|
|
|
*/
|
|
|
|
if (!window.console)
|
|
|
|
{
|
|
|
|
window.console = {};
|
|
|
|
window.console.log = window.console.assert = function(){};
|
|
|
|
window.console.warn = window.console.assert = function(){};
|
|
|
|
}
|
|
|
|
|
|
|
|
})(this);
|