2013-08-28 06:02:55 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2015-02-25 03:36:23 +00:00
|
|
|
* @copyright 2015 Photon Storm Ltd.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-09-16 18:44:04 +00:00
|
|
|
* This is the core internal game clock.
|
2014-11-26 23:16:01 +00:00
|
|
|
*
|
|
|
|
* It manages the elapsed time and calculation of elapsed values, used for game object motion and tweens,
|
2015-03-18 21:00:38 +00:00
|
|
|
* and also handles the standard Timer pool.
|
2014-11-26 23:16:01 +00:00
|
|
|
*
|
|
|
|
* To create a general timed event, use the master {@link Phaser.Timer} accessible through {@link Phaser.Time.events events}.
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
2013-10-01 12:54:29 +00:00
|
|
|
* @class Phaser.Time
|
2013-08-28 06:02:55 +00:00
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game A reference to the currently running game.
|
|
|
|
*/
|
|
|
|
Phaser.Time = function (game) {
|
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - Local reference to game.
|
2014-11-25 08:15:09 +00:00
|
|
|
* @protected
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.game = game;
|
2013-09-12 14:39:52 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
2014-11-25 08:15:09 +00:00
|
|
|
* The `Date.now()` value when the time was last updated.
|
|
|
|
* @property {integer} time
|
2014-01-20 20:14:34 +00:00
|
|
|
* @protected
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.time = 0;
|
2014-01-08 11:21:30 +00:00
|
|
|
|
2014-10-13 15:18:42 +00:00
|
|
|
/**
|
2014-11-25 08:15:09 +00:00
|
|
|
* The `now` when the previous update occurred.
|
2014-11-25 09:46:30 +00:00
|
|
|
* @property {number} prevTime
|
2014-10-13 15:18:42 +00:00
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
this.prevTime = 0;
|
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
2014-11-25 08:15:09 +00:00
|
|
|
* An increasing value representing cumulative milliseconds since an undisclosed epoch.
|
|
|
|
*
|
2014-11-26 23:16:01 +00:00
|
|
|
* While this value is in milliseconds and can be used to compute time deltas,
|
2015-03-18 21:00:38 +00:00
|
|
|
* it must must _not_ be used with `Date.now()` as it may not use the same epoch / starting reference.
|
2014-11-25 09:46:30 +00:00
|
|
|
*
|
2014-11-25 08:15:09 +00:00
|
|
|
* The source may either be from a high-res source (eg. if RAF is available) or the standard Date.now;
|
|
|
|
* the value can only be relied upon within a particular game instance.
|
2014-11-25 09:46:30 +00:00
|
|
|
*
|
|
|
|
* @property {number} now
|
2014-01-20 20:14:34 +00:00
|
|
|
* @protected
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.now = 0;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2014-01-08 11:21:30 +00:00
|
|
|
/**
|
2014-11-25 08:15:09 +00:00
|
|
|
* Elapsed time since the last time update, in milliseconds, based on `now`.
|
|
|
|
*
|
2014-11-25 09:46:30 +00:00
|
|
|
* This value _may_ include time that the game is paused/inactive.
|
|
|
|
*
|
2014-11-25 08:15:09 +00:00
|
|
|
* _Note:_ This is updated only once per game loop - even if multiple logic update steps are done.
|
|
|
|
* Use {@link Phaser.Timer#physicsTime physicsTime} as a basis of game/logic calculations instead.
|
|
|
|
*
|
2014-11-25 09:46:30 +00:00
|
|
|
* @property {number} elapsed
|
2014-11-17 21:09:49 +00:00
|
|
|
* @see Phaser.Time.time
|
2014-01-20 20:14:34 +00:00
|
|
|
* @protected
|
2014-01-08 11:21:30 +00:00
|
|
|
*/
|
2014-01-09 00:59:37 +00:00
|
|
|
this.elapsed = 0;
|
2014-01-08 01:53:28 +00:00
|
|
|
|
2014-11-24 12:52:52 +00:00
|
|
|
/**
|
2014-11-25 08:15:09 +00:00
|
|
|
* The time in ms since the last time update, in milliseconds, based on `time`.
|
|
|
|
*
|
2014-11-25 09:46:30 +00:00
|
|
|
* This value is corrected for game pauses and will be "about zero" after a game is resumed.
|
|
|
|
*
|
2014-11-25 08:15:09 +00:00
|
|
|
* _Note:_ This is updated once per game loop - even if multiple logic update steps are done.
|
|
|
|
* Use {@link Phaser.Timer#physicsTime physicsTime} as a basis of game/logic calculations instead.
|
|
|
|
*
|
2015-03-18 21:00:38 +00:00
|
|
|
* @property {integer} elapsedMS
|
2014-11-24 12:52:52 +00:00
|
|
|
* @protected
|
|
|
|
*/
|
|
|
|
this.elapsedMS = 0;
|
|
|
|
|
2014-01-20 20:14:34 +00:00
|
|
|
/**
|
2014-11-25 09:46:30 +00:00
|
|
|
* The physics update delta, in fractional seconds.
|
2015-03-18 21:00:38 +00:00
|
|
|
*
|
2014-11-25 09:46:30 +00:00
|
|
|
* This should be used as an applicable multiplier by all logic update steps (eg. `preUpdate/postUpdate/update`)
|
2014-11-26 23:16:01 +00:00
|
|
|
* to ensure consistent game timing. Game/logic timing can drift from real-world time if the system
|
|
|
|
* is unable to consistently maintain the desired FPS.
|
2014-11-25 09:46:30 +00:00
|
|
|
*
|
2014-11-26 23:16:01 +00:00
|
|
|
* With fixed-step updates this is normally equivalent to `1.0 / desiredFps`.
|
2014-11-25 09:46:30 +00:00
|
|
|
*
|
|
|
|
* @property {number} physicsElapsed
|
2014-01-20 20:14:34 +00:00
|
|
|
*/
|
2014-11-25 09:46:30 +00:00
|
|
|
this.physicsElapsed = 0;
|
2014-01-20 20:14:34 +00:00
|
|
|
|
2014-11-26 13:13:25 +00:00
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* The physics update delta, in milliseconds - equivalent to `physicsElapsed * 1000`.
|
2014-11-26 13:13:25 +00:00
|
|
|
*
|
|
|
|
* @property {number} physicsElapsedMS
|
|
|
|
*/
|
|
|
|
this.physicsElapsedMS = 0;
|
|
|
|
|
2014-10-31 03:59:55 +00:00
|
|
|
/**
|
2014-11-25 08:15:09 +00:00
|
|
|
* The desired frame rate of the game.
|
|
|
|
*
|
|
|
|
* This is used is used to calculate the physic/logic multiplier and how to apply catch-up logic updates.
|
2014-11-25 09:46:30 +00:00
|
|
|
*
|
2014-11-25 08:15:09 +00:00
|
|
|
* @property {number} desiredFps
|
2014-11-17 21:09:49 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2014-10-31 03:59:55 +00:00
|
|
|
this.desiredFps = 60;
|
|
|
|
|
2014-11-03 03:25:43 +00:00
|
|
|
/**
|
2014-11-25 08:15:09 +00:00
|
|
|
* The suggested frame rate for your game, based on an averaged real frame rate.
|
2015-07-21 20:41:26 +00:00
|
|
|
* This value is only populated if `Time.advancedTiming` is enabled.
|
2014-11-25 08:15:09 +00:00
|
|
|
*
|
|
|
|
* _Note:_ This is not available until after a few frames have passed; use it after a few seconds (eg. after the menus)
|
2014-11-25 09:46:30 +00:00
|
|
|
*
|
2014-11-25 08:15:09 +00:00
|
|
|
* @property {number} suggestedFps
|
2014-11-17 21:09:49 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2014-11-03 03:25:43 +00:00
|
|
|
this.suggestedFps = null;
|
|
|
|
|
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* Scaling factor to make the game move smoothly in slow motion
|
|
|
|
* - 1.0 = normal speed
|
|
|
|
* - 2.0 = half speed
|
|
|
|
* @property {number} slowMotion
|
2014-11-17 21:09:49 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2014-11-02 23:02:43 +00:00
|
|
|
this.slowMotion = 1.0;
|
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
2015-07-21 20:41:26 +00:00
|
|
|
* If true then advanced profiling, including the fps rate, fps min/max, suggestedFps and msMin/msMax are updated.
|
2014-11-26 23:16:01 +00:00
|
|
|
* @property {boolean} advancedTiming
|
2014-02-25 03:50:52 +00:00
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.advancedTiming = false;
|
|
|
|
|
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* Advanced timing result: The number of render frames record in the last second.
|
|
|
|
*
|
|
|
|
* Only calculated if {@link Phaser.Time#advancedTiming advancedTiming} is enabled.
|
|
|
|
* @property {integer} frames
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
this.frames = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Advanced timing result: Frames per second.
|
|
|
|
*
|
|
|
|
* Only calculated if {@link Phaser.Time#advancedTiming advancedTiming} is enabled.
|
|
|
|
* @property {number} fps
|
|
|
|
* @readonly
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.fps = 0;
|
2014-01-08 11:21:30 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* Advanced timing result: The lowest rate the fps has dropped to.
|
|
|
|
*
|
|
|
|
* Only calculated if {@link Phaser.Time#advancedTiming advancedTiming} is enabled.
|
|
|
|
* This value can be manually reset.
|
|
|
|
* @property {number} fpsMin
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.fpsMin = 1000;
|
2014-01-08 11:21:30 +00:00
|
|
|
|
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* Advanced timing result: The highest rate the fps has reached (usually no higher than 60fps).
|
|
|
|
*
|
|
|
|
* Only calculated if {@link Phaser.Time#advancedTiming advancedTiming} is enabled.
|
|
|
|
* This value can be manually reset.
|
|
|
|
* @property {number} fpsMax
|
2014-01-08 11:21:30 +00:00
|
|
|
*/
|
2014-01-09 00:59:37 +00:00
|
|
|
this.fpsMax = 0;
|
2014-01-08 11:21:30 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* Advanced timing result: The minimum amount of time the game has taken between consecutive frames.
|
|
|
|
*
|
|
|
|
* Only calculated if {@link Phaser.Time#advancedTiming advancedTiming} is enabled.
|
|
|
|
* This value can be manually reset.
|
|
|
|
* @property {number} msMin
|
2014-01-09 00:59:37 +00:00
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this.msMin = 1000;
|
2014-01-08 11:21:30 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* Advanced timing result: The maximum amount of time the game has taken between consecutive frames.
|
|
|
|
*
|
|
|
|
* Only calculated if {@link Phaser.Time#advancedTiming advancedTiming} is enabled.
|
|
|
|
* This value can be manually reset.
|
|
|
|
* @property {number} msMax
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.msMax = 0;
|
2014-01-08 11:21:30 +00:00
|
|
|
|
2014-11-25 09:46:30 +00:00
|
|
|
/**
|
2015-01-28 17:18:19 +00:00
|
|
|
* Records how long the game was last paused, in milliseconds.
|
2014-11-25 09:46:30 +00:00
|
|
|
* (This is not updated until the game is resumed.)
|
|
|
|
* @property {number} pauseDuration
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.pauseDuration = 0;
|
2014-01-08 11:21:30 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
|
|
|
* @property {number} timeToCall - The value that setTimeout needs to work out when to next update
|
2014-11-25 09:46:30 +00:00
|
|
|
* @protected
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.timeToCall = 0;
|
|
|
|
|
|
|
|
/**
|
2014-10-31 03:59:55 +00:00
|
|
|
* @property {number} timeExpected - The time when the next call is expected when using setTimer to control the update loop
|
2014-11-25 09:46:30 +00:00
|
|
|
* @protected
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
2014-10-31 03:59:55 +00:00
|
|
|
this.timeExpected = 0;
|
2014-01-09 00:59:37 +00:00
|
|
|
|
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* A {@link Phaser.Timer} object bound to the master clock (this Time object) which events can be added to.
|
|
|
|
* @property {Phaser.Timer} events
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
this.events = new Phaser.Timer(this.game, false);
|
|
|
|
|
2014-11-17 21:09:49 +00:00
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* @property {number} _frameCount - count the number of calls to time.update since the last suggestedFps was calculated
|
|
|
|
* @private
|
|
|
|
*/
|
2014-11-17 21:09:49 +00:00
|
|
|
this._frameCount = 0;
|
|
|
|
|
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* @property {number} _elapsedAcumulator - sum of the elapsed time since the last suggestedFps was calculated
|
|
|
|
* @private
|
|
|
|
*/
|
2014-11-17 21:09:49 +00:00
|
|
|
this._elapsedAccumulator = 0;
|
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
|
|
|
* @property {number} _started - The time at which the Game instance started.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._started = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _timeLastSecond - The time (in ms) that the last second counter ticked over.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._timeLastSecond = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _pauseStarted - The time the game started being paused.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._pauseStarted = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {boolean} _justResumed - Internal value used to recover from the game pause state.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._justResumed = false;
|
|
|
|
|
|
|
|
/**
|
2014-11-30 11:10:52 +00:00
|
|
|
* @property {Phaser.Timer[]} _timers - Internal store of Phaser.Timer objects.
|
2014-01-09 00:59:37 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._timers = [];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Time.prototype = {
|
2014-01-08 11:21:30 +00:00
|
|
|
|
|
|
|
/**
|
2014-02-26 19:51:28 +00:00
|
|
|
* Called automatically by Phaser.Game after boot. Should not be called directly.
|
|
|
|
*
|
2014-01-09 00:59:37 +00:00
|
|
|
* @method Phaser.Time#boot
|
2014-02-26 19:51:28 +00:00
|
|
|
* @protected
|
2014-01-08 11:21:30 +00:00
|
|
|
*/
|
2014-01-09 00:59:37 +00:00
|
|
|
boot: function () {
|
2014-01-08 11:21:30 +00:00
|
|
|
|
2014-02-27 22:35:06 +00:00
|
|
|
this._started = Date.now();
|
2014-11-24 12:52:52 +00:00
|
|
|
this.time = Date.now();
|
2014-01-09 00:59:37 +00:00
|
|
|
this.events.start();
|
2014-01-08 11:21:30 +00:00
|
|
|
|
|
|
|
},
|
2014-01-08 01:53:28 +00:00
|
|
|
|
2014-06-01 23:54:42 +00:00
|
|
|
/**
|
|
|
|
* Adds an existing Phaser.Timer object to the Timer pool.
|
|
|
|
*
|
|
|
|
* @method Phaser.Time#add
|
|
|
|
* @param {Phaser.Timer} timer - An existing Phaser.Timer object.
|
|
|
|
* @return {Phaser.Timer} The given Phaser.Timer object.
|
|
|
|
*/
|
|
|
|
add: function (timer) {
|
|
|
|
|
|
|
|
this._timers.push(timer);
|
|
|
|
|
|
|
|
return timer;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-01-04 02:53:32 +00:00
|
|
|
/**
|
2014-01-08 01:53:28 +00:00
|
|
|
* Creates a new stand-alone Phaser.Timer object.
|
2014-02-26 19:51:28 +00:00
|
|
|
*
|
2014-01-04 02:53:32 +00:00
|
|
|
* @method Phaser.Time#create
|
2014-01-09 00:59:37 +00:00
|
|
|
* @param {boolean} [autoDestroy=true] - A Timer that is set to automatically destroy itself will do so after all of its events have been dispatched (assuming no looping events).
|
|
|
|
* @return {Phaser.Timer} The Timer object that was created.
|
2014-01-04 02:53:32 +00:00
|
|
|
*/
|
2014-01-09 00:59:37 +00:00
|
|
|
create: function (autoDestroy) {
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2015-07-22 09:37:15 +00:00
|
|
|
if (autoDestroy === undefined) { autoDestroy = true; }
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
var timer = new Phaser.Timer(this.game, autoDestroy);
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
this._timers.push(timer);
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
return timer;
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
},
|
2014-01-04 02:53:32 +00:00
|
|
|
|
|
|
|
/**
|
2014-11-26 23:16:01 +00:00
|
|
|
* Remove all Timer objects, regardless of their state and clears all Timers from the {@link Phaser.Time#events events} timer.
|
2014-02-26 19:51:28 +00:00
|
|
|
*
|
2014-01-04 02:53:32 +00:00
|
|
|
* @method Phaser.Time#removeAll
|
|
|
|
*/
|
|
|
|
removeAll: function () {
|
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
for (var i = 0; i < this._timers.length; i++)
|
|
|
|
{
|
|
|
|
this._timers[i].destroy();
|
|
|
|
}
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
this._timers = [];
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2014-03-19 12:05:19 +00:00
|
|
|
this.events.removeAll();
|
|
|
|
|
2014-01-04 02:53:32 +00:00
|
|
|
},
|
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
/**
|
2014-02-26 19:51:28 +00:00
|
|
|
* Updates the game clock and if enabled the advanced timing data. This is called automatically by Phaser.Game.
|
|
|
|
*
|
2014-01-09 00:59:37 +00:00
|
|
|
* @method Phaser.Time#update
|
2014-02-26 19:51:28 +00:00
|
|
|
* @protected
|
2014-11-26 23:16:01 +00:00
|
|
|
* @param {number} time - The current relative timestamp; see {@link Phaser.Time#now now}.
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
update: function (time) {
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
if (this.game.raf._isSetTimeOut)
|
|
|
|
{
|
|
|
|
this.updateSetTimeout(time);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.updateRAF(time);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.advancedTiming)
|
|
|
|
{
|
|
|
|
this.updateAdvancedTiming();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Paused but still running?
|
|
|
|
if (!this.game.paused)
|
|
|
|
{
|
|
|
|
// Our internal Phaser.Timer
|
|
|
|
this.events.update(this.time);
|
|
|
|
|
|
|
|
if (this._timers.length)
|
|
|
|
{
|
|
|
|
this.updateTimers();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* setTimeOut specific time update handler.
|
|
|
|
* Called automatically by Time.update.
|
|
|
|
*
|
|
|
|
* @method Phaser.Time#updateSetTimeout
|
|
|
|
* @private
|
|
|
|
* @param {number} time - The current relative timestamp; see {@link Phaser.Time#now now}.
|
|
|
|
*/
|
|
|
|
updateSetTimeout: function (time) {
|
|
|
|
|
2014-11-24 12:52:52 +00:00
|
|
|
// Set to the old Date.now value
|
2014-11-25 08:15:09 +00:00
|
|
|
var previousDateNow = this.time;
|
2014-11-24 12:52:52 +00:00
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
// With SetTimeout the time value is always the same as Date.now, so no need to get it again
|
|
|
|
this.time = time;
|
2014-10-13 15:18:42 +00:00
|
|
|
|
2015-01-28 17:18:19 +00:00
|
|
|
// Adjust accordingly.
|
2014-11-25 08:15:09 +00:00
|
|
|
this.elapsedMS = this.time - previousDateNow;
|
2014-11-24 12:52:52 +00:00
|
|
|
|
2014-10-31 03:59:55 +00:00
|
|
|
// 'now' is currently still holding the time of the last call, move it into prevTime
|
|
|
|
this.prevTime = this.now;
|
2014-10-13 15:18:42 +00:00
|
|
|
|
2014-10-31 03:59:55 +00:00
|
|
|
// update 'now' to hold the current time
|
2014-01-09 00:59:37 +00:00
|
|
|
this.now = time;
|
2014-11-03 03:25:43 +00:00
|
|
|
|
2014-11-08 18:52:02 +00:00
|
|
|
// elapsed time between previous call and now
|
|
|
|
this.elapsed = this.now - this.prevTime;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2014-11-08 18:52:02 +00:00
|
|
|
// time to call this function again in ms in case we're using timers instead of RequestAnimationFrame to update the game
|
2014-11-09 09:42:28 +00:00
|
|
|
this.timeToCall = Math.floor(Math.max(0, (1000.0 / this.desiredFps) - (this.timeCallExpected - time)));
|
2014-04-24 10:49:12 +00:00
|
|
|
|
2014-11-08 18:52:02 +00:00
|
|
|
// time when the next call is expected if using timers
|
|
|
|
this.timeCallExpected = time + this.timeToCall;
|
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
// Set the physics elapsed time... this will always be 1 / this.desiredFps because we're using fixed time steps in game.update now
|
|
|
|
this.physicsElapsed = 1 / this.desiredFps;
|
2014-11-08 18:52:02 +00:00
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
this.physicsElapsedMS = this.physicsElapsed * 1000;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* raf specific time update handler.
|
|
|
|
* Called automatically by Time.update.
|
|
|
|
*
|
|
|
|
* @method Phaser.Time#updateRAF
|
|
|
|
* @private
|
|
|
|
* @param {number} time - The current relative timestamp; see {@link Phaser.Time#now now}.
|
|
|
|
*/
|
|
|
|
updateRAF: function (time) {
|
|
|
|
|
|
|
|
// Set to the old Date.now value
|
|
|
|
var previousDateNow = this.time;
|
|
|
|
|
|
|
|
// this.time always holds Date.now, this.now may hold the RAF high resolution time value if RAF is available (otherwise it also holds Date.now)
|
|
|
|
this.time = Date.now();
|
|
|
|
|
|
|
|
// Adjust accordingly.
|
|
|
|
this.elapsedMS = this.time - previousDateNow;
|
|
|
|
|
|
|
|
// 'now' is currently still holding the time of the last call, move it into prevTime
|
|
|
|
this.prevTime = this.now;
|
|
|
|
|
|
|
|
// update 'now' to hold the current time
|
|
|
|
this.now = time;
|
|
|
|
|
|
|
|
// elapsed time between previous call and now
|
|
|
|
this.elapsed = this.now - this.prevTime;
|
2014-04-28 12:22:29 +00:00
|
|
|
|
2014-11-03 00:59:40 +00:00
|
|
|
// Set the physics elapsed time... this will always be 1 / this.desiredFps because we're using fixed time steps in game.update now
|
|
|
|
this.physicsElapsed = 1 / this.desiredFps;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2014-11-26 13:13:25 +00:00
|
|
|
this.physicsElapsedMS = this.physicsElapsed * 1000;
|
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
},
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
/**
|
|
|
|
* Handles the updating of the Phaser.Timers (if any)
|
|
|
|
* Called automatically by Time.update.
|
|
|
|
*
|
|
|
|
* @method Phaser.Time#updateTimers
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
updateTimers: function () {
|
|
|
|
|
|
|
|
// Any game level timers
|
|
|
|
var i = 0;
|
|
|
|
var len = this._timers.length;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
while (i < len)
|
|
|
|
{
|
|
|
|
if (this._timers[i].update(this.time))
|
|
|
|
{
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
else
|
2014-02-25 03:50:52 +00:00
|
|
|
{
|
2015-07-21 20:41:26 +00:00
|
|
|
// Timer requests to be removed
|
|
|
|
this._timers.splice(i, 1);
|
|
|
|
len--;
|
2014-02-25 03:50:52 +00:00
|
|
|
}
|
2014-01-09 00:59:37 +00:00
|
|
|
}
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles the updating of the advanced timing values (if enabled)
|
|
|
|
* Called automatically by Time.update.
|
|
|
|
*
|
|
|
|
* @method Phaser.Time#updateAdvancedTiming
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
updateAdvancedTiming: function () {
|
|
|
|
|
|
|
|
// count the number of time.update calls
|
|
|
|
this._frameCount++;
|
|
|
|
this._elapsedAccumulator += this.elapsed;
|
|
|
|
|
|
|
|
// occasionally recalculate the suggestedFps based on the accumulated elapsed time
|
|
|
|
if (this._frameCount >= this.desiredFps * 2)
|
2014-01-09 00:59:37 +00:00
|
|
|
{
|
2015-07-21 20:41:26 +00:00
|
|
|
// this formula calculates suggestedFps in multiples of 5 fps
|
|
|
|
this.suggestedFps = Math.floor(200 / (this._elapsedAccumulator / this._frameCount)) * 5;
|
|
|
|
this._frameCount = 0;
|
|
|
|
this._elapsedAccumulator = 0;
|
|
|
|
}
|
2014-01-08 11:21:30 +00:00
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
this.msMin = Math.min(this.msMin, this.elapsed);
|
|
|
|
this.msMax = Math.max(this.msMax, this.elapsed);
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2015-07-21 20:41:26 +00:00
|
|
|
this.frames++;
|
|
|
|
|
|
|
|
if (this.now > this._timeLastSecond + 1000)
|
|
|
|
{
|
|
|
|
this.fps = Math.round((this.frames * 1000) / (this.now - this._timeLastSecond));
|
|
|
|
this.fpsMin = Math.min(this.fpsMin, this.fps);
|
|
|
|
this.fpsMax = Math.max(this.fpsMax, this.fps);
|
|
|
|
this._timeLastSecond = this.now;
|
|
|
|
this.frames = 0;
|
2014-01-09 00:59:37 +00:00
|
|
|
}
|
2014-01-04 02:53:32 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the game enters a paused state.
|
2014-02-26 19:51:28 +00:00
|
|
|
*
|
2014-01-09 00:59:37 +00:00
|
|
|
* @method Phaser.Time#gamePaused
|
|
|
|
* @private
|
|
|
|
*/
|
2014-03-12 21:19:00 +00:00
|
|
|
gamePaused: function () {
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2014-11-03 00:59:40 +00:00
|
|
|
this._pauseStarted = Date.now();
|
2014-01-09 00:59:37 +00:00
|
|
|
|
|
|
|
this.events.pause();
|
|
|
|
|
2014-02-25 02:59:24 +00:00
|
|
|
var i = this._timers.length;
|
|
|
|
|
|
|
|
while (i--)
|
2014-01-09 00:59:37 +00:00
|
|
|
{
|
2014-02-26 23:27:22 +00:00
|
|
|
this._timers[i]._pause();
|
2014-01-04 02:53:32 +00:00
|
|
|
}
|
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the game resumes from a paused state.
|
2014-02-26 19:51:28 +00:00
|
|
|
*
|
2014-01-09 00:59:37 +00:00
|
|
|
* @method Phaser.Time#gameResumed
|
|
|
|
* @private
|
|
|
|
*/
|
2014-03-12 21:19:00 +00:00
|
|
|
gameResumed: function () {
|
|
|
|
|
2014-11-03 03:25:43 +00:00
|
|
|
// Set the parameter which stores Date.now() to make sure it's correct on resume
|
|
|
|
this.time = Date.now();
|
2014-02-25 02:59:24 +00:00
|
|
|
|
2014-11-03 03:25:43 +00:00
|
|
|
this.pauseDuration = this.time - this._pauseStarted;
|
2014-04-26 02:48:06 +00:00
|
|
|
|
|
|
|
this.events.resume();
|
|
|
|
|
2014-04-28 00:05:30 +00:00
|
|
|
var i = this._timers.length;
|
2014-04-26 02:48:06 +00:00
|
|
|
|
2014-04-28 00:05:30 +00:00
|
|
|
while (i--)
|
|
|
|
{
|
2014-04-28 00:17:39 +00:00
|
|
|
this._timers[i]._resume();
|
2014-04-28 00:05:30 +00:00
|
|
|
}
|
2014-04-26 02:48:06 +00:00
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of seconds that have elapsed since the game was started.
|
2014-02-26 19:51:28 +00:00
|
|
|
*
|
2014-01-09 00:59:37 +00:00
|
|
|
* @method Phaser.Time#totalElapsedSeconds
|
2014-02-26 19:51:28 +00:00
|
|
|
* @return {number} The number of seconds that have elapsed since the game was started.
|
2014-01-09 00:59:37 +00:00
|
|
|
*/
|
|
|
|
totalElapsedSeconds: function() {
|
2014-11-08 19:46:40 +00:00
|
|
|
return (this.time - this._started) * 0.001;
|
2014-01-09 00:59:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* How long has passed since the given time.
|
2014-02-26 19:51:28 +00:00
|
|
|
*
|
2014-01-09 00:59:37 +00:00
|
|
|
* @method Phaser.Time#elapsedSince
|
|
|
|
* @param {number} since - The time you want to measure against.
|
|
|
|
* @return {number} The difference between the given time and now.
|
|
|
|
*/
|
|
|
|
elapsedSince: function (since) {
|
2014-11-08 19:46:40 +00:00
|
|
|
return this.time - since;
|
2014-01-09 00:59:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* How long has passed since the given time (in seconds).
|
2014-02-26 19:51:28 +00:00
|
|
|
*
|
2014-01-09 00:59:37 +00:00
|
|
|
* @method Phaser.Time#elapsedSecondsSince
|
|
|
|
* @param {number} since - The time you want to measure (in seconds).
|
|
|
|
* @return {number} Duration between given time and now (in seconds).
|
|
|
|
*/
|
|
|
|
elapsedSecondsSince: function (since) {
|
2014-11-08 19:46:40 +00:00
|
|
|
return (this.time - since) * 0.001;
|
2014-01-09 00:59:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2014-03-02 10:56:39 +00:00
|
|
|
* Resets the private _started value to now and removes all currently running Timers.
|
2014-02-26 19:51:28 +00:00
|
|
|
*
|
2014-01-09 00:59:37 +00:00
|
|
|
* @method Phaser.Time#reset
|
|
|
|
*/
|
|
|
|
reset: function () {
|
2014-03-02 10:56:39 +00:00
|
|
|
|
2014-12-18 08:07:38 +00:00
|
|
|
this._started = this.time;
|
2014-03-02 10:56:39 +00:00
|
|
|
this.removeAll();
|
|
|
|
|
2014-01-09 00:59:37 +00:00
|
|
|
}
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-12-30 16:54:00 +00:00
|
|
|
};
|
|
|
|
|
2014-11-25 09:46:30 +00:00
|
|
|
Phaser.Time.prototype.constructor = Phaser.Time;
|