phaser/v3/src/boot/Game.js

165 lines
3.8 KiB
JavaScript
Raw Normal View History

var Class = require('../utils/Class');
var Config = require('./Config');
2016-11-22 03:32:41 +00:00
var DebugHeader = require('./DebugHeader');
var Device = require('../device');
2017-07-20 10:34:01 +00:00
var NOOP = require('../utils/NOOP');
var AddToDOM = require('../dom/AddToDOM');
var DOMContentLoaded = require('../dom/DOMContentLoaded');
var EventDispatcher = require('../events/EventDispatcher');
2017-06-28 16:17:31 +00:00
var VisibilityHandler = require('./VisibilityHandler');
2017-06-28 16:17:31 +00:00
var AnimationManager = require('../animation/manager/AnimationManager');
var CreateRenderer = require('./CreateRenderer');
var Data = require('../plugins/Data');
var GlobalCache = require('../cache/GlobalCache');
var GlobalInputManager = require('../input/global/GlobalInputManager');
var GlobalSceneManager = require('../scene/GlobalSceneManager');
var TextureManager = require('../textures/TextureManager');
2017-06-28 16:17:31 +00:00
var TimeStep = require('./TimeStep');
2016-11-22 03:11:33 +00:00
var Game = new Class({
initialize:
2016-11-24 17:01:52 +00:00
function Game (config)
{
this.config = new Config(config);
this.renderer = null;
this.canvas = null;
this.context = null;
this.isBooted = false;
this.isRunning = false;
this.events = new EventDispatcher();
this.anims = new AnimationManager(this);
this.textures = new TextureManager(this);
this.cache = new GlobalCache(this);
this.registry = new Data(this);
this.input = new GlobalInputManager(this, this.config);
this.scene = new GlobalSceneManager(this, this.config.sceneConfig);
this.device = Device;
this.loop = new TimeStep(this, this.config.fps);
2017-07-20 10:34:01 +00:00
this.onStepCallback = NOOP;
// Wait for the DOM Ready event, then call boot.
DOMContentLoaded(this.boot.bind(this));
// For debugging only
window.game = this;
},
boot: function ()
{
this.isBooted = true;
this.config.preBoot();
DebugHeader(this);
2016-11-29 11:26:30 +00:00
CreateRenderer(this);
2016-12-07 03:42:41 +00:00
AddToDOM(this.canvas, this.config.parent);
2017-04-04 22:58:45 +00:00
this.anims.boot(this.textures);
this.scene.boot();
this.input.boot();
this.isRunning = true;
this.config.postBoot();
this.loop.start(this.step.bind(this));
VisibilityHandler(this.events);
this.events.on('HIDDEN', this.onHidden.bind(this));
this.events.on('VISIBLE', this.onVisible.bind(this));
this.events.on('ON_BLUR', this.onBlur.bind(this));
this.events.on('ON_FOCUS', this.onFocus.bind(this));
},
step: function (time, delta)
{
var active = this.scene.active;
var renderer = this.renderer;
// Global Managers (Time, Input, etc)
this.input.update(time, delta);
// Scenes
2017-07-20 10:34:01 +00:00
this.onStepCallback();
for (var i = 0; i < active.length; i++)
{
active[i].scene.sys.step(time, delta);
}
// Render
// var interpolation = this.frameDelta / this.timestep;
renderer.preRender();
// This uses active.length, in case scene.update removed the scene from the active list
for (i = 0; i < active.length; i++)
{
active[i].scene.sys.render(0, renderer);
}
renderer.postRender();
},
onHidden: function ()
{
this.loop.pause();
// var active = this.scene.active;
// for (var i = 0; i < active.length; i++)
// {
// active[i].scene.sys.pause();
// }
},
onVisible: function ()
{
this.loop.resume();
// var active = this.scene.active;
// for (var i = 0; i < active.length; i++)
// {
// active[i].scene.sys.resume();
// }
},
onBlur: function ()
{
this.loop.blur();
},
onFocus: function ()
{
this.loop.focus();
}
2016-10-17 20:22:55 +00:00
});
2017-06-27 01:20:03 +00:00
2016-11-22 03:11:33 +00:00
module.exports = Game;