/** * @class Speed-based scheduler */ ROT.Scheduler = function() { this._items = []; } /** * @param {object} item anything with "getSpeed" method */ ROT.Scheduler.prototype.add = function(item) { var o = { item: item, bucket: 1/item.getSpeed() } this._items.push(o); return this; } /** * Clear all actors */ ROT.Scheduler.prototype.clear = function() { this._items = []; return this; } /** * Remove a previously added item * @param {object} item anything with "getSpeed" method */ ROT.Scheduler.prototype.remove = function(item) { var it = null; for (var i=0;i minItem.item.getSpeed()) { minItem = item; } } if (minBucket) { /* non-zero value; subtract from all buckets */ for (var i=0;i