phaser/src/core/State.js

174 lines
3.9 KiB
JavaScript
Raw Normal View History

/**
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-09-13 04:44:04 +00:00
* This is a base State class which can be extended if you are creating your own game.
* It provides quick access to common functions such as the camera, cache, input, match, sound and more.
*
2013-10-01 12:54:29 +00:00
* @class Phaser.State
* @constructor
*/
Phaser.State = function () {
2013-10-02 11:11:22 +00:00
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Game} game - A reference to the currently running Game.
*/
this.game = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.GameObjectFactory} add - Reference to the GameObjectFactory.
*/
this.add = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.GameObjectCreator} make - Reference to the GameObjectCreator.
*/
this.make = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Camera} camera - A handy reference to world.camera.
*/
this.camera = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Cache} cache - Reference to the assets cache.
*/
this.cache = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Input} input - Reference to the input manager
*/
this.input = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Loader} load - Reference to the assets loader.
*/
this.load = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Math} math - Reference to the math helper.
*/
2013-09-13 04:44:04 +00:00
this.math = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.SoundManager} sound - Reference to the sound manager.
*/
this.sound = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.ScaleManager} scale - Reference to the game scale manager.
*/
this.scale = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Stage} stage - Reference to the stage.
*/
this.stage = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.TimeManager} time - Reference to game clock.
*/
this.time = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.TweenManager} tweens - Reference to the tween manager.
*/
this.tweens = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.World} world - Reference to the world.
*/
this.world = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Particles} particles - The Particle Manager for the game. It is called during the game update loop and in turn updates any Emitters attached to it.
*/
this.particles = null;
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Physics.World} physics - Reference to the physics manager.
*/
this.physics = null;
/**
* @property {Phaser.RandomDataGenerator} rnd - Reference to the random data generator.
*/
this.rnd = null;
};
Phaser.State.prototype = {
/**
* Override this method to add some load operations.
* If you need to use the loader, you may need to use them here.
2013-10-01 12:54:29 +00:00
*
2013-10-02 11:11:22 +00:00
* @method Phaser.State#preload
*/
preload: function () {
},
2013-10-02 00:16:40 +00:00
/**
* Put update logic here.
*
2013-10-02 11:11:22 +00:00
* @method Phaser.State#loadUpdate
2013-10-02 00:16:40 +00:00
*/
loadUpdate: function () {
},
/**
* Put render operations here.
*
2013-10-02 11:11:22 +00:00
* @method Phaser.State#loadRender
2013-10-02 00:16:40 +00:00
*/
loadRender: function () {
},
/**
* This method is called after the game engine successfully switches states.
2013-10-01 12:54:29 +00:00
* Feel free to add any setup code here (do not load anything here, override preload() instead).
*
2013-10-02 11:11:22 +00:00
* @method Phaser.State#create
*/
create: function () {
},
/**
* Put update logic here.
2013-10-01 12:54:29 +00:00
*
2013-10-02 11:11:22 +00:00
* @method Phaser.State#update
*/
update: function () {
},
/**
* Put render operations here.
2013-10-01 12:54:29 +00:00
*
2013-10-02 11:11:22 +00:00
* @method Phaser.State#render
*/
render: function () {
},
/**
* This method will be called when game paused.
2013-10-01 12:54:29 +00:00
*
2013-10-02 11:11:22 +00:00
* @method Phaser.State#paused
*/
paused: function () {
},
/**
* This method will be called when the state is shut down (i.e. you switch to another state from this one).
* @method Phaser.State#shutdown
*/
shutdown: function () {
}
};
Phaser.State.prototype.constructor = Phaser.State;