phaser/v3/src/scene/local/Systems.js

283 lines
6.9 KiB
JavaScript
Raw Normal View History

var CameraManager = require('../../camera/local/CameraManager');
var Class = require('../../utils/Class');
var Clock = require('../../time/Clock');
var Data = require('../plugins/Data');
var DataStore = require('../plugins/DataStore');
var DisplayList = require('../plugins/DisplayList');
var EventDispatcher = require('../../events/EventDispatcher');
var GameObjectCreator = require('../plugins/GameObjectCreator');
var GameObjectFactory = require('../plugins/GameObjectFactory');
var InputManager = require('../plugins/InputManager');
var Loader = require('../plugins/Loader');
var PhysicsManager = require('../plugins/PhysicsManager');
var PoolManager = require('../plugins/PoolManager');
var SceneManager = require('../plugins/SceneManager');
var Settings = require('./Settings');
var StableSort = require('../../utils/array/StableSort');
2017-10-12 14:14:34 +00:00
var TweenManager = require('../../tweens/manager/TweenManager');
var UpdateList = require('../plugins/UpdateList');
var Systems = new Class({
initialize:
function Systems (scene, config)
{
this.scene = scene;
this.config = config;
this.settings = Settings.create(config);
this.sortChildrenFlag = false;
// Set by the GlobalSceneManager
this.canvas;
this.context;
// CORE (GLOBAL) SYSTEMS / PROPERTIES
this.game;
this.anims;
this.cache;
this.registry;
this.textures;
// Reference to Scene specific managers (Factory, Tweens, Loader, Physics, etc)
this.add;
this.cameras;
this.data;
this.dataStore;
this.displayList;
this.events;
this.inputManager;
this.load;
this.make;
this.physicsManager;
this.pool;
this.sceneManager;
this.time;
this.tweens;
this.updateList;
},
init: function (game)
{
var scene = this.scene;
this.game = game;
// Game (Global) level managers
this.anims = game.anims;
this.cache = game.cache;
this.registry = game.registry;
this.textures = game.textures;
// Scene specific managers (Factory, Tweens, Loader, Physics, etc)
this.add = new GameObjectFactory(scene);
this.cameras = new CameraManager(scene);
2017-09-08 01:41:00 +00:00
this.data = new Data(scene);
this.dataStore = new DataStore(scene);
this.displayList = new DisplayList(scene);
this.events = new EventDispatcher();
this.inputManager = new InputManager(scene);
this.load = new Loader(scene);
this.make = new GameObjectCreator(scene);
this.physicsManager = new PhysicsManager(scene);
this.pool = new PoolManager(scene);
this.sceneManager = new SceneManager(scene);
this.time = new Clock(scene);
this.tweens = new TweenManager(scene);
this.updateList = new UpdateList(scene);
// Sometimes the managers need access to a system created after them
this.add.boot(this);
this.inputManager.boot();
this.physicsManager.boot();
this.inject();
},
inject: function ()
{
var map = this.settings.map;
for (var key in map)
{
if (key === 'sys')
{
continue;
}
this.scene[map[key]] = this[key];
}
},
step: function (time, delta)
{
// Are there any pending SceneManager actions?
this.sceneManager.update();
2017-06-30 03:09:19 +00:00
if (!this.settings.active)
{
return;
}
2017-09-26 01:17:31 +00:00
// Move these into local arrays, so you can control which systems are registered here and their
// execution order
this.pool.begin(time);
this.updateList.begin(time);
2017-06-28 16:17:54 +00:00
this.time.begin(time);
2017-05-17 03:37:30 +00:00
this.tweens.begin(time);
this.inputManager.begin(time);
this.physicsManager.update(time, delta);
this.pool.update(time, delta);
this.updateList.update(time, delta);
2017-06-28 16:17:54 +00:00
this.time.update(time, delta);
2017-05-17 03:37:30 +00:00
this.tweens.update(time, delta);
this.cameras.update(time, delta);
this.inputManager.update(time, delta);
this.scene.update.call(this.scene, time, delta);
},
render: function (interpolation, renderer)
{
if (!this.settings.visible)
{
return;
}
this.depthSort();
this.cameras.render(renderer, this.displayList, interpolation);
},
// Force a sort of the display list on the next render
queueDepthSort: function ()
{
this.sortChildrenFlag = true;
},
// Immediately sorts the display list if the flag is set
depthSort: function ()
{
if (this.sortChildrenFlag)
{
StableSort.inplace(this.displayList.list, this.sortZ);
this.sortChildrenFlag = false;
}
},
sortZ: function (childA, childB)
{
return childA._depth - childB._depth;
},
// A paused Scene still renders, it just doesn't run ANY of its update handlers or systems
pause: function ()
{
// Was paused by the GlobalSceneManager
this.settings.active = false;
if (this.scene.pause)
2017-06-30 03:06:53 +00:00
{
this.scene.pause.call(this.scene);
2017-06-30 03:06:53 +00:00
}
},
resume: function ()
{
// Was resumed by the GlobalSceneManager
this.settings.active = true;
if (this.scene.resume)
2017-06-30 03:06:53 +00:00
{
this.scene.resume.call(this.scene);
2017-06-30 03:06:53 +00:00
}
},
sleep: function ()
{
// Was sent to sleep by the GlobalSceneManager
this.settings.active = false;
this.settings.visible = false;
if (this.scene.sleep)
2017-06-30 03:06:53 +00:00
{
this.scene.sleep.call(this.scene);
2017-06-30 03:06:53 +00:00
}
},
wake: function ()
{
// Was woken up by the GlobalSceneManager
this.settings.active = true;
this.settings.visible = true;
if (this.scene.wake)
2017-06-30 03:06:53 +00:00
{
this.scene.wake.call(this.scene);
2017-06-30 03:06:53 +00:00
}
},
start: function (data)
{
// Was started by the GlobalSceneManager
2017-06-30 03:06:53 +00:00
this.settings.data = data;
this.settings.active = true;
this.settings.visible = true;
},
shutdown: function ()
{
// Was stopped by the GlobalSceneManager
this.settings.active = false;
2017-06-30 03:06:53 +00:00
this.settings.visible = false;
this.pool.shutdown();
this.displayList.shutdown();
this.updateList.shutdown();
this.time.shutdown();
this.tweens.shutdown();
if (this.scene.shutdown)
2017-06-30 03:06:53 +00:00
{
this.scene.shutdown.call(this.scene);
2017-06-30 03:06:53 +00:00
}
},
// Game level nuke
destroy: function ()
{
// TODO
this.add.destroy();
this.pool.destroy();
this.time.destroy();
this.tweens.destroy();
// etc
if (this.scene.destroy)
2017-06-30 03:06:53 +00:00
{
this.scene.destroy.call(this.scene);
2017-06-30 03:06:53 +00:00
}
2017-02-08 00:08:09 +00:00
}
});
module.exports = Systems;