phaser/v3/merge/states/StateSystems.js
2016-11-23 00:17:46 +00:00

106 lines
3.1 KiB
JavaScript

Phaser.State.Systems = function (state, config)
{
this.state = state;
this.config = config;
// State specific managers (Factory, Tweens, Loader, Physics, etc)
this.add;
this.input;
this.load;
this.tweens;
this.mainloop;
this.updates;
// State specific properties (transform, data, children, etc)
this.camera;
this.children;
this.color;
this.data;
this.fbo;
this.time;
this.transform;
};
Phaser.State.Systems.prototype.constructor = Phaser.State.Systems;
Phaser.State.Systems.prototype = {
init: function ()
{
// State specific managers (Factory, Tweens, Loader, Physics, etc)
this.add = new Phaser.GameObject.Factory(this.state);
this.load = new Phaser.Loader(this.state);
this.mainloop = new Phaser.State.MainLoop(this.state, this.state.settings.fps);
this.updates = new Phaser.UpdateManager(this.state);
this.tweens = new Phaser.TweenManager(this.state);
this.input = new Phaser.State.Input(this.state);
this.physics = new Phaser.Physics.Arcade(this.state, 800, 600);
// State specific properties (transform, data, children, etc)
this.camera = new Phaser.Camera(this.state, 0, 0, 800, 600);
this.children = new Phaser.Component.Children(this.state);
this.color = new Phaser.Component.Color(this.state);
this.data = new Phaser.Component.Data(this.state);
this.transform = this.camera.transform;
// Boot
this.input.init();
// Defaults
this.state.add = this.add;
this.state.load = this.load;
this.state.children = this.children;
this.state.color = this.color;
this.state.data = this.data;
this.state.camera = this.camera;
this.state.input = this.input;
this.state.transform = this.camera.transform;
this.state.state = this.state.game.state;
// Here we can check which Systems to install as properties into the State object
// (default systems always exist in here, regardless)
var config = this.config;
var t = typeof config;
if (t !== 'object' || (t === 'object' && !t.hasOwnProperty('systems')))
{
return;
}
// this.key = (config.hasOwnProperty('key')) ? config.key : '';
},
begin: function (timestamp, frameDelta)
{
},
update: function (timestep, physicsStep)
{
this.tweens.update(timestep);
this.physics.preUpdate(physicsStep);
},
preRender: function ()
{
this.physics.update();
},
end: function (fps, panic)
{
if (panic)
{
// This pattern introduces non-deterministic behavior, but in this case
// it's better than the alternative (the application would look like it
// was running very quickly until the simulation caught up to real
// time).
var discardedTime = Math.round(this.mainloop.resetFrameDelta());
console.warn('Main loop panicked, probably because the browser tab was put in the background. Discarding ' + discardedTime + 'ms');
}
}
};