phaser/v3/src/plugins/StateManager.js

200 lines
4.2 KiB
JavaScript
Raw Normal View History

var Class = require('../utils/Class');
// A proxy class to the Global State Manager
var StateManager = new Class({
initialize:
function StateManager (state, game)
{
// The State that owns this plugin
this.state = state;
this.settings = state.sys.settings;
this.key = state.sys.settings.key;
// GlobalStateManager
this.manager = game.state;
// Private
this._queue = [];
},
update: function ()
{
var len = this._queue.length;
if (len === 0)
{
return;
}
var manager = this.manager;
// Process the queue
for (var i = 0; i < len; i++)
{
var action = this._queue[i];
switch (action.type)
{
case 'start':
manager.stop(this.key);
manager.start(action.key, action.data);
break;
case 'launch':
manager.start(action.key, action.data);
break;
case 'pause':
manager.pause(action.key);
break;
case 'resume':
manager.resume(action.key);
break;
case 'stop':
manager.stop(action.key);
break;
case 'swap':
manager.swap(this.key, action.key);
break;
case 'sleep':
manager.sleep(action.key);
break;
case 'wake':
manager.wake(action.key);
break;
}
}
this._queue.length = 0;
},
// Shutdown this State and run the given one
2017-02-17 02:07:56 +00:00
start: function (key, data)
{
if (key === undefined) { key = this.key; }
this._queue.push({ type: 'start', key: key, data: data });
return this;
},
// Launch the given State and run it in parallel with this one
launch: function (key, data)
{
if (key === undefined) { key = this.key; }
this._queue.push({ type: 'launch', key: key, data: data });
return this;
},
// Pause the State - this stops the update step from happening but it still renders
pause: function (key)
{
if (key === undefined) { key = this.key; }
this._queue.push({ type: 'pause', key: key });
return this;
},
// Resume the State - starts the update loop again
resume: function (key)
{
if (key === undefined) { key = this.key; }
this._queue.push({ type: 'resume', key: key });
return this;
},
// Makes the State sleep (no update, no render) but doesn't shutdown
sleep: function (key)
{
this._queue.push({ type: 'sleep', key: key });
return this;
},
// Makes the State wake-up (starts update and render)
wake: function (key)
{
this._queue.push({ type: 'wake', key: key });
return this;
},
// Makes this State sleep then starts the State given
swap: function (key)
{
this._queue.push({ type: 'swap', key: key });
return this;
},
// Shutdown the State, clearing display list, timers, etc
stop: function (key)
{
if (key === undefined) { key = this.key; }
this._queue.push({ type: 'stop', key: key });
return this;
},
setVisible: function (value)
{
this.settings.visible = value;
return this;
},
moveUp: function ()
{
this._queue.push({ type: 'moveUp' });
},
moveDown: function ()
{
this._queue.push({ type: 'moveDown' });
},
bringToTop: function ()
{
this._queue.push({ type: 'bringToTop' });
},
sendToBack: function ()
{
this._queue.push({ type: 'sendToBack' });
},
2017-07-05 02:47:32 +00:00
get: function (key)
{
return this.manager.getState(key);
},
transitionTo: function (key, duration)
{
},
isActive: function (key)
{
if (key === undefined) { key = this.key; }
return this.manager.isActive(key);
}
});
module.exports = StateManager;