2013-08-28 06:02:55 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +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-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
|
2013-08-29 06:06:16 +00:00
|
|
|
/**
|
|
|
|
* Game constructor
|
|
|
|
*
|
|
|
|
* Instantiate a new <code>Phaser.Game</code> object.
|
2013-10-02 00:16:40 +00:00
|
|
|
* @class Phaser.Game
|
2013-10-01 12:54:29 +00:00
|
|
|
* @classdesc This is where the magic happens. The Game object is the heart of your game,
|
|
|
|
* providing quick access to common functions and handling the boot process.
|
2013-10-31 05:31:54 +00:00
|
|
|
* "Hell, there are no rules here - we're trying to accomplish something."
|
2013-10-01 12:54:29 +00:00
|
|
|
* Thomas A. Edison
|
2013-08-29 06:06:16 +00:00
|
|
|
* @constructor
|
2013-10-31 05:31:54 +00:00
|
|
|
* @param {number} [width=800] - The width of your game in game pixels.
|
|
|
|
* @param {number} [height=600] - The height of your game in game pixels.
|
2013-11-25 14:53:30 +00:00
|
|
|
* @param {number} [renderer=Phaser.AUTO] - Which renderer to use: Phaser.AUTO will auto-detect, Phaser.WEBGL, Phaser.CANVAS or Phaser.HEADLESS (no rendering at all).
|
2013-12-10 12:23:42 +00:00
|
|
|
* @param {string|HTMLElement} [parent=''] - The DOM element into which this games canvas will be injected. Either a DOM ID (string) or the element itself.
|
|
|
|
* @param {object} [state=null] - The default state object. A object consisting of Phaser.State functions (preload, create, update, render) or null.
|
2013-10-31 05:31:54 +00:00
|
|
|
* @param {boolean} [transparent=false] - Use a transparent canvas background or not.
|
|
|
|
* @param {boolean} [antialias=true] - Anti-alias graphics.
|
2014-02-19 03:51:48 +00:00
|
|
|
* @param {object} [physicsConfig=null] - A physics configuration object to pass to the Physics world on creation.
|
2013-08-29 06:06:16 +00:00
|
|
|
*/
|
2014-02-19 03:51:48 +00:00
|
|
|
Phaser.Game = function (width, height, renderer, parent, state, transparent, antialias, physicsConfig) {
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @property {number} id - Phaser Game ID (for when Pixi supports multiple instances).
|
|
|
|
*/
|
|
|
|
this.id = Phaser.GAMES.push(this) - 1;
|
|
|
|
|
2013-12-24 03:18:55 +00:00
|
|
|
/**
|
|
|
|
* @property {object} config - The Phaser.Game configuration object.
|
|
|
|
*/
|
|
|
|
this.config = null;
|
|
|
|
|
2014-02-19 03:51:48 +00:00
|
|
|
/**
|
|
|
|
* @property {object} physicsConfig - The Phaser.Physics.World configuration object.
|
|
|
|
*/
|
|
|
|
this.physicsConfig = physicsConfig;
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @property {HTMLElement} parent - The Games DOM parent.
|
2013-12-24 03:18:55 +00:00
|
|
|
* @default
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-12-24 03:18:55 +00:00
|
|
|
this.parent = '';
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} width - The Game width (in pixels).
|
2013-12-24 03:18:55 +00:00
|
|
|
* @default
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-12-24 03:18:55 +00:00
|
|
|
this.width = 800;
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} height - The Game height (in pixels).
|
2013-12-24 03:18:55 +00:00
|
|
|
* @default
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-12-24 03:18:55 +00:00
|
|
|
this.height = 600;
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} transparent - Use a transparent canvas background or not.
|
2013-12-24 03:18:55 +00:00
|
|
|
* @default
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-12-24 03:18:55 +00:00
|
|
|
this.transparent = false;
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} antialias - Anti-alias graphics (in WebGL this helps with edges, in Canvas2D it retains pixel-art quality).
|
2013-12-24 03:18:55 +00:00
|
|
|
* @default
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-12-24 03:18:55 +00:00
|
|
|
this.antialias = true;
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} renderer - The Pixi Renderer
|
|
|
|
* @default
|
|
|
|
*/
|
2013-12-24 03:18:55 +00:00
|
|
|
this.renderer = Phaser.AUTO;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} renderType - The Renderer this Phaser.Game will use. Either Phaser.RENDERER_AUTO, Phaser.RENDERER_CANVAS or Phaser.RENDERER_WEBGL.
|
|
|
|
*/
|
|
|
|
this.renderType = Phaser.AUTO;
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} state - The StateManager.
|
|
|
|
*/
|
2013-12-24 03:18:55 +00:00
|
|
|
this.state = null;
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} _paused - Is game paused?
|
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._paused = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} _loadComplete - Whether load complete loading or not.
|
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._loadComplete = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} isBooted - Whether the game engine is booted, aka available.
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.isBooted = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} id -Is game running or paused?
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.isRunning = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.RequestAnimationFrame} raf - Automatically handles the core game loop via requestAnimationFrame or setTimeout
|
|
|
|
*/
|
|
|
|
this.raf = null;
|
|
|
|
|
|
|
|
/**
|
2014-02-21 14:50:18 +00:00
|
|
|
* @property {Phaser.GameObjectFactory} add - Reference to the Phaser.GameObjectFactory.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.add = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2014-02-21 14:50:18 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.GameObjectCreator} make - Reference to the GameObject Creator.
|
|
|
|
*/
|
|
|
|
this.make = null;
|
|
|
|
|
2013-08-29 02:52:59 +00:00
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Cache} cache - Reference to the assets cache.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.cache = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Input} input - Reference to the input manager
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.input = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Loader} load - Reference to the assets loader.
|
|
|
|
* @default
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.load = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Math} math - Reference to the math helper.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.math = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Net} net - Reference to the network class.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.net = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2014-02-13 12:50:10 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.StageScaleMode} scale - The game scale manager.
|
|
|
|
*/
|
|
|
|
this.scale = null;
|
|
|
|
|
2013-08-29 02:52:59 +00:00
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.SoundManager} sound - Reference to the sound manager.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.sound = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Stage} stage - Reference to the stage.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.stage = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.TimeManager} time - Reference to game clock.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.time = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.TweenManager} tweens - Reference to the tween manager.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.tweens = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.World} world - Reference to the world.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.world = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2014-02-10 16:01:30 +00:00
|
|
|
* @property {Phaser.Physics.World} physics - Reference to the physics world.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.physics = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.RandomDataGenerator} rnd - Instance of repeatable random data generator helper.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.rnd = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Device} device - Contains device information and capabilities.
|
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
this.device = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Physics.PhysicsManager} camera - A handy reference to world.camera.
|
|
|
|
*/
|
|
|
|
this.camera = null;
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2014-02-13 12:50:10 +00:00
|
|
|
/**
|
|
|
|
* @property {HTMLCanvasElement} canvas - A handy reference to renderer.view, the canvas that the game is being rendered in to.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
|
|
|
this.canvas = null;
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2014-02-13 12:50:10 +00:00
|
|
|
* @property {Context} context - A handy reference to renderer.context (only set for CANVAS games, not WebGL)
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
|
|
|
this.context = null;
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-11-25 03:13:04 +00:00
|
|
|
* @property {Phaser.Utils.Debug} debug - A set of useful debug utilitie.
|
|
|
|
*/
|
|
|
|
this.debug = null;
|
2013-08-31 20:50:34 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Particles} particles - The Particle Manager.
|
|
|
|
*/
|
|
|
|
this.particles = null;
|
2013-09-10 22:51:35 +00:00
|
|
|
|
2014-01-31 05:42:20 +00:00
|
|
|
/**
|
|
|
|
* @property {boolean} stepping - Enable core loop stepping with Game.enableStep().
|
|
|
|
* @default
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
this.stepping = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} stepping - An internal property used by enableStep, but also useful to query from your own game objects.
|
|
|
|
* @default
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
this.pendingStep = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} stepCount - When stepping is enabled this contains the current step cycle.
|
|
|
|
* @default
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
this.stepCount = 0;
|
|
|
|
|
2013-12-24 03:18:55 +00:00
|
|
|
// Parse the configuration object (if any)
|
|
|
|
if (arguments.length === 1 && typeof arguments[0] === 'object')
|
|
|
|
{
|
|
|
|
this.parseConfig(arguments[0]);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (typeof width !== 'undefined')
|
|
|
|
{
|
|
|
|
this.width = width;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof height !== 'undefined')
|
|
|
|
{
|
|
|
|
this.height = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof renderer !== 'undefined')
|
|
|
|
{
|
|
|
|
this.renderer = renderer;
|
|
|
|
this.renderType = renderer;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof parent !== 'undefined')
|
|
|
|
{
|
|
|
|
this.parent = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof transparent !== 'undefined')
|
|
|
|
{
|
|
|
|
this.transparent = transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof antialias !== 'undefined')
|
|
|
|
{
|
|
|
|
this.antialias = antialias;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.state = new Phaser.StateManager(this, state);
|
|
|
|
}
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
var _this = this;
|
2013-09-10 22:51:35 +00:00
|
|
|
|
|
|
|
this._onBoot = function () {
|
|
|
|
return _this.boot();
|
|
|
|
}
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (document.readyState === 'complete' || document.readyState === 'interactive')
|
|
|
|
{
|
|
|
|
window.setTimeout(this._onBoot, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
document.addEventListener('DOMContentLoaded', this._onBoot, false);
|
|
|
|
window.addEventListener('load', this._onBoot, false);
|
|
|
|
}
|
2013-09-10 22:51:35 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
return this;
|
2013-09-10 22:51:35 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Game.prototype = {
|
2013-09-10 00:26:50 +00:00
|
|
|
|
2013-12-24 03:18:55 +00:00
|
|
|
/**
|
|
|
|
* Parses a Game configuration object.
|
|
|
|
*
|
|
|
|
* @method Phaser.Game#parseConfig
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
parseConfig: function (config) {
|
|
|
|
|
|
|
|
this.config = config;
|
|
|
|
|
|
|
|
if (config['width'])
|
|
|
|
{
|
|
|
|
this.width = this.parseDimension(config['width'], 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config['height'])
|
|
|
|
{
|
|
|
|
this.height = this.parseDimension(config['height'], 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config['renderer'])
|
|
|
|
{
|
|
|
|
this.renderer = config['renderer'];
|
|
|
|
this.renderType = config['renderer'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config['parent'])
|
|
|
|
{
|
|
|
|
this.parent = config['parent'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config['transparent'])
|
|
|
|
{
|
|
|
|
this.transparent = config['transparent'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config['antialias'])
|
|
|
|
{
|
|
|
|
this.antialias = config['antialias'];
|
|
|
|
}
|
|
|
|
|
2014-02-19 03:51:48 +00:00
|
|
|
if (config['physicsConfig'])
|
|
|
|
{
|
|
|
|
this.physicsConfig = config['physicsConfig'];
|
|
|
|
}
|
|
|
|
|
2013-12-24 03:18:55 +00:00
|
|
|
var state = null;
|
|
|
|
|
|
|
|
if (config['state'])
|
|
|
|
{
|
|
|
|
state = config['state'];
|
|
|
|
}
|
|
|
|
|
|
|
|
this.state = new Phaser.StateManager(this, state);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get dimension.
|
|
|
|
*
|
|
|
|
* @method Phaser.Game#parseDimension
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
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 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* Initialize engine sub modules and start the game.
|
|
|
|
*
|
|
|
|
* @method Phaser.Game#boot
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
boot: function () {
|
|
|
|
|
|
|
|
if (this.isBooted)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!document.body)
|
|
|
|
{
|
|
|
|
window.setTimeout(this._onBoot, 20);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
document.removeEventListener('DOMContentLoaded', this._onBoot);
|
|
|
|
window.removeEventListener('load', this._onBoot);
|
|
|
|
|
|
|
|
this.onPause = new Phaser.Signal();
|
|
|
|
this.onResume = new Phaser.Signal();
|
|
|
|
|
|
|
|
this.isBooted = true;
|
|
|
|
|
|
|
|
this.device = new Phaser.Device();
|
|
|
|
this.math = Phaser.Math;
|
|
|
|
this.rnd = new Phaser.RandomDataGenerator([(Date.now() * Math.random()).toString()]);
|
|
|
|
|
|
|
|
this.stage = new Phaser.Stage(this, this.width, this.height);
|
2014-02-13 12:50:10 +00:00
|
|
|
this.scale = new Phaser.StageScaleMode(this, this.width, this.height);
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
this.setUpRenderer();
|
|
|
|
|
|
|
|
this.world = new Phaser.World(this);
|
|
|
|
this.add = new Phaser.GameObjectFactory(this);
|
2014-02-21 14:50:18 +00:00
|
|
|
this.make = new Phaser.GameObjectCreator(this);
|
2013-11-25 03:13:04 +00:00
|
|
|
this.cache = new Phaser.Cache(this);
|
|
|
|
this.load = new Phaser.Loader(this);
|
|
|
|
this.time = new Phaser.Time(this);
|
|
|
|
this.tweens = new Phaser.TweenManager(this);
|
|
|
|
this.input = new Phaser.Input(this);
|
|
|
|
this.sound = new Phaser.SoundManager(this);
|
2014-02-19 03:51:48 +00:00
|
|
|
this.physics = new Phaser.Physics.World(this, this.physicsConfig);
|
2013-11-25 03:13:04 +00:00
|
|
|
this.particles = new Phaser.Particles(this);
|
|
|
|
this.plugins = new Phaser.PluginManager(this, this);
|
|
|
|
this.net = new Phaser.Net(this);
|
|
|
|
this.debug = new Phaser.Utils.Debug(this);
|
|
|
|
|
2014-01-08 11:21:30 +00:00
|
|
|
this.time.boot();
|
2013-11-25 03:13:04 +00:00
|
|
|
this.stage.boot();
|
|
|
|
this.world.boot();
|
|
|
|
this.input.boot();
|
|
|
|
this.sound.boot();
|
2014-02-07 17:14:10 +00:00
|
|
|
this.state.boot();
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
this.load.onLoadComplete.add(this.loadComplete, this);
|
|
|
|
|
|
|
|
this.showDebugHeader();
|
|
|
|
|
|
|
|
this.isRunning = true;
|
2013-08-29 06:06:16 +00:00
|
|
|
this._loadComplete = false;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2014-02-20 01:31:13 +00:00
|
|
|
if (this.config && this.config['forceSetTimeOut'])
|
|
|
|
{
|
|
|
|
this.raf = new Phaser.RequestAnimationFrame(this, this.config['forceSetTimeOut']);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.raf = new Phaser.RequestAnimationFrame(this, false);
|
|
|
|
}
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
this.raf.start();
|
|
|
|
}
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
},
|
2013-10-23 12:15:56 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-11-01 04:58:08 +00:00
|
|
|
* Displays a Phaser version debug header in the console.
|
|
|
|
*
|
|
|
|
* @method Phaser.Game#showDebugHeader
|
|
|
|
* @protected
|
|
|
|
*/
|
2013-11-25 03:13:04 +00:00
|
|
|
showDebugHeader: function () {
|
|
|
|
|
|
|
|
var v = Phaser.DEV_VERSION;
|
|
|
|
var r = 'Canvas';
|
|
|
|
var a = 'HTML Audio';
|
|
|
|
|
|
|
|
if (this.renderType == Phaser.WEBGL)
|
|
|
|
{
|
|
|
|
r = 'WebGL';
|
|
|
|
}
|
2013-11-25 14:53:30 +00:00
|
|
|
else if (this.renderType == Phaser.HEADLESS)
|
|
|
|
{
|
|
|
|
r = 'Headless';
|
|
|
|
}
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
if (this.device.webAudio)
|
|
|
|
{
|
|
|
|
a = 'WebAudio';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.device.chrome)
|
|
|
|
{
|
|
|
|
var args = [
|
|
|
|
'%c %c %c Phaser v' + v + ' - Renderer: ' + r + ' - Audio: ' + a + ' %c %c ',
|
|
|
|
'background: #00bff3',
|
|
|
|
'background: #0072bc',
|
|
|
|
'color: #ffffff; background: #003471',
|
|
|
|
'background: #0072bc',
|
|
|
|
'background: #00bff3'
|
|
|
|
];
|
|
|
|
|
|
|
|
console.log.apply(console, args);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
console.log('Phaser v' + v + ' - Renderer: ' + r + ' - Audio: ' + a);
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if the device is capable of using the requested renderer and sets it up or an alternative if not.
|
|
|
|
*
|
|
|
|
* @method Phaser.Game#setUpRenderer
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
setUpRenderer: function () {
|
|
|
|
|
2013-11-25 14:53:30 +00:00
|
|
|
if (this.renderType === Phaser.HEADLESS || this.renderType === Phaser.CANVAS || (this.renderType === Phaser.AUTO && this.device.webGL === false))
|
2013-11-25 03:13:04 +00:00
|
|
|
{
|
|
|
|
if (this.device.canvas)
|
|
|
|
{
|
2013-11-25 14:53:30 +00:00
|
|
|
if (this.renderType === Phaser.AUTO)
|
|
|
|
{
|
|
|
|
this.renderType = Phaser.CANVAS;
|
|
|
|
}
|
|
|
|
|
2014-02-13 12:55:58 +00:00
|
|
|
this.renderer = new PIXI.CanvasRenderer(this.width, this.height, this.canvas, this.transparent);
|
2013-11-25 03:13:04 +00:00
|
|
|
Phaser.Canvas.setSmoothingEnabled(this.renderer.context, this.antialias);
|
|
|
|
this.context = this.renderer.context;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Error('Phaser.Game - cannot create Canvas or WebGL context, aborting.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// They requested WebGL, and their browser supports it
|
|
|
|
this.renderType = Phaser.WEBGL;
|
2014-02-13 12:55:58 +00:00
|
|
|
this.renderer = new PIXI.WebGLRenderer(this.width, this.height, this.canvas, this.transparent, this.antialias);
|
2013-11-25 03:13:04 +00:00
|
|
|
this.context = null;
|
|
|
|
}
|
2013-08-29 16:20:59 +00:00
|
|
|
|
2014-02-13 13:00:15 +00:00
|
|
|
Phaser.Canvas.addToDOM(this.canvas, this.parent, true);
|
|
|
|
Phaser.Canvas.setTouchAction(this.canvas);
|
2013-08-29 16:20:59 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
},
|
2013-08-29 16:20:59 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-08-29 13:38:51 +00:00
|
|
|
* Called when the load has finished, after preload was run.
|
2013-10-23 12:15:56 +00:00
|
|
|
*
|
2013-10-02 00:16:40 +00:00
|
|
|
* @method Phaser.Game#loadComplete
|
|
|
|
* @protected
|
2013-08-29 02:52:59 +00:00
|
|
|
*/
|
|
|
|
loadComplete: function () {
|
|
|
|
|
|
|
|
this._loadComplete = true;
|
2013-08-29 06:06:16 +00:00
|
|
|
|
2013-08-29 13:38:51 +00:00
|
|
|
this.state.loadComplete();
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* The core game loop.
|
2013-10-23 12:15:56 +00:00
|
|
|
*
|
2013-10-02 00:16:40 +00:00
|
|
|
* @method Phaser.Game#update
|
|
|
|
* @protected
|
2013-11-25 03:13:04 +00:00
|
|
|
* @param {number} time - The current time as provided by RequestAnimationFrame.
|
|
|
|
*/
|
|
|
|
update: function (time) {
|
|
|
|
|
|
|
|
this.time.update(time);
|
|
|
|
|
|
|
|
if (this._paused)
|
|
|
|
{
|
2014-02-12 19:45:09 +00:00
|
|
|
this.renderer.render(this.stage);
|
2013-11-25 03:13:04 +00:00
|
|
|
this.plugins.render();
|
|
|
|
this.state.render();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-29 17:10:13 +00:00
|
|
|
if (!this.pendingStep)
|
|
|
|
{
|
|
|
|
if (this.stepping)
|
|
|
|
{
|
|
|
|
this.pendingStep = true;
|
|
|
|
}
|
2013-11-25 03:13:04 +00:00
|
|
|
|
2014-01-29 17:10:13 +00:00
|
|
|
this.plugins.preUpdate();
|
2014-02-14 17:29:31 +00:00
|
|
|
this.stage.preUpdate();
|
2014-01-29 17:10:13 +00:00
|
|
|
|
|
|
|
this.stage.update();
|
|
|
|
this.tweens.update();
|
|
|
|
this.sound.update();
|
2014-02-03 04:09:30 +00:00
|
|
|
this.input.update();
|
2014-01-29 17:10:13 +00:00
|
|
|
this.state.update();
|
2014-02-10 22:54:56 +00:00
|
|
|
this.physics.update();
|
2014-01-29 17:10:13 +00:00
|
|
|
this.particles.update();
|
|
|
|
this.plugins.update();
|
|
|
|
|
2014-02-14 17:29:31 +00:00
|
|
|
this.stage.postUpdate();
|
2014-01-29 17:10:13 +00:00
|
|
|
this.plugins.postUpdate();
|
|
|
|
}
|
2013-09-23 00:06:09 +00:00
|
|
|
|
2013-11-25 14:53:30 +00:00
|
|
|
if (this.renderType !== Phaser.HEADLESS)
|
|
|
|
{
|
2014-02-12 19:45:09 +00:00
|
|
|
this.renderer.render(this.stage);
|
2013-11-25 14:53:30 +00:00
|
|
|
this.plugins.render();
|
|
|
|
this.state.render();
|
|
|
|
|
|
|
|
this.plugins.postRender();
|
|
|
|
}
|
2013-11-25 03:13:04 +00:00
|
|
|
}
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
},
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2014-01-31 05:42:20 +00:00
|
|
|
/**
|
|
|
|
* Enable core game loop stepping. When enabled you must call game.step() directly (perhaps via a DOM button?)
|
|
|
|
* Calling step will advance the game loop by one frame. This is extremely useful to hard to track down errors!
|
|
|
|
*
|
|
|
|
* @method Phaser.Game#enableStep
|
|
|
|
*/
|
2014-01-29 17:10:13 +00:00
|
|
|
enableStep: function () {
|
|
|
|
|
|
|
|
this.stepping = true;
|
|
|
|
this.pendingStep = false;
|
|
|
|
this.stepCount = 0;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-01-31 05:42:20 +00:00
|
|
|
/**
|
|
|
|
* Disables core game loop stepping.
|
|
|
|
*
|
|
|
|
* @method Phaser.Game#disableStep
|
|
|
|
*/
|
|
|
|
disableStep: function () {
|
|
|
|
|
|
|
|
this.stepping = false;
|
|
|
|
this.pendingStep = false;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When stepping is enabled you must call this function directly (perhaps via a DOM button?) to advance the game loop by one frame.
|
|
|
|
* This is extremely useful to hard to track down errors! Use the internal stepCount property to monitor progress.
|
|
|
|
*
|
|
|
|
* @method Phaser.Game#step
|
|
|
|
*/
|
2014-01-29 17:10:13 +00:00
|
|
|
step: function () {
|
|
|
|
|
|
|
|
this.pendingStep = false;
|
|
|
|
this.stepCount++;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-08-29 02:52:59 +00:00
|
|
|
* Nuke the entire game from orbit
|
2013-10-23 12:15:56 +00:00
|
|
|
*
|
2013-10-02 00:16:40 +00:00
|
|
|
* @method Phaser.Game#destroy
|
2013-08-29 02:52:59 +00:00
|
|
|
*/
|
|
|
|
destroy: function () {
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
this.raf.stop();
|
2013-10-24 03:27:28 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
this.input.destroy();
|
2013-10-24 03:27:28 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
this.state.destroy();
|
2013-08-29 14:14:56 +00:00
|
|
|
|
|
|
|
this.state = null;
|
2013-08-29 02:52:59 +00:00
|
|
|
this.cache = null;
|
|
|
|
this.input = null;
|
|
|
|
this.load = null;
|
|
|
|
this.sound = null;
|
|
|
|
this.stage = null;
|
|
|
|
this.time = null;
|
|
|
|
this.world = null;
|
|
|
|
this.isBooted = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
};
|
2013-09-10 22:51:35 +00:00
|
|
|
|
2013-12-30 16:54:00 +00:00
|
|
|
Phaser.Game.prototype.constructor = Phaser.Game;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-02 00:16:40 +00:00
|
|
|
* The paused state of the Game. A paused game doesn't update any of its subsystems.
|
|
|
|
* When a game is paused the onPause event is dispatched. When it is resumed the onResume event is dispatched.
|
|
|
|
* @name Phaser.Game#paused
|
|
|
|
* @property {boolean} paused - Gets and sets the paused state of the Game.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-10 22:51:35 +00:00
|
|
|
Object.defineProperty(Phaser.Game.prototype, "paused", {
|
|
|
|
|
|
|
|
get: function () {
|
|
|
|
return this._paused;
|
|
|
|
},
|
|
|
|
|
|
|
|
set: function (value) {
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (value === true)
|
|
|
|
{
|
|
|
|
if (this._paused === false)
|
|
|
|
{
|
|
|
|
this._paused = true;
|
|
|
|
this.onPause.dispatch(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (this._paused)
|
|
|
|
{
|
|
|
|
this._paused = false;
|
|
|
|
this.onResume.dispatch(this);
|
|
|
|
}
|
|
|
|
}
|
2013-09-10 22:51:35 +00:00
|
|
|
|
2013-09-11 12:21:07 +00:00
|
|
|
}
|
2013-09-10 22:51:35 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2013-10-07 09:21:22 +00:00
|
|
|
/**
|
|
|
|
* "Deleted code is debugged code." - Jeff Sickel
|
|
|
|
*/
|