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}
|
|
|
|
*/
|
|
|
|
|
2013-08-28 23:09:12 +00:00
|
|
|
/**
|
|
|
|
* Tween constructor
|
|
|
|
* Create a new <code>Tween</code>.
|
|
|
|
*
|
2013-10-01 12:54:29 +00:00
|
|
|
* @class Phaser.Tween
|
|
|
|
* @constructor
|
|
|
|
* @param {object} object - Target object will be affected by this tween.
|
|
|
|
* @param {Phaser.Game} game - Current game instance.
|
2013-08-28 23:09:12 +00:00
|
|
|
*/
|
|
|
|
Phaser.Tween = function (object, game) {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reference to the target object.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @property {object} _object
|
|
|
|
* @private
|
2013-08-28 23:09:12 +00:00
|
|
|
*/
|
2013-11-25 04:40:04 +00:00
|
|
|
this._object = object;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {Phaser.Game} game - A reference to the currently running Game.
|
|
|
|
*/
|
2013-08-28 23:09:12 +00:00
|
|
|
this.game = game;
|
2013-10-01 12:54:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {object} _manager - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
2013-08-28 23:09:12 +00:00
|
|
|
this._manager = this.game.tweens;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {object} _valuesStart - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._valuesStart = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {object} _valuesEnd - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._valuesEnd = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {object} _valuesStartRepeat - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._valuesStartRepeat = {};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _duration - Description.
|
2013-10-03 01:38:35 +00:00
|
|
|
* @private
|
2013-10-01 12:54:29 +00:00
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._duration = 1000;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _repeat - Description.
|
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._repeat = 0;
|
|
|
|
|
|
|
|
/**
|
2013-10-01 15:39:39 +00:00
|
|
|
* @property {boolean} _yoyo - Description.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._yoyo = false;
|
|
|
|
|
|
|
|
/**
|
2013-10-01 15:39:39 +00:00
|
|
|
* @property {boolean} _reversed - Description.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._reversed = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _delayTime - Description.
|
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._delayTime = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Description} _startTime - Description.
|
|
|
|
* @private
|
|
|
|
* @default null
|
|
|
|
*/
|
|
|
|
this._startTime = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Description} _easingFunction - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._easingFunction = Phaser.Easing.Linear.None;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Description} _interpolationFunction - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._interpolationFunction = Phaser.Math.linearInterpolation;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Description} _chainedTweens - Description.
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
this._chainedTweens = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Description} _onStartCallback - Description.
|
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._onStartCallback = null;
|
|
|
|
|
|
|
|
/**
|
2013-10-01 15:39:39 +00:00
|
|
|
* @property {boolean} _onStartCallbackFired - Description.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
|
|
|
this._onStartCallbackFired = false;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
|
|
|
* @property {Description} _onUpdateCallback - Description.
|
|
|
|
* @private
|
|
|
|
* @default null
|
|
|
|
*/
|
|
|
|
this._onUpdateCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Description} _onCompleteCallback - Description.
|
|
|
|
* @private
|
|
|
|
* @default null
|
|
|
|
*/
|
|
|
|
this._onCompleteCallback = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {number} _pausedTime - Description.
|
|
|
|
* @private
|
|
|
|
* @default
|
|
|
|
*/
|
2013-08-28 23:09:12 +00:00
|
|
|
this._pausedTime = 0;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2013-10-03 01:38:35 +00:00
|
|
|
* @property {boolean} pendingDelete - If this tween is ready to be deleted by the TweenManager.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @default
|
|
|
|
*/
|
2013-09-19 03:45:08 +00:00
|
|
|
this.pendingDelete = false;
|
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
// Set all starting values present on the target object
|
|
|
|
for ( var field in object ) {
|
2013-11-25 04:40:04 +00:00
|
|
|
this._valuesStart[ field ] = parseFloat(object[field], 10);
|
2013-10-01 12:54:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Signal} onStart - Description.
|
|
|
|
*/
|
2013-08-30 16:09:43 +00:00
|
|
|
this.onStart = new Phaser.Signal();
|
2013-10-01 12:54:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @property {Phaser.Signal} onComplete - Description.
|
|
|
|
*/
|
2013-08-28 23:09:12 +00:00
|
|
|
this.onComplete = new Phaser.Signal();
|
|
|
|
|
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
|
|
|
|
*/
|
2013-08-28 23:09:12 +00:00
|
|
|
this.isRunning = false;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Tween.prototype = {
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Configure the Tween
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#to
|
|
|
|
* @param {object} properties - Properties you want to tween.
|
|
|
|
* @param {number} duration - Duration of this tween.
|
|
|
|
* @param {function} ease - Easing function.
|
|
|
|
* @param {boolean} autoStart - Whether this tween will start automatically or not.
|
|
|
|
* @param {number} delay - Delay before this tween will start, defaults to 0 (no delay).
|
|
|
|
* @param {boolean} repeat - Should the tween automatically restart once complete? (ignores any chained tweens).
|
|
|
|
* @param {Phaser.Tween} yoyo - Description.
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
to: function ( properties, duration, ease, autoStart, delay, repeat, yoyo ) {
|
|
|
|
|
|
|
|
duration = duration || 1000;
|
|
|
|
ease = ease || null;
|
|
|
|
autoStart = autoStart || false;
|
|
|
|
delay = delay || 0;
|
|
|
|
repeat = repeat || 0;
|
|
|
|
yoyo = yoyo || false;
|
|
|
|
|
|
|
|
var self;
|
|
|
|
if (this._parent)
|
|
|
|
{
|
|
|
|
self = this._manager.create(this._object);
|
|
|
|
this._lastChild.chain(self);
|
|
|
|
this._lastChild = self;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
self = this;
|
|
|
|
this._parent = this;
|
|
|
|
this._lastChild = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
self._repeat = repeat;
|
2013-09-20 23:14:50 +00:00
|
|
|
self._duration = duration;
|
2013-11-25 04:40:04 +00:00
|
|
|
self._valuesEnd = properties;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-09-03 16:07:05 +00:00
|
|
|
if (ease !== null)
|
|
|
|
{
|
2013-09-20 23:14:50 +00:00
|
|
|
self._easingFunction = ease;
|
2013-08-28 23:09:12 +00:00
|
|
|
}
|
|
|
|
|
2013-09-03 16:07:05 +00:00
|
|
|
if (delay > 0)
|
|
|
|
{
|
2013-09-20 23:14:50 +00:00
|
|
|
self._delayTime = delay;
|
2013-08-28 23:09:12 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 23:14:50 +00:00
|
|
|
self._yoyo = yoyo;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
|
|
|
if (autoStart) {
|
2013-10-11 03:42:11 +00:00
|
|
|
return this.start();
|
2013-08-28 23:09:12 +00:00
|
|
|
} else {
|
2013-10-11 03:42:11 +00:00
|
|
|
return this;
|
2013-08-28 23:09:12 +00:00
|
|
|
}
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Starts the tween running. Can also be called by the autoStart parameter of Tween.to.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#start
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
start: function () {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
|
|
|
if (this.game === null || this._object === null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._manager.add(this);
|
2013-08-30 16:09:43 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.onStart.dispatch(this._object);
|
2013-08-30 16:09:43 +00:00
|
|
|
|
2013-08-28 23:09:12 +00:00
|
|
|
this.isRunning = true;
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._onStartCallbackFired = false;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
|
|
|
this._startTime = this.game.time.now + this._delayTime;
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
for ( var property in this._valuesEnd ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
// check if an Array was provided as property value
|
|
|
|
if ( this._valuesEnd[ property ] instanceof Array ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( this._valuesEnd[ property ].length === 0 ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
continue;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
// create a local copy of the Array with the start value at the front
|
|
|
|
this._valuesEnd[ property ] = [ this._object[ property ] ].concat( this._valuesEnd[ property ] );
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._valuesStart[ property ] = this._object[ property ];
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( ( this._valuesStart[ property ] instanceof Array ) === false ) {
|
|
|
|
this._valuesStart[ property ] *= 1.0; // Ensures we're using numbers, not strings
|
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._valuesStartRepeat[ property ] = this._valuesStart[ property ] || 0;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
return this;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
},
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Stops the tween if running and removes it from the TweenManager. If there are any onComplete callbacks or events they are not dispatched.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#stop
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
stop: function () {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
|
|
|
this.isRunning = false;
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._manager.remove(this);
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a delay time before this tween will start.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#delay
|
|
|
|
* @param {number} amount - The amount of the delay in ms.
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
delay: function ( amount ) {
|
|
|
|
|
|
|
|
this._delayTime = amount;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the number of times this tween will repeat.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#repeat
|
|
|
|
* @param {number} times - How many times to repeat.
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
repeat: function ( times ) {
|
|
|
|
|
|
|
|
this._repeat = times;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A tween that has yoyo set to true will run through from start to finish, then reverse from finish to start.
|
|
|
|
* Used in combination with repeat you can create endless loops.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#yoyo
|
|
|
|
* @param {boolean} yoyo - Set to true to yoyo this tween.
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
yoyo: function( yoyo ) {
|
|
|
|
|
|
|
|
this._yoyo = yoyo;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set easing function this tween will use, i.e. Phaser.Easing.Linear.None.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#easing
|
|
|
|
* @param {function} easing - The easing function this tween will use, i.e. Phaser.Easing.Linear.None.
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
easing: function ( easing ) {
|
|
|
|
|
|
|
|
this._easingFunction = easing;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set interpolation function the tween will use, by default it uses Phaser.Math.linearInterpolation.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#interpolation
|
|
|
|
* @param {function} interpolation - The interpolation function to use (Phaser.Math.linearInterpolation by default)
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
interpolation: function ( interpolation ) {
|
|
|
|
|
|
|
|
this._interpolationFunction = interpolation;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* You can chain tweens together by passing a reference to the chain function. This enables one tween to call another on completion.
|
|
|
|
* You can pass as many tweens as you like to this function, they will each be chained in sequence.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#chain
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
chain: function () {
|
|
|
|
|
|
|
|
this._chainedTweens = arguments;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loop a chain of tweens
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
* game.add.tween(p).to({ x: 700 }, 1000, Phaser.Easing.Linear.None, true)
|
|
|
|
* .to({ y: 300 }, 1000, Phaser.Easing.Linear.None)
|
|
|
|
* .to({ x: 0 }, 1000, Phaser.Easing.Linear.None)
|
|
|
|
* .to({ y: 0 }, 1000, Phaser.Easing.Linear.None)
|
|
|
|
* .loop();
|
|
|
|
* @method Phaser.Tween#loop
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
loop: function() {
|
|
|
|
|
|
|
|
this._lastChild.chain(this);
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a callback to be fired when the tween starts. Note: callback will be called in the context of the global scope.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#onStartCallback
|
|
|
|
* @param {function} callback - The callback to invoke on start.
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
onStartCallback: function ( callback ) {
|
|
|
|
|
|
|
|
this._onStartCallback = callback;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a callback to be fired each time this tween updates. Note: callback will be called in the context of the global scope.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#onUpdateCallback
|
|
|
|
* @param {function} callback - The callback to invoke each time this tween is updated.
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
onUpdateCallback: function ( callback ) {
|
|
|
|
|
|
|
|
this._onUpdateCallback = callback;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets a callback to be fired when the tween completes. Note: callback will be called in the context of the global scope.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#onCompleteCallback
|
|
|
|
* @param {function} callback - The callback to invoke on completion.
|
|
|
|
* @return {Phaser.Tween} Itself.
|
|
|
|
*/
|
|
|
|
onCompleteCallback: function ( callback ) {
|
|
|
|
|
|
|
|
this._onCompleteCallback = callback;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pauses the tween.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#pause
|
|
|
|
*/
|
2013-10-03 01:38:35 +00:00
|
|
|
pause: function () {
|
|
|
|
this._paused = true;
|
2013-10-11 03:42:11 +00:00
|
|
|
this._pausedTime = this.game.time.now;
|
2013-10-03 01:38:35 +00:00
|
|
|
},
|
2013-09-30 10:15:50 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Resumes a paused tween.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#resume
|
|
|
|
*/
|
2013-10-03 01:38:35 +00:00
|
|
|
resume: function () {
|
|
|
|
this._paused = false;
|
2013-10-11 03:42:11 +00:00
|
|
|
this._startTime += (this.game.time.now - this._pausedTime);
|
2013-10-03 01:38:35 +00:00
|
|
|
},
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
/**
|
|
|
|
* Core tween update function called by the TweenManager. Does not need to be invoked directly.
|
|
|
|
*
|
|
|
|
* @method Phaser.Tween#update
|
|
|
|
* @param {number} time - A timestamp passed in by the TweenManager.
|
|
|
|
* @return {boolean} false if the tween has completed and should be deleted from the manager, otherwise true (still active).
|
|
|
|
*/
|
|
|
|
update: function ( time ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (this.pendingDelete)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-19 03:45:08 +00:00
|
|
|
|
2013-08-28 23:09:12 +00:00
|
|
|
if (this._paused || time < this._startTime) {
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
var property;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( time < this._startTime ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
return true;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( this._onStartCallbackFired === false ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( this._onStartCallback !== null ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._onStartCallback.call( this._object );
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._onStartCallbackFired = true;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
var elapsed = ( time - this._startTime ) / this._duration;
|
|
|
|
elapsed = elapsed > 1 ? 1 : elapsed;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
var value = this._easingFunction( elapsed );
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
for ( property in this._valuesEnd ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
var start = this._valuesStart[ property ] || 0;
|
|
|
|
var end = this._valuesEnd[ property ];
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( end instanceof Array ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._object[ property ] = this._interpolationFunction( end, value );
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
} else {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
|
|
|
// Parses relative end values with start as base (e.g.: +10, -3)
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( typeof(end) === "string" ) {
|
|
|
|
end = start + parseFloat(end, 10);
|
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
// protect against non numeric properties.
|
2013-08-28 23:09:12 +00:00
|
|
|
if ( typeof(end) === "number" ) {
|
2013-11-25 04:40:04 +00:00
|
|
|
this._object[ property ] = start + ( end - start ) * value;
|
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( this._onUpdateCallback !== null ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._onUpdateCallback.call( this._object, value );
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( elapsed == 1 ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( this._repeat > 0 ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( isFinite( this._repeat ) ) {
|
|
|
|
this._repeat--;
|
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
// reassign starting values, restart by making startTime = now
|
|
|
|
for ( property in this._valuesStartRepeat ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( typeof( this._valuesEnd[ property ] ) === "string" ) {
|
|
|
|
this._valuesStartRepeat[ property ] = this._valuesStartRepeat[ property ] + parseFloat(this._valuesEnd[ property ], 10);
|
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if (this._yoyo) {
|
|
|
|
var tmp = this._valuesStartRepeat[ property ];
|
|
|
|
this._valuesStartRepeat[ property ] = this._valuesEnd[ property ];
|
|
|
|
this._valuesEnd[ property ] = tmp;
|
|
|
|
this._reversed = !this._reversed;
|
|
|
|
}
|
|
|
|
this._valuesStart[ property ] = this._valuesStartRepeat[ property ];
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._startTime = time + this._delayTime;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.onComplete.dispatch(this._object);
|
2013-09-06 19:20:58 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( this._onCompleteCallback !== null ) {
|
|
|
|
this._onCompleteCallback.call( this._object );
|
|
|
|
}
|
2013-09-06 19:20:58 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
return true;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
} else {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this.isRunning = false;
|
|
|
|
this.onComplete.dispatch(this._object);
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
if ( this._onCompleteCallback !== null ) {
|
|
|
|
this._onCompleteCallback.call( this._object );
|
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
for ( var i = 0, numChainedTweens = this._chainedTweens.length; i < numChainedTweens; i ++ ) {
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
this._chainedTweens[ i ].start( time );
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
return false;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
return true;
|
2013-08-28 23:09:12 +00:00
|
|
|
|
2013-11-25 04:40:04 +00:00
|
|
|
}
|
|
|
|
|
2013-08-28 23:09:12 +00:00
|
|
|
};
|