2013-11-25 03:13:04 +00:00
|
|
|
/* jshint newcap: false */
|
|
|
|
|
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}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-10-02 11:11:22 +00:00
|
|
|
* The State Manager is responsible for loading, setting up and switching game states.
|
2013-10-01 12:54:29 +00:00
|
|
|
*
|
|
|
|
* @class Phaser.StateManager
|
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game - A reference to the currently running game.
|
2013-10-02 11:11:22 +00:00
|
|
|
* @param {Phaser.State|Object} [pendingState=null] - A State object to seed the manager with.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-29 13:38:51 +00:00
|
|
|
Phaser.StateManager = function (game, pendingState) {
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - A reference to the currently running game.
|
|
|
|
*/
|
|
|
|
this.game = game;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Object} states - The object containing Phaser.States.
|
|
|
|
*/
|
|
|
|
this.states = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.State} _pendingState - The state to be switched to in the next frame.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._pendingState = null;
|
|
|
|
|
2013-12-24 03:18:55 +00:00
|
|
|
if (typeof pendingState !== 'undefined' && pendingState !== null)
|
2013-11-25 03:13:04 +00:00
|
|
|
{
|
|
|
|
this._pendingState = pendingState;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} _created - Flag that sets if the State has been created or not.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._created = false;
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @property {string} current - The current active State object (defaults to null).
|
|
|
|
*/
|
|
|
|
this.current = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onInitCallback - This will be called when the state is started (i.e. set as the current active state).
|
|
|
|
*/
|
|
|
|
this.onInitCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onPreloadCallback - This will be called when init states (loading assets...).
|
|
|
|
*/
|
|
|
|
this.onPreloadCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onCreateCallback - This will be called when create states (setup states...).
|
|
|
|
*/
|
|
|
|
this.onCreateCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onUpdateCallback - This will be called when State is updated, this doesn't happen during load (@see onLoadUpdateCallback).
|
|
|
|
*/
|
|
|
|
this.onUpdateCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onRenderCallback - This will be called when the State is rendered, this doesn't happen during load (see onLoadRenderCallback).
|
|
|
|
*/
|
|
|
|
this.onRenderCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onPreRenderCallback - This will be called before the State is rendered and before the stage is cleared.
|
|
|
|
*/
|
|
|
|
this.onPreRenderCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onLoadUpdateCallback - This will be called when the State is updated but only during the load process.
|
|
|
|
*/
|
|
|
|
this.onLoadUpdateCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onLoadRenderCallback - This will be called when the State is rendered but only during the load process.
|
|
|
|
*/
|
|
|
|
this.onLoadRenderCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onPausedCallback - This will be called when the state is paused.
|
|
|
|
*/
|
|
|
|
this.onPausedCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {function} onShutDownCallback - This will be called when the state is shut down (i.e. swapped to another state).
|
|
|
|
*/
|
|
|
|
this.onShutDownCallback = null;
|
2013-08-29 13:38:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.StateManager.prototype = {
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The Boot handler is called by Phaser.Game when it first starts up.
|
|
|
|
* @method Phaser.StateManager#boot
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
boot: function () {
|
|
|
|
|
2013-11-28 05:43:35 +00:00
|
|
|
this.game.onPause.add(this.pause, this);
|
|
|
|
this.game.onResume.add(this.resume, this);
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this._pendingState !== null)
|
|
|
|
{
|
|
|
|
if (typeof this._pendingState === 'string')
|
|
|
|
{
|
|
|
|
// State was already added, so just start it
|
|
|
|
this.start(this._pendingState, false, false);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.add('default', this._pendingState, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-08-29 13:38:51 +00:00
|
|
|
* Add a new State.
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.StateManager#add
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param key {string} - A unique key you use to reference this state, i.e. "MainMenu", "Level1".
|
|
|
|
* @param state {State} - The state you want to switch to.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @param autoStart {boolean} - Start the state immediately after creating it? (default true)
|
2013-08-29 13:38:51 +00:00
|
|
|
*/
|
|
|
|
add: function (key, state, autoStart) {
|
|
|
|
|
2013-08-29 14:14:56 +00:00
|
|
|
if (typeof autoStart === "undefined") { autoStart = false; }
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
var newState;
|
|
|
|
|
|
|
|
if (state instanceof Phaser.State)
|
|
|
|
{
|
|
|
|
newState = state;
|
|
|
|
}
|
|
|
|
else if (typeof state === 'object')
|
|
|
|
{
|
|
|
|
newState = state;
|
|
|
|
newState.game = this.game;
|
|
|
|
}
|
|
|
|
else if (typeof state === 'function')
|
|
|
|
{
|
|
|
|
newState = new state(this.game);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.states[key] = newState;
|
|
|
|
|
|
|
|
if (autoStart)
|
|
|
|
{
|
|
|
|
if (this.game.isBooted)
|
|
|
|
{
|
|
|
|
this.start(key);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this._pendingState = key;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return newState;
|
2013-08-29 13:38:51 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-11-25 04:40:04 +00:00
|
|
|
* Delete the given state.
|
|
|
|
* @method Phaser.StateManager#remove
|
|
|
|
* @param {string} key - A unique key you use to reference this state, i.e. "MainMenu", "Level1".
|
|
|
|
*/
|
2013-08-29 13:38:51 +00:00
|
|
|
remove: function (key) {
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this.current == key)
|
|
|
|
{
|
|
|
|
this.callbackContext = null;
|
|
|
|
|
|
|
|
this.onInitCallback = null;
|
|
|
|
this.onShutDownCallback = null;
|
|
|
|
|
|
|
|
this.onPreloadCallback = null;
|
|
|
|
this.onLoadRenderCallback = null;
|
|
|
|
this.onLoadUpdateCallback = null;
|
|
|
|
this.onCreateCallback = null;
|
|
|
|
this.onUpdateCallback = null;
|
|
|
|
this.onRenderCallback = null;
|
|
|
|
this.onPausedCallback = null;
|
|
|
|
this.onDestroyCallback = null;
|
|
|
|
}
|
2013-08-29 14:14:56 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
delete this.states[key];
|
2013-08-29 14:14:56 +00:00
|
|
|
|
2013-08-29 13:38:51 +00:00
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-08-29 13:38:51 +00:00
|
|
|
* Start the given state
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.StateManager#start
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {string} key - The key of the state you want to start.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @param {boolean} [clearWorld] - clear everything in the world? (Default to true)
|
|
|
|
* @param {boolean} [clearCache] - clear asset cache? (Default to false and ONLY available when clearWorld=true)
|
2013-08-29 13:38:51 +00:00
|
|
|
*/
|
|
|
|
start: function (key, clearWorld, clearCache) {
|
|
|
|
|
|
|
|
if (typeof clearWorld === "undefined") { clearWorld = true; }
|
|
|
|
if (typeof clearCache === "undefined") { clearCache = false; }
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this.game.isBooted === false)
|
2013-08-29 14:14:56 +00:00
|
|
|
{
|
2013-11-25 03:13:04 +00:00
|
|
|
this._pendingState = key;
|
|
|
|
return;
|
2013-08-29 14:14:56 +00:00
|
|
|
}
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this.checkState(key) === false)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Already got a state running?
|
|
|
|
if (this.current)
|
|
|
|
{
|
|
|
|
this.onShutDownCallback.call(this.callbackContext, this.game);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (clearWorld)
|
|
|
|
{
|
|
|
|
this.game.tweens.removeAll();
|
|
|
|
|
|
|
|
this.game.world.destroy();
|
|
|
|
|
|
|
|
if (clearCache === true)
|
|
|
|
{
|
|
|
|
this.game.cache.destroy();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setCurrentState(key);
|
|
|
|
}
|
2013-08-29 13:38:51 +00:00
|
|
|
|
|
|
|
if (this.onPreloadCallback)
|
|
|
|
{
|
|
|
|
this.game.load.reset();
|
2013-10-30 16:09:06 +00:00
|
|
|
this.onPreloadCallback.call(this.callbackContext, this.game);
|
2013-08-29 13:38:51 +00:00
|
|
|
|
|
|
|
// Is the loader empty?
|
2013-11-26 21:10:01 +00:00
|
|
|
if (this.game.load.totalQueuedFiles() === 0)
|
2013-08-29 13:38:51 +00:00
|
|
|
{
|
|
|
|
this.game.loadComplete();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Start the loader going as we have something in the queue
|
|
|
|
this.game.load.start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// No init? Then there was nothing to load either
|
|
|
|
this.game.loadComplete();
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
2013-11-25 03:13:04 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Used by onInit and onShutdown when those functions don't exist on the state
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.StateManager#dummy
|
2013-10-01 12:54:29 +00:00
|
|
|
* @private
|
|
|
|
*/
|
2013-08-29 13:38:51 +00:00
|
|
|
dummy: function () {
|
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Description.
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.StateManager#checkState
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {string} key - The key of the state you want to check.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @return {boolean} Description.
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-08-29 13:38:51 +00:00
|
|
|
checkState: function (key) {
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this.states[key])
|
|
|
|
{
|
|
|
|
var valid = false;
|
|
|
|
|
|
|
|
if (this.states[key]['preload']) { valid = true; }
|
|
|
|
|
|
|
|
if (valid === false && this.states[key]['loadRender']) { valid = true; }
|
|
|
|
if (valid === false && this.states[key]['loadUpdate']) { valid = true; }
|
|
|
|
if (valid === false && this.states[key]['create']) { valid = true; }
|
|
|
|
if (valid === false && this.states[key]['update']) { valid = true; }
|
|
|
|
if (valid === false && this.states[key]['preRender']) { valid = true; }
|
|
|
|
if (valid === false && this.states[key]['render']) { valid = true; }
|
|
|
|
if (valid === false && this.states[key]['paused']) { valid = true; }
|
|
|
|
|
|
|
|
if (valid === false)
|
|
|
|
{
|
|
|
|
console.warn("Invalid Phaser State object given. Must contain at least a one of the required functions.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
console.warn("Phaser.StateManager - No state found with the key: " + key);
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-09-18 05:34:56 +00:00
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-10-02 11:11:22 +00:00
|
|
|
* Links game properties to the State given by the key.
|
|
|
|
* @method Phaser.StateManager#link
|
|
|
|
* @param {string} key - State key.
|
|
|
|
* @protected
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-09-18 05:34:56 +00:00
|
|
|
link: function (key) {
|
|
|
|
|
|
|
|
this.states[key].game = this.game;
|
|
|
|
this.states[key].add = this.game.add;
|
|
|
|
this.states[key].camera = this.game.camera;
|
|
|
|
this.states[key].cache = this.game.cache;
|
|
|
|
this.states[key].input = this.game.input;
|
|
|
|
this.states[key].load = this.game.load;
|
|
|
|
this.states[key].math = this.game.math;
|
|
|
|
this.states[key].sound = this.game.sound;
|
|
|
|
this.states[key].stage = this.game.stage;
|
|
|
|
this.states[key].time = this.game.time;
|
|
|
|
this.states[key].tweens = this.game.tweens;
|
|
|
|
this.states[key].world = this.game.world;
|
|
|
|
this.states[key].particles = this.game.particles;
|
|
|
|
this.states[key].physics = this.game.physics;
|
|
|
|
this.states[key].rnd = this.game.rnd;
|
|
|
|
|
2013-08-29 13:38:51 +00:00
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-10-02 11:11:22 +00:00
|
|
|
* Sets the current State. Should not be called directly (use StateManager.start)
|
|
|
|
* @method Phaser.StateManager#setCurrentState
|
|
|
|
* @param {string} key - State key.
|
|
|
|
* @protected
|
2013-10-01 12:54:29 +00:00
|
|
|
*/
|
2013-11-25 03:13:04 +00:00
|
|
|
setCurrentState: function (key) {
|
2013-08-29 13:38:51 +00:00
|
|
|
|
|
|
|
this.callbackContext = this.states[key];
|
|
|
|
|
2013-09-18 05:34:56 +00:00
|
|
|
this.link(key);
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
// Used when the state is set as being the current active state
|
2013-08-29 13:38:51 +00:00
|
|
|
this.onInitCallback = this.states[key]['init'] || this.dummy;
|
|
|
|
|
|
|
|
this.onPreloadCallback = this.states[key]['preload'] || null;
|
|
|
|
this.onLoadRenderCallback = this.states[key]['loadRender'] || null;
|
|
|
|
this.onLoadUpdateCallback = this.states[key]['loadUpdate'] || null;
|
|
|
|
this.onCreateCallback = this.states[key]['create'] || null;
|
|
|
|
this.onUpdateCallback = this.states[key]['update'] || null;
|
|
|
|
this.onPreRenderCallback = this.states[key]['preRender'] || null;
|
|
|
|
this.onRenderCallback = this.states[key]['render'] || null;
|
|
|
|
this.onPausedCallback = this.states[key]['paused'] || null;
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
// Used when the state is no longer the current active state
|
2013-08-29 13:38:51 +00:00
|
|
|
this.onShutDownCallback = this.states[key]['shutdown'] || this.dummy;
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
this.current = key;
|
|
|
|
this._created = false;
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
this.onInitCallback.call(this.callbackContext, this.game);
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
},
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @method Phaser.StateManager#loadComplete
|
2013-10-02 11:11:22 +00:00
|
|
|
* @protected
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-29 13:38:51 +00:00
|
|
|
loadComplete: function () {
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this._created === false && this.onCreateCallback)
|
2013-08-30 17:56:10 +00:00
|
|
|
{
|
2013-11-25 03:13:04 +00:00
|
|
|
this._created = true;
|
2013-10-30 16:09:06 +00:00
|
|
|
this.onCreateCallback.call(this.callbackContext, this.game);
|
2013-08-29 13:38:51 +00:00
|
|
|
}
|
2013-09-23 21:23:17 +00:00
|
|
|
else
|
|
|
|
{
|
2013-11-25 03:13:04 +00:00
|
|
|
this._created = true;
|
2013-09-23 21:23:17 +00:00
|
|
|
}
|
2013-08-29 13:38:51 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-28 05:43:35 +00:00
|
|
|
/**
|
|
|
|
* @method Phaser.StateManager#pause
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
pause: function () {
|
|
|
|
|
|
|
|
if (this._created && this.onPausedCallback)
|
|
|
|
{
|
|
|
|
this.onPausedCallback.call(this.callbackContext, this.game, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method Phaser.StateManager#resume
|
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
resume: function () {
|
|
|
|
|
|
|
|
if (this._created && this.onre)
|
|
|
|
{
|
|
|
|
this.onPausedCallback.call(this.callbackContext, this.game, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @method Phaser.StateManager#update
|
2013-10-02 11:11:22 +00:00
|
|
|
* @protected
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-29 14:14:56 +00:00
|
|
|
update: function () {
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this._created && this.onUpdateCallback)
|
|
|
|
{
|
|
|
|
this.onUpdateCallback.call(this.callbackContext, this.game);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (this.onLoadUpdateCallback)
|
|
|
|
{
|
|
|
|
this.onLoadUpdateCallback.call(this.callbackContext, this.game);
|
|
|
|
}
|
|
|
|
}
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-08-29 14:14:56 +00:00
|
|
|
},
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @method Phaser.StateManager#preRender
|
2013-10-02 11:11:22 +00:00
|
|
|
* @protected
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-29 14:14:56 +00:00
|
|
|
preRender: function () {
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this.onPreRenderCallback)
|
|
|
|
{
|
|
|
|
this.onPreRenderCallback.call(this.callbackContext, this.game);
|
|
|
|
}
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-08-29 14:14:56 +00:00
|
|
|
},
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
|
|
|
* @method Phaser.StateManager#render
|
2013-10-02 11:11:22 +00:00
|
|
|
* @protected
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-29 14:14:56 +00:00
|
|
|
render: function () {
|
2013-08-29 13:38:51 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
if (this._created && this.onRenderCallback)
|
|
|
|
{
|
|
|
|
if (this.game.renderType === Phaser.CANVAS)
|
|
|
|
{
|
|
|
|
this.game.context.save();
|
|
|
|
this.game.context.setTransform(1, 0, 0, 1, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.onRenderCallback.call(this.callbackContext, this.game);
|
|
|
|
|
|
|
|
if (this.game.renderType === Phaser.CANVAS)
|
|
|
|
{
|
|
|
|
this.game.context.restore();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (this.onLoadRenderCallback)
|
|
|
|
{
|
|
|
|
this.onLoadRenderCallback.call(this.callbackContext, this.game);
|
|
|
|
}
|
|
|
|
}
|
2013-08-29 13:38:51 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
/**
|
2013-08-29 13:38:51 +00:00
|
|
|
* Nuke the entire game from orbit
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.StateManager#destroy
|
2013-08-29 13:38:51 +00:00
|
|
|
*/
|
|
|
|
destroy: function () {
|
|
|
|
|
|
|
|
this.callbackContext = null;
|
2013-08-29 14:14:56 +00:00
|
|
|
|
|
|
|
this.onInitCallback = null;
|
|
|
|
this.onShutDownCallback = null;
|
|
|
|
|
2013-08-29 13:38:51 +00:00
|
|
|
this.onPreloadCallback = null;
|
|
|
|
this.onLoadRenderCallback = null;
|
|
|
|
this.onLoadUpdateCallback = null;
|
|
|
|
this.onCreateCallback = null;
|
|
|
|
this.onUpdateCallback = null;
|
|
|
|
this.onRenderCallback = null;
|
|
|
|
this.onPausedCallback = null;
|
|
|
|
this.onDestroyCallback = null;
|
|
|
|
|
2013-08-29 14:14:56 +00:00
|
|
|
this.game = null;
|
|
|
|
this.states = {};
|
|
|
|
this._pendingState = null;
|
|
|
|
|
2013-08-29 13:38:51 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 21:23:00 +00:00
|
|
|
};
|
2013-12-30 16:54:00 +00:00
|
|
|
|
|
|
|
Phaser.StateManager.prototype.constructor = Phaser.StateManager;
|