2013-08-28 06:02:55 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2013 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
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Time constructor.
|
2013-08-28 06:02:55 +00:00
|
|
|
*
|
2013-10-01 12:54:29 +00:00
|
|
|
* @class Phaser.Time
|
2013-10-03 01:38:35 +00:00
|
|
|
* @classdesc This is the core internal game clock. It manages the elapsed time and calculation of elapsed values, used for game object motion and tweens.
|
2013-08-28 06:02:55 +00:00
|
|
|
* @constructor
|
|
|
|
* @param {Phaser.Game} game A reference to the currently running game.
|
|
|
|
*/
|
|
|
|
Phaser.Time = function (game) {
|
|
|
|
|
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {Phaser.Game} game - Local reference to game.
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.game = game;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The time at which the Game instance started.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} _started
|
2013-08-28 06:02:55 +00:00
|
|
|
* @private
|
2013-10-01 12:54:29 +00:00
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this._started = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The time (in ms) that the last second counter ticked over.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} _timeLastSecond
|
2013-08-28 06:02:55 +00:00
|
|
|
* @private
|
2013-10-01 12:54:29 +00:00
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this._timeLastSecond = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The time the game started being paused.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} _pauseStarted
|
2013-08-28 06:02:55 +00:00
|
|
|
* @private
|
2013-10-01 12:54:29 +00:00
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this._pauseStarted = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The elapsed time calculated for the physics motion updates.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} physicsElapsed
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.physicsElapsed = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Game time counter.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} time
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.time = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Records how long the game has been paused for. Is reset each time the game pauses.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} pausedTime
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.pausedTime = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The time right now.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} now
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.now = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Elapsed time since the last frame.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} elapsed
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.elapsed = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Frames per second.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} fps
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.fps = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The lowest rate the fps has dropped to.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} fpsMin
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.fpsMin = 1000;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The highest rate the fps has reached (usually no higher than 60fps).
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} fpsMax
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.fpsMax = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The minimum amount of time the game has taken between two frames.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} msMin
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.msMin = 1000;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The maximum amount of time the game has taken between two frames.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} msMax
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.msMax = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The number of frames record in the last second.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} frames
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.frames = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Records how long the game was paused for in miliseconds.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} pauseDuration
|
|
|
|
* @default
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.pauseDuration = 0;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-08-29 02:52:59 +00:00
|
|
|
/**
|
|
|
|
* The value that setTimeout needs to work out when to next update
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} timeToCall
|
|
|
|
* @default
|
2013-08-29 02:52:59 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.timeToCall = 0;
|
2013-08-29 02:52:59 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Internal value used by timeToCall as part of the setTimeout loop
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {number} lastTime
|
|
|
|
* @default
|
2013-08-29 02:52:59 +00:00
|
|
|
*/
|
2013-09-10 19:40:34 +00:00
|
|
|
this.lastTime = 0;
|
|
|
|
|
2013-09-10 22:51:35 +00:00
|
|
|
// Listen for game pause/resume events
|
|
|
|
this.game.onPause.add(this.gamePaused, this);
|
|
|
|
this.game.onResume.add(this.gameResumed, this);
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-11-24 11:04:58 +00:00
|
|
|
* Internal value used to recover from the game pause state.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @property {boolean} _justResumed
|
2013-10-01 12:54:29 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-09-12 14:39:52 +00:00
|
|
|
this._justResumed = false;
|
|
|
|
|
2013-09-10 19:40:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Time.prototype = {
|
2013-08-29 02:52:59 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* Updates the game clock and calculate the fps. This is called automatically by Phaser.Game.
|
|
|
|
* @method Phaser.Time#update
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} time - The current timestamp, either performance.now or Date.now depending on the browser.
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
2013-08-29 02:52:59 +00:00
|
|
|
update: function (time) {
|
|
|
|
|
|
|
|
this.now = time;
|
2013-09-12 15:18:44 +00:00
|
|
|
|
|
|
|
if (this._justResumed)
|
|
|
|
{
|
|
|
|
this.time = this.now;
|
|
|
|
this._justResumed = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.timeToCall = this.game.math.max(0, 16 - (time - this.lastTime));
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-08-29 02:52:59 +00:00
|
|
|
this.elapsed = this.now - this.time;
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-09-12 15:18:44 +00:00
|
|
|
this.msMin = this.game.math.min(this.msMin, this.elapsed);
|
|
|
|
this.msMax = this.game.math.max(this.msMax, this.elapsed);
|
2013-08-28 06:02:55 +00:00
|
|
|
|
|
|
|
this.frames++;
|
|
|
|
|
|
|
|
if (this.now > this._timeLastSecond + 1000)
|
|
|
|
{
|
|
|
|
this.fps = Math.round((this.frames * 1000) / (this.now - this._timeLastSecond));
|
2013-09-12 15:18:44 +00:00
|
|
|
this.fpsMin = this.game.math.min(this.fpsMin, this.fps);
|
|
|
|
this.fpsMax = this.game.math.max(this.fpsMax, this.fps);
|
2013-08-28 06:02:55 +00:00
|
|
|
this._timeLastSecond = this.now;
|
|
|
|
this.frames = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.time = this.now;
|
2013-08-29 02:52:59 +00:00
|
|
|
this.lastTime = time + this.timeToCall;
|
|
|
|
this.physicsElapsed = 1.0 * (this.elapsed / 1000);
|
2013-08-28 06:02:55 +00:00
|
|
|
|
2013-10-23 16:11:06 +00:00
|
|
|
// Clamp the delta
|
|
|
|
if (this.physicsElapsed > 1)
|
|
|
|
{
|
|
|
|
this.physicsElapsed = 1;
|
|
|
|
}
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
// Paused?
|
2013-09-10 19:40:34 +00:00
|
|
|
if (this.game.paused)
|
|
|
|
{
|
2013-08-28 06:02:55 +00:00
|
|
|
this.pausedTime = this.now - this._pauseStarted;
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the game enters a paused state.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Time#gamePaused
|
2013-08-28 06:02:55 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
gamePaused: function () {
|
2013-09-12 15:18:44 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
this._pauseStarted = this.now;
|
2013-09-12 15:18:44 +00:00
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called when the game resumes from a paused state.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Time#gameResumed
|
2013-08-28 06:02:55 +00:00
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
gameResumed: function () {
|
|
|
|
|
2013-08-29 02:52:59 +00:00
|
|
|
// Level out the elapsed timer to avoid spikes
|
2013-09-12 15:18:44 +00:00
|
|
|
this.time = Date.now();
|
2013-08-28 06:02:55 +00:00
|
|
|
this.pauseDuration = this.pausedTime;
|
2013-09-12 14:39:52 +00:00
|
|
|
this._justResumed = true;
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
},
|
|
|
|
|
2013-11-24 11:04:58 +00:00
|
|
|
/**
|
|
|
|
* The number of seconds that have elapsed since the game was started.
|
|
|
|
* @method Phaser.Time#totalElapsedSeconds
|
|
|
|
* @return {number}
|
|
|
|
*/
|
|
|
|
totalElapsedSeconds: function() {
|
|
|
|
return (this.now - this._started) * 0.001;
|
|
|
|
},
|
|
|
|
|
2013-08-28 06:02:55 +00:00
|
|
|
/**
|
|
|
|
* How long has passed since the given time.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Time#elapsedSince
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} since - The time you want to measure against.
|
|
|
|
* @return {number} The difference between the given time and now.
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
elapsedSince: function (since) {
|
|
|
|
return this.now - since;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* How long has passed since the given time (in seconds).
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Time#elapsedSecondsSince
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} since - The time you want to measure (in seconds).
|
|
|
|
* @return {number} Duration between given time and now (in seconds).
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
elapsedSecondsSince: function (since) {
|
|
|
|
return (this.now - since) * 0.001;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Resets the private _started value to now.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @method Phaser.Time#reset
|
2013-08-28 06:02:55 +00:00
|
|
|
*/
|
|
|
|
reset: function () {
|
|
|
|
this._started = this.now;
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|