phaser/src/structs/ProcessQueue.js

195 lines
3.8 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
var Class = require('../utils/Class');
2018-02-09 04:35:23 +00:00
/**
* @classdesc
* [description]
*
2018-03-23 15:54:12 +00:00
* @generic T
*
2018-02-09 04:35:23 +00:00
* @class ProcessQueue
* @memberOf Phaser.Structs
* @constructor
* @since 3.0.0
*/
var ProcessQueue = new Class({
initialize:
function ProcessQueue ()
{
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @name Phaser.Structs.ProcessQueue#_pending
2018-03-23 15:54:12 +00:00
* @type {Array.<*>}
2018-02-09 04:35:23 +00:00
* @private
* @default []
* @since 3.0.0
*/
this._pending = [];
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @name Phaser.Structs.ProcessQueue#_active
2018-03-23 15:54:12 +00:00
* @type {Array.<*>}
2018-02-09 04:35:23 +00:00
* @private
* @default []
* @since 3.0.0
*/
this._active = [];
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @name Phaser.Structs.ProcessQueue#_destroy
2018-03-23 15:54:12 +00:00
* @type {Array.<*>}
2018-02-09 04:35:23 +00:00
* @private
* @default []
* @since 3.0.0
*/
this._destroy = [];
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @name Phaser.Structs.ProcessQueue#_toProcess
* @type {integer}
* @private
* @default 0
* @since 3.0.0
*/
this._toProcess = 0;
},
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @method Phaser.Structs.ProcessQueue#add
* @since 3.0.0
*
2018-03-20 16:15:49 +00:00
* @param {*} item - [description]
2018-02-09 04:35:23 +00:00
*
* @return {Phaser.Structs.ProcessQueue} This Process Queue object.
*/
add: function (item)
{
this._pending.push(item);
this._toProcess++;
return this;
},
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @method Phaser.Structs.ProcessQueue#remove
* @since 3.0.0
*
2018-03-20 16:15:49 +00:00
* @param {*} item - [description]
2018-02-09 04:35:23 +00:00
*
* @return {Phaser.Structs.ProcessQueue} This Process Queue object.
*/
remove: function (item)
{
this._destroy.push(item);
this._toProcess++;
return this;
},
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @method Phaser.Structs.ProcessQueue#update
* @since 3.0.0
*
2018-03-23 15:54:12 +00:00
* @return {Array.<*>} [description]
2018-02-09 04:35:23 +00:00
*/
update: function ()
{
if (this._toProcess === 0)
{
// Quick bail
return this._active;
}
var list = this._destroy;
var active = this._active;
var i;
var item;
// Clear the 'destroy' list
for (i = 0; i < list.length; i++)
{
item = list[i];
// Remove from the 'active' array
var idx = active.indexOf(item);
if (idx !== -1)
{
active.splice(idx, 1);
}
}
list.length = 0;
// Process the pending addition list
// This stops callbacks and out of sync events from populating the active array mid-way during an update
list = this._pending;
for (i = 0; i < list.length; i++)
{
item = list[i];
this._active.push(item);
}
list.length = 0;
this._toProcess = 0;
// The owner of this queue can now safely do whatever it needs to with the active list
return this._active;
},
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @method Phaser.Structs.ProcessQueue#getActive
* @since 3.0.0
*
2018-03-23 15:54:12 +00:00
* @return {Array.<*>} [description]
2018-02-09 04:35:23 +00:00
*/
getActive: function ()
{
return this._active;
},
2018-02-09 04:35:23 +00:00
/**
* [description]
*
* @method Phaser.Structs.ProcessQueue#destroy
* @since 3.0.0
*/
destroy: function ()
{
this._pending = [];
this._active = [];
this._destroy = [];
}
});
module.exports = ProcessQueue;