2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2020-01-15 12:07:09 +00:00
|
|
|
* @copyright 2020 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2017-09-01 16:51:51 +00:00
|
|
|
var Defaults = require('../tween/Defaults');
|
2017-08-31 14:11:04 +00:00
|
|
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
2017-09-01 16:51:51 +00:00
|
|
|
var GetBoolean = require('./GetBoolean');
|
2017-05-17 01:44:04 +00:00
|
|
|
var GetEaseFunction = require('./GetEaseFunction');
|
2017-09-01 16:51:51 +00:00
|
|
|
var GetNewValue = require('./GetNewValue');
|
|
|
|
var GetProps = require('./GetProps');
|
|
|
|
var GetTargets = require('./GetTargets');
|
2017-08-31 14:11:04 +00:00
|
|
|
var GetValue = require('../../utils/object/GetValue');
|
2017-09-01 16:51:51 +00:00
|
|
|
var GetValueOp = require('./GetValueOp');
|
2017-08-31 14:11:04 +00:00
|
|
|
var Tween = require('../tween/Tween');
|
|
|
|
var TweenData = require('../tween/TweenData');
|
2017-05-17 01:44:04 +00:00
|
|
|
|
2018-02-10 17:11:36 +00:00
|
|
|
/**
|
2019-05-28 18:44:43 +00:00
|
|
|
* Creates a new Tween.
|
2018-02-10 17:11:36 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Tweens.Builders.TweenBuilder
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2019-05-28 18:44:43 +00:00
|
|
|
* @param {(Phaser.Tweens.TweenManager|Phaser.Tweens.Timeline)} parent - The owner of the new Tween.
|
2019-05-29 17:42:30 +00:00
|
|
|
* @param {Phaser.Types.Tweens.TweenBuilderConfig|object} config - Configuration for the new Tween.
|
2019-05-09 11:40:41 +00:00
|
|
|
* @param {Phaser.Types.Tweens.TweenConfigDefaults} defaults - Tween configuration defaults.
|
2018-02-10 17:11:36 +00:00
|
|
|
*
|
2019-05-28 18:44:43 +00:00
|
|
|
* @return {Phaser.Tweens.Tween} The new tween.
|
2018-02-10 17:11:36 +00:00
|
|
|
*/
|
2017-09-03 23:55:42 +00:00
|
|
|
var TweenBuilder = function (parent, config, defaults)
|
2017-05-17 01:44:04 +00:00
|
|
|
{
|
2017-09-01 16:51:51 +00:00
|
|
|
if (defaults === undefined)
|
2017-05-17 01:44:04 +00:00
|
|
|
{
|
2017-09-01 16:51:51 +00:00
|
|
|
defaults = Defaults;
|
2017-05-17 01:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create arrays of the Targets and the Properties
|
2017-09-01 16:51:51 +00:00
|
|
|
var targets = (defaults.targets) ? defaults.targets : GetTargets(config);
|
|
|
|
|
|
|
|
// var props = (defaults.props) ? defaults.props : GetProps(config);
|
2017-05-17 01:44:04 +00:00
|
|
|
var props = GetProps(config);
|
|
|
|
|
2017-05-18 05:39:47 +00:00
|
|
|
// Default Tween values
|
2017-09-01 16:51:51 +00:00
|
|
|
var delay = GetNewValue(config, 'delay', defaults.delay);
|
|
|
|
var duration = GetNewValue(config, 'duration', defaults.duration);
|
|
|
|
var easeParams = GetValue(config, 'easeParams', defaults.easeParams);
|
|
|
|
var ease = GetEaseFunction(GetValue(config, 'ease', defaults.ease), easeParams);
|
|
|
|
var hold = GetNewValue(config, 'hold', defaults.hold);
|
|
|
|
var repeat = GetNewValue(config, 'repeat', defaults.repeat);
|
|
|
|
var repeatDelay = GetNewValue(config, 'repeatDelay', defaults.repeatDelay);
|
|
|
|
var yoyo = GetBoolean(config, 'yoyo', defaults.yoyo);
|
|
|
|
var flipX = GetBoolean(config, 'flipX', defaults.flipX);
|
|
|
|
var flipY = GetBoolean(config, 'flipY', defaults.flipY);
|
2017-05-18 05:39:47 +00:00
|
|
|
|
2017-05-24 00:27:04 +00:00
|
|
|
var data = [];
|
|
|
|
|
2017-05-18 05:39:47 +00:00
|
|
|
// Loop through every property defined in the Tween, i.e.: props { x, y, alpha }
|
2017-05-17 01:44:04 +00:00
|
|
|
for (var p = 0; p < props.length; p++)
|
|
|
|
{
|
|
|
|
var key = props[p].key;
|
2017-05-23 18:04:15 +00:00
|
|
|
var value = props[p].value;
|
|
|
|
|
2017-08-11 16:12:18 +00:00
|
|
|
// Create 1 TweenData per target, per property
|
2017-05-24 02:29:31 +00:00
|
|
|
for (var t = 0; t < targets.length; t++)
|
|
|
|
{
|
2017-09-04 03:08:12 +00:00
|
|
|
var ops = GetValueOp(key, value);
|
|
|
|
|
2017-05-24 02:29:31 +00:00
|
|
|
var tweenData = TweenData(
|
|
|
|
targets[t],
|
2019-06-28 17:02:18 +00:00
|
|
|
t,
|
2017-05-24 02:29:31 +00:00
|
|
|
key,
|
2017-09-04 03:08:12 +00:00
|
|
|
ops.getEnd,
|
|
|
|
ops.getStart,
|
2019-06-28 17:02:18 +00:00
|
|
|
ops.getActive,
|
2020-09-02 21:27:40 +00:00
|
|
|
GetEaseFunction(GetValue(value, 'ease', ease), GetValue(value, 'easeParams', easeParams)),
|
2017-05-24 02:29:31 +00:00
|
|
|
GetNewValue(value, 'delay', delay),
|
|
|
|
GetNewValue(value, 'duration', duration),
|
|
|
|
GetBoolean(value, 'yoyo', yoyo),
|
2017-05-24 04:24:20 +00:00
|
|
|
GetNewValue(value, 'hold', hold),
|
2017-05-24 02:29:31 +00:00
|
|
|
GetNewValue(value, 'repeat', repeat),
|
|
|
|
GetNewValue(value, 'repeatDelay', repeatDelay),
|
2017-08-11 12:14:34 +00:00
|
|
|
GetBoolean(value, 'flipX', flipX),
|
2019-06-28 17:02:18 +00:00
|
|
|
GetBoolean(value, 'flipY', flipY)
|
2017-05-24 02:29:31 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
data.push(tweenData);
|
|
|
|
}
|
2017-05-17 01:44:04 +00:00
|
|
|
}
|
|
|
|
|
2017-09-04 01:06:55 +00:00
|
|
|
var tween = new Tween(parent, data, targets);
|
2017-08-11 03:08:21 +00:00
|
|
|
|
2017-09-01 16:51:51 +00:00
|
|
|
tween.offset = GetAdvancedValue(config, 'offset', null);
|
2017-08-11 03:08:21 +00:00
|
|
|
tween.completeDelay = GetAdvancedValue(config, 'completeDelay', 0);
|
2017-09-01 23:37:34 +00:00
|
|
|
tween.loop = Math.round(GetAdvancedValue(config, 'loop', 0));
|
|
|
|
tween.loopDelay = Math.round(GetAdvancedValue(config, 'loopDelay', 0));
|
2017-05-24 02:29:31 +00:00
|
|
|
tween.paused = GetBoolean(config, 'paused', false);
|
2017-08-11 03:08:21 +00:00
|
|
|
tween.useFrames = GetBoolean(config, 'useFrames', false);
|
|
|
|
|
2017-09-03 23:55:42 +00:00
|
|
|
// Set the Callbacks
|
2017-08-11 03:08:21 +00:00
|
|
|
var scope = GetValue(config, 'callbackScope', tween);
|
|
|
|
|
2017-09-04 01:06:55 +00:00
|
|
|
// Callback parameters: 0 = a reference to the Tween itself, 1 = the target/s of the Tween, ... your own params
|
|
|
|
var tweenArray = [ tween, null ];
|
2017-08-11 12:14:34 +00:00
|
|
|
|
2017-09-03 23:55:42 +00:00
|
|
|
var callbacks = Tween.TYPES;
|
|
|
|
|
|
|
|
for (var i = 0; i < callbacks.length; i++)
|
|
|
|
{
|
|
|
|
var type = callbacks[i];
|
|
|
|
|
|
|
|
var callback = GetValue(config, type, false);
|
|
|
|
|
|
|
|
if (callback)
|
|
|
|
{
|
|
|
|
var callbackScope = GetValue(config, type + 'Scope', scope);
|
|
|
|
var callbackParams = GetValue(config, type + 'Params', []);
|
|
|
|
|
|
|
|
// The null is reset to be the Tween target
|
2017-09-04 01:06:55 +00:00
|
|
|
tween.setCallback(type, callback, tweenArray.concat(callbackParams), callbackScope);
|
2017-09-03 23:55:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-18 05:39:47 +00:00
|
|
|
return tween;
|
2017-05-17 01:44:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = TweenBuilder;
|