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}
|
|
|
|
*/
|
|
|
|
|
2018-01-16 19:49:13 +00:00
|
|
|
var Class = require('../utils/Class');
|
2017-07-04 15:44:16 +00:00
|
|
|
|
|
|
|
var UpdateList = new Class({
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
2018-01-20 16:21:12 +00:00
|
|
|
function UpdateList ()
|
2017-07-04 15:44:16 +00:00
|
|
|
{
|
2017-07-07 17:14:27 +00:00
|
|
|
this._list = [];
|
2017-07-04 15:44:16 +00:00
|
|
|
this._pendingInsertion = [];
|
|
|
|
this._pendingRemoval = [];
|
|
|
|
},
|
|
|
|
|
|
|
|
add: function (child)
|
|
|
|
{
|
2017-11-13 23:31:13 +00:00
|
|
|
// Is child already in this list?
|
|
|
|
|
|
|
|
if (this._list.indexOf(child) === -1 && this._pendingInsertion.indexOf(child) === -1)
|
|
|
|
{
|
|
|
|
this._pendingInsertion.push(child);
|
|
|
|
}
|
|
|
|
|
|
|
|
return child;
|
2017-07-04 15:44:16 +00:00
|
|
|
},
|
|
|
|
|
2018-01-16 02:08:22 +00:00
|
|
|
preUpdate: function (time, delta)
|
2017-07-04 15:44:16 +00:00
|
|
|
{
|
|
|
|
var toRemove = this._pendingRemoval.length;
|
|
|
|
var toInsert = this._pendingInsertion.length;
|
|
|
|
|
|
|
|
if (toRemove === 0 && toInsert === 0)
|
|
|
|
{
|
|
|
|
// Quick bail
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var i;
|
2017-07-04 22:43:13 +00:00
|
|
|
var gameObject;
|
2017-07-04 15:44:16 +00:00
|
|
|
|
2017-07-04 22:43:13 +00:00
|
|
|
// Delete old gameObjects
|
2017-07-04 15:44:16 +00:00
|
|
|
for (i = 0; i < toRemove; i++)
|
|
|
|
{
|
2017-07-04 22:43:13 +00:00
|
|
|
gameObject = this._pendingRemoval[i];
|
2017-07-04 15:44:16 +00:00
|
|
|
|
2017-07-07 17:14:27 +00:00
|
|
|
var index = this._list.indexOf(gameObject);
|
2017-07-04 15:44:16 +00:00
|
|
|
|
|
|
|
if (index > -1)
|
|
|
|
{
|
2017-07-07 17:14:27 +00:00
|
|
|
this._list.splice(index, 1);
|
2017-07-04 15:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pool them?
|
2017-07-04 22:43:13 +00:00
|
|
|
// gameObject.destroy();
|
2017-07-04 15:44:16 +00:00
|
|
|
}
|
|
|
|
|
2017-07-04 22:43:13 +00:00
|
|
|
// Move pending to active
|
2017-07-07 17:14:27 +00:00
|
|
|
this._list = this._list.concat(this._pendingInsertion.splice(0));
|
2017-07-04 15:44:16 +00:00
|
|
|
|
|
|
|
// Clear the lists
|
|
|
|
this._pendingRemoval.length = 0;
|
|
|
|
this._pendingInsertion.length = 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
update: function (time, delta)
|
|
|
|
{
|
2017-07-07 17:14:27 +00:00
|
|
|
for (var i = 0; i < this._list.length; i++)
|
2017-07-04 15:44:16 +00:00
|
|
|
{
|
2017-07-07 17:14:27 +00:00
|
|
|
var gameObject = this._list[i];
|
2017-07-04 15:44:16 +00:00
|
|
|
|
2017-07-07 17:14:27 +00:00
|
|
|
if (gameObject.active)
|
|
|
|
{
|
|
|
|
gameObject.preUpdate.call(gameObject, time, delta);
|
|
|
|
}
|
2017-07-04 15:44:16 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-08-07 16:14:13 +00:00
|
|
|
remove: function (child)
|
2017-07-04 15:44:16 +00:00
|
|
|
{
|
2017-08-07 16:14:13 +00:00
|
|
|
var index = this._list.indexOf(child);
|
2017-07-04 15:44:16 +00:00
|
|
|
|
2017-08-07 16:14:13 +00:00
|
|
|
if (index !== -1)
|
2017-07-04 15:44:16 +00:00
|
|
|
{
|
2017-08-07 16:14:13 +00:00
|
|
|
this._list.splice(index, 1);
|
2017-07-04 15:44:16 +00:00
|
|
|
}
|
2017-08-07 16:14:13 +00:00
|
|
|
|
|
|
|
return child;
|
|
|
|
},
|
2017-07-04 15:44:16 +00:00
|
|
|
|
2017-08-07 16:14:13 +00:00
|
|
|
removeAll: function ()
|
|
|
|
{
|
|
|
|
var i = this._list.length;
|
2017-07-04 15:44:16 +00:00
|
|
|
|
2017-08-07 16:14:13 +00:00
|
|
|
while (i--)
|
2017-07-04 15:44:16 +00:00
|
|
|
{
|
2017-08-07 16:14:13 +00:00
|
|
|
this.remove(this._list[i]);
|
2017-07-04 15:44:16 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 16:14:13 +00:00
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
|
|
|
shutdown: function ()
|
|
|
|
{
|
|
|
|
this.removeAll();
|
|
|
|
|
2017-07-07 17:14:27 +00:00
|
|
|
this._list.length = 0;
|
2017-07-04 15:44:16 +00:00
|
|
|
this._pendingRemoval.length = 0;
|
|
|
|
this._pendingInsertion.length = 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.shutdown();
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = UpdateList;
|