2017-09-01 16:51:51 +00:00
|
|
|
var Clone = require('../../utils/object/Clone');
|
|
|
|
var Defaults = require('../tween/Defaults');
|
|
|
|
var GetBoolean = require('./GetBoolean');
|
|
|
|
var GetEaseFunction = require('./GetEaseFunction');
|
|
|
|
var GetNewValue = require('./GetNewValue');
|
|
|
|
var GetTargets = require('./GetTargets');
|
|
|
|
var GetTweens = require('./GetTweens');
|
|
|
|
var GetValue = require('../../utils/object/GetValue');
|
2017-09-02 02:16:59 +00:00
|
|
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
2017-09-01 16:51:51 +00:00
|
|
|
var Timeline = require('../timeline/Timeline');
|
|
|
|
var TweenBuilder = require('./TweenBuilder');
|
|
|
|
|
|
|
|
var TimelineBuilder = function (manager, config)
|
|
|
|
{
|
|
|
|
var defaults = Clone(Defaults);
|
|
|
|
|
|
|
|
var tweens = GetTweens(config);
|
|
|
|
|
|
|
|
if (tweens.length === 0)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
defaults.targets = GetTargets(config);
|
|
|
|
|
2017-09-02 02:16:59 +00:00
|
|
|
// totalDuration: If specified each tween in the Timeline is given an equal portion of the totalDuration
|
|
|
|
|
|
|
|
var totalDuration = GetAdvancedValue(config, 'totalDuration', 0);
|
|
|
|
|
|
|
|
if (totalDuration > 0)
|
|
|
|
{
|
|
|
|
defaults.duration = Math.floor(totalDuration / tweens.length);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
defaults.duration = GetNewValue(config, 'duration', defaults.duration);
|
|
|
|
}
|
|
|
|
|
2017-09-01 16:51:51 +00:00
|
|
|
defaults.delay = GetNewValue(config, 'delay', defaults.delay);
|
|
|
|
defaults.easeParams = GetValue(config, 'easeParams', defaults.easeParams);
|
|
|
|
defaults.ease = GetEaseFunction(GetValue(config, 'ease', defaults.ease), defaults.easeParams);
|
|
|
|
defaults.hold = GetNewValue(config, 'hold', defaults.hold);
|
|
|
|
defaults.repeat = GetNewValue(config, 'repeat', defaults.repeat);
|
|
|
|
defaults.repeatDelay = GetNewValue(config, 'repeatDelay', defaults.repeatDelay);
|
|
|
|
defaults.yoyo = GetBoolean(config, 'yoyo', defaults.yoyo);
|
|
|
|
defaults.flipX = GetBoolean(config, 'flipX', defaults.flipX);
|
|
|
|
defaults.flipY = GetBoolean(config, 'flipY', defaults.flipY);
|
|
|
|
|
|
|
|
var timeline = new Timeline(manager);
|
|
|
|
|
|
|
|
// Create the Tweens
|
|
|
|
for (var i = 0; i < tweens.length; i++)
|
|
|
|
{
|
|
|
|
timeline.queue(TweenBuilder(manager, tweens[i], defaults));
|
|
|
|
}
|
|
|
|
|
2017-09-02 02:16:59 +00:00
|
|
|
timeline.completeDelay = GetAdvancedValue(config, 'completeDelay', 0);
|
|
|
|
timeline.loop = Math.round(GetAdvancedValue(config, 'loop', 0));
|
|
|
|
timeline.loopDelay = Math.round(GetAdvancedValue(config, 'loopDelay', 0));
|
|
|
|
timeline.paused = GetBoolean(config, 'paused', false);
|
|
|
|
timeline.useFrames = GetBoolean(config, 'useFrames', false);
|
|
|
|
|
|
|
|
// Callbacks
|
|
|
|
|
|
|
|
var scope = GetValue(config, 'callbackScope', timeline);
|
|
|
|
|
|
|
|
var timelineArray = [ timeline ];
|
|
|
|
|
|
|
|
var onStart = GetValue(config, 'onStart', false);
|
|
|
|
|
|
|
|
// The Start of the Timeline
|
|
|
|
if (onStart)
|
|
|
|
{
|
|
|
|
var onStartScope = GetValue(config, 'onStartScope', scope);
|
|
|
|
var onStartParams = GetValue(config, 'onStartParams', []);
|
|
|
|
|
|
|
|
timeline.setCallback('onStart', onStart, timelineArray.concat(onStartParams), onStartScope);
|
|
|
|
}
|
|
|
|
|
|
|
|
var onUpdate = GetValue(config, 'onUpdate', false);
|
|
|
|
|
|
|
|
// Every time the Timeline updates (regardless which Tweens are running)
|
|
|
|
if (onUpdate)
|
|
|
|
{
|
|
|
|
var onUpdateScope = GetValue(config, 'onUpdateScope', scope);
|
|
|
|
var onUpdateParams = GetValue(config, 'onUpdateParams', []);
|
|
|
|
|
|
|
|
timeline.setCallback('onUpdate', onUpdate, timelineArray.concat(onUpdateParams), onUpdateScope);
|
|
|
|
}
|
|
|
|
|
|
|
|
var onLoop = GetValue(config, 'onLoop', false);
|
|
|
|
|
|
|
|
// Called when the whole Timeline loops
|
|
|
|
if (onLoop)
|
|
|
|
{
|
|
|
|
var onLoopScope = GetValue(config, 'onLoopScope', scope);
|
|
|
|
var onLoopParams = GetValue(config, 'onLoopParams', []);
|
|
|
|
|
|
|
|
timeline.setCallback('onLoop', onLoop, timelineArray.concat(onLoopParams), onLoopScope);
|
|
|
|
}
|
|
|
|
|
|
|
|
var onYoyo = GetValue(config, 'onYoyo', false);
|
|
|
|
|
|
|
|
// Called when a Timeline yoyos
|
|
|
|
if (onYoyo)
|
|
|
|
{
|
|
|
|
var onYoyoScope = GetValue(config, 'onYoyoScope', scope);
|
|
|
|
var onYoyoParams = GetValue(config, 'onYoyoParams', []);
|
|
|
|
|
|
|
|
timeline.setCallback('onYoyo', onYoyo, timelineArray.concat(null, onYoyoParams), onYoyoScope);
|
|
|
|
}
|
|
|
|
|
|
|
|
var onComplete = GetValue(config, 'onComplete', false);
|
|
|
|
|
|
|
|
// Called when the Timeline completes, after the completeDelay, etc.
|
|
|
|
if (onComplete)
|
|
|
|
{
|
|
|
|
var onCompleteScope = GetValue(config, 'onCompleteScope', scope);
|
|
|
|
var onCompleteParams = GetValue(config, 'onCompleteParams', []);
|
|
|
|
|
|
|
|
timeline.setCallback('onComplete', onComplete, timelineArray.concat(onCompleteParams), onCompleteScope);
|
|
|
|
}
|
|
|
|
|
2017-09-01 16:51:51 +00:00
|
|
|
return timeline;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = TimelineBuilder;
|