phaser/src/system/RequestAnimationFrame.js

153 lines
3 KiB
JavaScript
Raw Normal View History

/**
2013-10-01 12:54:29 +00:00
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2013 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* Abstracts away the use of RAF or setTimeOut for the core game update loop.
2013-10-01 12:54:29 +00:00
*
* @class Phaser.RequestAnimationFrame
* @constructor
* @param {Phaser.Game} game - A reference to the currently running game.
*/
Phaser.RequestAnimationFrame = function(game) {
2013-10-01 12:54:29 +00:00
/**
* @property {Phaser.Game} game - The currently running game.
*/
this.game = game;
2013-10-01 12:54:29 +00:00
/**
2013-10-01 15:39:39 +00:00
* @property {boolean} _isSetTimeOut - Description.
2013-10-01 12:54:29 +00:00
* @private
*/
this._isSetTimeOut = false;
2013-10-01 12:54:29 +00:00
/**
2013-10-01 15:39:39 +00:00
* @property {boolean} isRunning - Description.
2013-10-01 12:54:29 +00:00
* @default
*/
this.isRunning = false;
var vendors = [
'ms',
'moz',
'webkit',
'o'
];
2013-10-03 00:21:08 +00:00
for (var x = 0; x < vendors.length && !window.requestAnimationFrame; x++)
{
window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame'];
window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'];
}
/**
* The function called by the update
2013-10-01 12:54:29 +00:00
* @property _onLoop
* @private
2013-10-03 00:21:08 +00:00
*/
this._onLoop = null;
};
Phaser.RequestAnimationFrame.prototype = {
/**
* Starts the requestAnimatioFrame running or setTimeout if unavailable in browser
2013-10-03 00:21:08 +00:00
* @method Phaser.RequestAnimationFrame#start
*/
start: function () {
this.isRunning = true;
var _this = this;
if (!window.requestAnimationFrame)
{
this._isSetTimeOut = true;
this._onLoop = function () {
return _this.updateSetTimeout();
};
this._timeOutID = window.setTimeout(this._onLoop, 0);
}
else
{
this._isSetTimeOut = false;
this._onLoop = function (time) {
return _this.updateRAF(time);
};
window.requestAnimationFrame(this._onLoop);
}
},
/**
* The update method for the requestAnimationFrame
2013-10-03 00:21:08 +00:00
* @method Phaser.RequestAnimationFrame#updateRAF
* @param {number} time - A timestamp, either from RAF or setTimeOut
*/
updateRAF: function (time) {
this.game.update(time);
window.requestAnimationFrame(this._onLoop);
},
/**
2013-10-01 12:54:29 +00:00
* The update method for the setTimeout.
2013-10-03 00:21:08 +00:00
* @method Phaser.RequestAnimationFrame#updateSetTimeout
*/
updateSetTimeout: function () {
this.game.update(Date.now());
this._timeOutID = window.setTimeout(this._onLoop, this.game.time.timeToCall);
},
/**
2013-10-01 12:54:29 +00:00
* Stops the requestAnimationFrame from running.
2013-10-03 00:21:08 +00:00
* @method Phaser.RequestAnimationFrame#stop
*/
stop: function () {
if (this._isSetTimeOut)
{
clearTimeout(this._timeOutID);
}
else
{
window.cancelAnimationFrame;
}
this.isRunning = false;
},
/**
* Is the browser using setTimeout?
2013-10-03 00:21:08 +00:00
* @method Phaser.RequestAnimationFrame#isSetTimeOut
2013-10-01 15:39:39 +00:00
* @return {boolean}
2013-10-03 00:21:08 +00:00
*/
isSetTimeOut: function () {
return this._isSetTimeOut;
},
/**
* Is the browser using requestAnimationFrame?
2013-10-03 00:21:08 +00:00
* @method Phaser.RequestAnimationFrame#isRAF
2013-10-01 15:39:39 +00:00
* @return {boolean}
2013-10-03 00:21:08 +00:00
*/
isRAF: function () {
return (this._isSetTimeOut === false);
}
};