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}
|
|
|
|
*/
|
|
|
|
|
2017-06-28 21:19:41 +00:00
|
|
|
var Class = require('../utils/Class');
|
2018-02-12 23:03:48 +00:00
|
|
|
var PluginManager = require('../boot/PluginManager');
|
2017-06-28 16:17:54 +00:00
|
|
|
var TimerEvent = require('./TimerEvent');
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
2018-02-07 15:27:21 +00:00
|
|
|
* @classdesc
|
2018-02-06 01:22:22 +00:00
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @class Clock
|
|
|
|
* @memberOf Phaser.Time
|
|
|
|
* @constructor
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {Phaser.Scene} scene - [description]
|
|
|
|
*/
|
2017-06-28 21:19:41 +00:00
|
|
|
var Clock = new Class({
|
|
|
|
|
|
|
|
initialize:
|
|
|
|
|
2017-07-14 13:30:20 +00:00
|
|
|
function Clock (scene)
|
2017-06-28 21:19:41 +00:00
|
|
|
{
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Time.Clock#scene
|
|
|
|
* @type {Phaser.Scene}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-07-14 13:30:20 +00:00
|
|
|
this.scene = scene;
|
2017-06-28 21:19:41 +00:00
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Time.Clock#systems
|
|
|
|
* @type {Phaser.Scenes.Systems}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2018-01-16 02:08:22 +00:00
|
|
|
this.systems = scene.sys;
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Time.Clock#now
|
|
|
|
* @type {number}
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-28 21:19:41 +00:00
|
|
|
this.now = Date.now();
|
|
|
|
|
2017-06-29 13:05:27 +00:00
|
|
|
// Scale the delta time coming into the Clock by this factor
|
|
|
|
// which then influences anything using this Clock for calculations, like TimerEvents
|
2018-02-06 01:22:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Time.Clock#timeScale
|
|
|
|
* @type {float}
|
|
|
|
* @default 1
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-29 13:05:27 +00:00
|
|
|
this.timeScale = 1;
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Time.Clock#paused
|
|
|
|
* @type {boolean}
|
|
|
|
* @default false
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-28 21:19:41 +00:00
|
|
|
this.paused = false;
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Time.Clock#_active
|
|
|
|
* @type {Phaser.Time.TimerEvent[]}
|
|
|
|
* @private
|
|
|
|
* @default []
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-28 21:19:41 +00:00
|
|
|
this._active = [];
|
2018-02-06 01:22:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Time.Clock#_pendingInsertion
|
|
|
|
* @type {Phaser.Time.TimerEvent[]}
|
|
|
|
* @private
|
|
|
|
* @default []
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-28 21:19:41 +00:00
|
|
|
this._pendingInsertion = [];
|
2018-02-06 01:22:22 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @name Phaser.Time.Clock#_pendingRemoval
|
|
|
|
* @type {Phaser.Time.TimerEvent[]}
|
|
|
|
* @private
|
|
|
|
* @default []
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-28 21:19:41 +00:00
|
|
|
this._pendingRemoval = [];
|
2018-04-13 16:12:17 +00:00
|
|
|
|
|
|
|
scene.sys.events.on('start', this.start, this);
|
2017-06-28 21:19:41 +00:00
|
|
|
},
|
2017-06-28 16:17:54 +00:00
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
2018-04-13 16:12:17 +00:00
|
|
|
* This method is called automatically by the Scene when it is starting up.
|
|
|
|
* It is responsible for creating local systems, properties and listening for Scene events.
|
|
|
|
* Do not invoke it directly.
|
2018-02-06 01:22:22 +00:00
|
|
|
*
|
2018-04-13 16:12:17 +00:00
|
|
|
* @method Phaser.Time.Clock#start
|
|
|
|
* @private
|
2018-04-15 11:44:47 +00:00
|
|
|
* @since 3.5.0
|
2018-02-06 01:22:22 +00:00
|
|
|
*/
|
2018-04-13 16:12:17 +00:00
|
|
|
start: function ()
|
2018-01-16 02:08:22 +00:00
|
|
|
{
|
2018-01-18 14:00:31 +00:00
|
|
|
var eventEmitter = this.systems.events;
|
|
|
|
|
|
|
|
eventEmitter.on('preupdate', this.preUpdate, this);
|
|
|
|
eventEmitter.on('update', this.update, this);
|
2018-04-13 16:12:17 +00:00
|
|
|
eventEmitter.once('shutdown', this.shutdown, this);
|
|
|
|
eventEmitter.once('destroy', this.destroy, this);
|
2018-01-16 02:08:22 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Time.Clock#addEvent
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2018-03-21 14:02:10 +00:00
|
|
|
* @param {TimerEventConfig} config - [description]
|
2018-02-06 01:22:22 +00:00
|
|
|
*
|
|
|
|
* @return {Phaser.Time.TimerEvent} [description]
|
|
|
|
*/
|
2017-06-28 16:17:54 +00:00
|
|
|
addEvent: function (config)
|
|
|
|
{
|
|
|
|
var event = new TimerEvent(config);
|
|
|
|
|
|
|
|
this._pendingInsertion.push(event);
|
|
|
|
|
|
|
|
return event;
|
|
|
|
},
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Time.Clock#delayedCall
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} delay - [description]
|
|
|
|
* @param {function} callback - [description]
|
2018-03-22 12:51:30 +00:00
|
|
|
* @param {Array.<*>} args - [description]
|
2018-03-21 14:02:10 +00:00
|
|
|
* @param {*} callbackScope - [description]
|
2018-02-06 01:22:22 +00:00
|
|
|
*
|
2018-03-19 01:03:17 +00:00
|
|
|
* @return {Phaser.Time.TimerEvent} [description]
|
2018-02-06 01:22:22 +00:00
|
|
|
*/
|
2017-06-28 16:17:54 +00:00
|
|
|
delayedCall: function (delay, callback, args, callbackScope)
|
|
|
|
{
|
|
|
|
return this.addEvent({ delay: delay, callback: callback, args: args, callbackScope: callbackScope });
|
|
|
|
},
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Time.Clock#clearPendingEvents
|
|
|
|
* @since 3.0.0
|
2018-03-19 01:03:17 +00:00
|
|
|
*
|
2018-02-06 01:22:22 +00:00
|
|
|
* @return {Phaser.Time.Clock} [description]
|
|
|
|
*/
|
2017-06-28 21:19:41 +00:00
|
|
|
clearPendingEvents: function ()
|
|
|
|
{
|
|
|
|
this._pendingInsertion = [];
|
2018-02-06 01:22:22 +00:00
|
|
|
|
|
|
|
return this;
|
2017-06-28 21:19:41 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Time.Clock#removeAllEvents
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @return {Phaser.Time.Clock} [description]
|
|
|
|
*/
|
2017-06-28 21:19:41 +00:00
|
|
|
removeAllEvents: function ()
|
2017-06-28 16:17:54 +00:00
|
|
|
{
|
2017-06-28 21:19:41 +00:00
|
|
|
this._pendingRemoval = this._pendingRemoval.concat(this._active);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Time.Clock#preUpdate
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} time - [description]
|
|
|
|
* @param {number} delta - [description]
|
|
|
|
*/
|
2018-02-16 18:44:07 +00:00
|
|
|
preUpdate: function ()
|
2017-06-28 21:19:41 +00:00
|
|
|
{
|
|
|
|
var toRemove = this._pendingRemoval.length;
|
|
|
|
var toInsert = this._pendingInsertion.length;
|
|
|
|
|
|
|
|
if (toRemove === 0 && toInsert === 0)
|
|
|
|
{
|
|
|
|
// Quick bail
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var i;
|
2017-06-29 13:05:27 +00:00
|
|
|
var event;
|
2017-06-28 21:19:41 +00:00
|
|
|
|
2017-06-28 16:17:54 +00:00
|
|
|
// Delete old events
|
2017-06-28 21:19:41 +00:00
|
|
|
for (i = 0; i < toRemove; i++)
|
2017-06-28 16:17:54 +00:00
|
|
|
{
|
2017-06-29 13:05:27 +00:00
|
|
|
event = this._pendingRemoval[i];
|
2017-06-28 16:39:40 +00:00
|
|
|
|
|
|
|
var index = this._active.indexOf(event);
|
2017-06-28 16:17:54 +00:00
|
|
|
|
|
|
|
if (index > -1)
|
|
|
|
{
|
|
|
|
this._active.splice(index, 1);
|
|
|
|
}
|
2017-06-28 16:39:40 +00:00
|
|
|
|
|
|
|
// Pool them?
|
|
|
|
event.destroy();
|
2017-06-28 16:17:54 +00:00
|
|
|
}
|
|
|
|
|
2017-06-28 21:19:41 +00:00
|
|
|
for (i = 0; i < toInsert; i++)
|
|
|
|
{
|
2017-06-29 13:05:27 +00:00
|
|
|
event = this._pendingInsertion[i];
|
2017-06-28 21:19:41 +00:00
|
|
|
|
|
|
|
this._active.push(event);
|
|
|
|
}
|
|
|
|
|
2017-06-28 16:17:54 +00:00
|
|
|
// Clear the lists
|
|
|
|
this._pendingRemoval.length = 0;
|
|
|
|
this._pendingInsertion.length = 0;
|
|
|
|
},
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @method Phaser.Time.Clock#update
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {number} time - [description]
|
|
|
|
* @param {number} delta - [description]
|
|
|
|
*/
|
2017-06-28 16:17:54 +00:00
|
|
|
update: function (time, delta)
|
|
|
|
{
|
2017-06-28 21:19:41 +00:00
|
|
|
this.now = time;
|
2017-06-28 16:17:54 +00:00
|
|
|
|
2017-06-28 21:19:41 +00:00
|
|
|
if (this.paused)
|
2017-06-28 16:17:54 +00:00
|
|
|
{
|
2017-06-28 21:19:41 +00:00
|
|
|
return;
|
2017-06-28 16:17:54 +00:00
|
|
|
}
|
|
|
|
|
2018-01-23 13:37:25 +00:00
|
|
|
delta *= this.timeScale;
|
2017-06-29 13:05:27 +00:00
|
|
|
|
2017-06-28 16:17:54 +00:00
|
|
|
for (var i = 0; i < this._active.length; i++)
|
|
|
|
{
|
|
|
|
var event = this._active[i];
|
|
|
|
|
2017-06-28 16:39:40 +00:00
|
|
|
if (event.paused)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-06-28 21:19:41 +00:00
|
|
|
// Use delta time to increase elapsed.
|
|
|
|
// Avoids needing to adjust for pause / resume.
|
|
|
|
// Automatically smoothed by TimeStep class.
|
|
|
|
// In testing accurate to +- 1ms!
|
|
|
|
event.elapsed += delta * event.timeScale;
|
2017-06-28 16:17:54 +00:00
|
|
|
|
|
|
|
if (event.elapsed >= event.delay)
|
|
|
|
{
|
|
|
|
var remainder = event.elapsed - event.delay;
|
|
|
|
|
|
|
|
// Limit it, in case it's checked in the callback
|
|
|
|
event.elapsed = event.delay;
|
|
|
|
|
|
|
|
// Process the event
|
2017-06-28 21:19:41 +00:00
|
|
|
if (!event.hasDispatched && event.callback)
|
2017-06-28 16:39:40 +00:00
|
|
|
{
|
|
|
|
event.hasDispatched = true;
|
|
|
|
event.callback.apply(event.callbackScope, event.args);
|
|
|
|
}
|
2017-06-28 16:17:54 +00:00
|
|
|
|
2017-06-29 13:05:27 +00:00
|
|
|
if (event.repeatCount > 0)
|
2017-06-28 16:17:54 +00:00
|
|
|
{
|
|
|
|
event.repeatCount--;
|
|
|
|
|
|
|
|
event.elapsed = remainder;
|
2017-06-28 16:39:40 +00:00
|
|
|
event.hasDispatched = false;
|
2017-06-28 16:17:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this._pendingRemoval.push(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-28 21:19:41 +00:00
|
|
|
},
|
2017-06-28 16:17:54 +00:00
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
2018-04-13 16:12:17 +00:00
|
|
|
* The Scene that owns this plugin is shutting down.
|
|
|
|
* We need to kill and reset all internal properties as well as stop listening to Scene events.
|
2018-02-06 01:22:22 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Time.Clock#shutdown
|
2018-04-13 16:12:17 +00:00
|
|
|
* @private
|
2018-02-06 01:22:22 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-30 02:31:31 +00:00
|
|
|
shutdown: function ()
|
2017-06-28 21:19:41 +00:00
|
|
|
{
|
2017-06-30 02:31:31 +00:00
|
|
|
var i;
|
|
|
|
|
|
|
|
for (i = 0; i < this._pendingInsertion.length; i++)
|
|
|
|
{
|
|
|
|
this._pendingInsertion[i].destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < this._active.length; i++)
|
2017-06-28 21:19:41 +00:00
|
|
|
{
|
|
|
|
this._active[i].destroy();
|
|
|
|
}
|
|
|
|
|
2017-06-30 02:31:31 +00:00
|
|
|
for (i = 0; i < this._pendingRemoval.length; i++)
|
|
|
|
{
|
|
|
|
this._pendingRemoval[i].destroy();
|
|
|
|
}
|
|
|
|
|
2017-06-28 21:19:41 +00:00
|
|
|
this._active.length = 0;
|
|
|
|
this._pendingRemoval.length = 0;
|
|
|
|
this._pendingInsertion.length = 0;
|
2018-04-13 16:12:17 +00:00
|
|
|
|
|
|
|
var eventEmitter = this.systems.events;
|
|
|
|
|
|
|
|
eventEmitter.off('preupdate', this.preUpdate, this);
|
|
|
|
eventEmitter.off('update', this.update, this);
|
|
|
|
eventEmitter.off('shutdown', this.shutdown, this);
|
2017-06-30 02:31:31 +00:00
|
|
|
},
|
|
|
|
|
2018-02-06 01:22:22 +00:00
|
|
|
/**
|
2018-04-13 16:12:17 +00:00
|
|
|
* The Scene that owns this plugin is being destroyed.
|
|
|
|
* We need to shutdown and then kill off all external references.
|
2018-02-06 01:22:22 +00:00
|
|
|
*
|
|
|
|
* @method Phaser.Time.Clock#destroy
|
2018-04-13 16:12:17 +00:00
|
|
|
* @private
|
2018-02-06 01:22:22 +00:00
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
2017-06-30 02:31:31 +00:00
|
|
|
destroy: function ()
|
|
|
|
{
|
|
|
|
this.shutdown();
|
|
|
|
|
2018-04-13 16:12:17 +00:00
|
|
|
this.scene.sys.events.off('start', this.start, this);
|
|
|
|
|
|
|
|
this.scene = null;
|
|
|
|
this.systems = null;
|
2017-06-28 21:19:41 +00:00
|
|
|
}
|
2017-06-28 16:17:54 +00:00
|
|
|
|
2017-06-28 21:19:41 +00:00
|
|
|
});
|
2017-06-28 16:17:54 +00:00
|
|
|
|
2018-01-18 05:18:09 +00:00
|
|
|
PluginManager.register('Clock', Clock, 'time');
|
2018-01-16 02:08:22 +00:00
|
|
|
|
2017-06-28 16:17:54 +00:00
|
|
|
module.exports = Clock;
|