| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050 |
- /**
- * The MIT License (MIT)
- *
- * Copyright (c) 2012-2017 DragonBones team and other contributors
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
- * this software and associated documentation files (the "Software"), to deal in
- * the Software without restriction, including without limitation the rights to
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
- * the Software, and to permit persons to whom the Software is furnished to do so,
- * subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
- using System.Collections.Generic;
- namespace DragonBones
- {
- /// <summary>
- /// - The animation player is used to play the animation data and manage the animation states.
- /// </summary>
- /// <see cref="DragonBones.AnimationData"/>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 动画播放器用来播放动画数据和管理动画状态。
- /// </summary>
- /// <see cref="DragonBones.AnimationData"/>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public class AnimationDB : BaseObject
- {
- /// <summary>
- /// - The play speed of all animations. [0: Stop, (0~1): Slow, 1: Normal, (1~N): Fast]
- /// </summary>
- /// <default>1.0</default>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 所有动画的播放速度。 [0: 停止播放, (0~1): 慢速播放, 1: 正常播放, (1~N): 快速播放]
- /// </summary>
- /// <default>1.0</default>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public float timeScale;
- private bool _lockUpdate;
- // Update bones and slots cachedFrameIndices.
- private bool _animationDirty;
- private float _inheritTimeScale;
- private readonly List<string> _animationNames = new List<string>();
- private readonly List<AnimationState> _animationStates = new List<AnimationState>();
- private readonly Dictionary<string, AnimationData> _animations = new Dictionary<string, AnimationData>();
- private Armature _armature;
- private AnimationConfig _animationConfig = null; // Initial value.
- private AnimationState _lastAnimationState;
- /// <private/>
- protected override void _OnClear()
- {
- foreach (var animationState in this._animationStates)
- {
- animationState.ReturnToPool();
- }
- if (this._animationConfig != null)
- {
- this._animationConfig.ReturnToPool();
- }
- this.timeScale = 1.0f;
- this._lockUpdate = false;
- this._animationDirty = false;
- this._inheritTimeScale = 1.0f;
- this._animationNames.Clear();
- this._animationStates.Clear();
- this._animations.Clear();
- this._armature = null; //
- this._animationConfig = null; //
- this._lastAnimationState = null;
- }
- private void _FadeOut(AnimationConfig animationConfig)
- {
- switch (animationConfig.fadeOutMode)
- {
- case AnimationFadeOutMode.SameLayer:
- foreach (var animationState in this._animationStates)
- {
- if (animationState._parent != null)
- {
- continue;
- }
- if (animationState.layer == animationConfig.layer)
- {
- animationState.FadeOut(animationConfig.fadeOutTime, animationConfig.pauseFadeOut);
- }
- }
- break;
- case AnimationFadeOutMode.SameGroup:
- foreach (var animationState in this._animationStates)
- {
- if (animationState._parent != null)
- {
- continue;
- }
- if (animationState.group == animationConfig.group)
- {
- animationState.FadeOut(animationConfig.fadeOutTime, animationConfig.pauseFadeOut);
- }
- }
- break;
- case AnimationFadeOutMode.SameLayerAndGroup:
- foreach (var animationState in this._animationStates)
- {
- if (animationState._parent != null)
- {
- continue;
- }
- if (animationState.layer == animationConfig.layer &&
- animationState.group == animationConfig.group)
- {
- animationState.FadeOut(animationConfig.fadeOutTime, animationConfig.pauseFadeOut);
- }
- }
- break;
- case AnimationFadeOutMode.All:
- foreach (var animationState in this._animationStates)
- {
- if (animationState._parent != null)
- {
- continue;
- }
- animationState.FadeOut(animationConfig.fadeOutTime, animationConfig.pauseFadeOut);
- }
- break;
- case AnimationFadeOutMode.None:
- case AnimationFadeOutMode.Single:
- default:
- break;
- }
- }
- /// <internal/>
- /// <private/>
- internal void Init(Armature armature)
- {
- if (this._armature != null)
- {
- return;
- }
- this._armature = armature;
- this._animationConfig = BaseObject.BorrowObject<AnimationConfig>();
- }
- /// <internal/>
- /// <private/>
- internal void AdvanceTime(float passedTime)
- {
- if (passedTime < 0.0f)
- {
- // Only animationState can reverse play.
- passedTime = -passedTime;
- }
- if (this._armature.inheritAnimation && this._armature._parent != null)
- {
- // Inherit parent animation timeScale.
- this._inheritTimeScale = this._armature._parent._armature.animation._inheritTimeScale * this.timeScale;
- }
- else
- {
- this._inheritTimeScale = this.timeScale;
- }
- if (this._inheritTimeScale != 1.0f)
- {
- passedTime *= this._inheritTimeScale;
- }
- var animationStateCount = this._animationStates.Count;
- if (animationStateCount == 1)
- {
- var animationState = this._animationStates[0];
- if (animationState._fadeState > 0 && animationState._subFadeState > 0)
- {
- this._armature._dragonBones.BufferObject(animationState);
- this._animationStates.Clear();
- this._lastAnimationState = null;
- }
- else
- {
- var animationData = animationState._animationData;
- var cacheFrameRate = animationData.cacheFrameRate;
- if (this._animationDirty && cacheFrameRate > 0.0f)
- {
- // Update cachedFrameIndices.
- this._animationDirty = false;
- foreach (var bone in this._armature.GetBones())
- {
- bone._cachedFrameIndices = animationData.GetBoneCachedFrameIndices(bone.name);
- }
- foreach (var slot in this._armature.GetSlots())
- {
- var rawDisplayDatas = slot.rawDisplayDatas;
- if (rawDisplayDatas != null && rawDisplayDatas.Count > 0)
- {
- var rawDsplayData = rawDisplayDatas[0];
- if (rawDsplayData != null)
- {
- if (rawDsplayData.parent == this._armature.armatureData.defaultSkin)
- {
- slot._cachedFrameIndices = animationData.GetSlotCachedFrameIndices(slot.name);
- continue;
- }
- }
- }
- slot._cachedFrameIndices = null;
- }
- }
- animationState.AdvanceTime(passedTime, cacheFrameRate);
- }
- }
- else if (animationStateCount > 1)
- {
- for (int i = 0, r = 0; i < animationStateCount; ++i)
- {
- var animationState = this._animationStates[i];
- if (animationState._fadeState > 0 && animationState._subFadeState > 0)
- {
- r++;
- this._armature._dragonBones.BufferObject(animationState);
- this._animationDirty = true;
- if (this._lastAnimationState == animationState)
- {
- // Update last animation state.
- this._lastAnimationState = null;
- }
- }
- else
- {
- if (r > 0)
- {
- this._animationStates[i - r] = animationState;
- }
- animationState.AdvanceTime(passedTime, 0.0f);
- }
- if (i == animationStateCount - 1 && r > 0)
- {
- // Modify animation states size.
- this._animationStates.ResizeList(this._animationStates.Count - r);
- if (this._lastAnimationState == null && this._animationStates.Count > 0)
- {
- this._lastAnimationState = this._animationStates[this._animationStates.Count - 1];
- }
- }
- }
- this._armature._cacheFrameIndex = -1;
- }
- else
- {
- this._armature._cacheFrameIndex = -1;
- }
- }
- /// <summary>
- /// - Clear all animations states.
- /// </summary>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 清除所有的动画状态。
- /// </summary>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public void Reset()
- {
- foreach (var animationState in this._animationStates)
- {
- animationState.ReturnToPool();
- }
- this._animationDirty = false;
- this._animationConfig.Clear();
- this._animationStates.Clear();
- this._lastAnimationState = null;
- }
- /// <summary>
- /// - Pause a specific animation state.
- /// </summary>
- /// <param name="animationName">- The name of animation state. (If not set, it will pause all animations)</param>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 暂停指定动画状态的播放。
- /// </summary>
- /// <param name="animationName">- 动画状态名称。 (如果未设置,则暂停所有动画)</param>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public void Stop(string animationName = null)
- {
- if (animationName != null)
- {
- var animationState = this.GetState(animationName);
- if (animationState != null)
- {
- animationState.Stop();
- }
- }
- else
- {
- foreach (var animationState in this._animationStates)
- {
- animationState.Stop();
- }
- }
- }
- /// <summary>
- /// - Play animation with a specific animation config.
- /// The API is still in the experimental phase and may encounter bugs or stability or compatibility issues when used.
- /// </summary>
- /// <param name="animationConfig">- The animation config.</param>
- /// <returns>The playing animation state.</returns>
- /// <see cref="DragonBones.AnimationConfig"/>
- /// <beta/>
- /// <version>DragonBones 5.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 通过指定的动画配置来播放动画。
- /// 该 API 仍在实验阶段,使用时可能遭遇 bug 或稳定性或兼容性问题。
- /// </summary>
- /// <param name="animationConfig">- 动画配置。</param>
- /// <returns>播放的动画状态。</returns>
- /// <see cref="DragonBones.AnimationConfig"/>
- /// <beta/>
- /// <version>DragonBones 5.0</version>
- /// <language>zh_CN</language>
- public AnimationState PlayConfig(AnimationConfig animationConfig)
- {
- var animationName = animationConfig.animation;
- if (!(this._animations.ContainsKey(animationName)))
- {
- Helper.Assert(false,
- "Non-existent animation.\n" +
- "DragonBones name: " + this._armature.armatureData.parent.name +
- "Armature name: " + this._armature.name +
- "Animation name: " + animationName
- );
- return null;
- }
- var animationData = this._animations[animationName];
- if (animationConfig.fadeOutMode == AnimationFadeOutMode.Single)
- {
- foreach (var aniState in this._animationStates)
- {
- if (aniState._animationData == animationData)
- {
- return aniState;
- }
- }
- }
- if (this._animationStates.Count == 0)
- {
- animationConfig.fadeInTime = 0.0f;
- }
- else if (animationConfig.fadeInTime < 0.0f)
- {
- animationConfig.fadeInTime = animationData.fadeInTime;
- }
- if (animationConfig.fadeOutTime < 0.0f)
- {
- animationConfig.fadeOutTime = animationConfig.fadeInTime;
- }
- if (animationConfig.timeScale <= -100.0f)
- {
- animationConfig.timeScale = 1.0f / animationData.scale;
- }
- if (animationData.frameCount > 1)
- {
- if (animationConfig.position < 0.0f)
- {
- animationConfig.position %= animationData.duration;
- animationConfig.position = animationData.duration - animationConfig.position;
- }
- else if (animationConfig.position == animationData.duration)
- {
- animationConfig.position -= 0.000001f; // Play a little time before end.
- }
- else if (animationConfig.position > animationData.duration)
- {
- animationConfig.position %= animationData.duration;
- }
- if (animationConfig.duration > 0.0f && animationConfig.position + animationConfig.duration > animationData.duration)
- {
- animationConfig.duration = animationData.duration - animationConfig.position;
- }
- if (animationConfig.playTimes < 0)
- {
- animationConfig.playTimes = (int)animationData.playTimes;
- }
- }
- else
- {
- animationConfig.playTimes = 1;
- animationConfig.position = 0.0f;
- if (animationConfig.duration > 0.0)
- {
- animationConfig.duration = 0.0f;
- }
- }
- if (animationConfig.duration == 0.0f)
- {
- animationConfig.duration = -1.0f;
- }
- this._FadeOut(animationConfig);
- var animationState = BaseObject.BorrowObject<AnimationState>();
- animationState.Init(this._armature, animationData, animationConfig);
- this._animationDirty = true;
- this._armature._cacheFrameIndex = -1;
- if (this._animationStates.Count > 0)
- {
- var added = false;
- for (int i = 0, l = this._animationStates.Count; i < l; ++i)
- {
- if (animationState.layer > this._animationStates[i].layer)
- {
- added = true;
- this._animationStates.Insert(i, animationState);
- break;
- }
- else if (i != l - 1 && animationState.layer > this._animationStates[i + 1].layer)
- {
- added = true;
- this._animationStates.Insert(i + 1, animationState);
- break;
- }
- }
- if (!added)
- {
- this._animationStates.Add(animationState);
- }
- }
- else
- {
- this._animationStates.Add(animationState);
- }
- // Child armature play same name animation.
- foreach (var slot in this._armature.GetSlots())
- {
- var childArmature = slot.childArmature;
- if (childArmature != null &&
- childArmature.inheritAnimation &&
- childArmature.animation.HasAnimation(animationName) &&
- childArmature.animation.GetState(animationName) == null)
- {
- childArmature.animation.FadeIn(animationName); //
- }
- }
- if (!this._lockUpdate)
- {
- if (animationConfig.fadeInTime <= 0.0f)
- {
- // Blend animation state, update armature.
- this._armature.AdvanceTime(0.0f);
- }
- }
- this._lastAnimationState = animationState;
- return animationState;
- }
- /// <summary>
- /// - Play a specific animation.
- /// </summary>
- /// <param name="animationName">- The name of animation data. (If not set, The default animation will be played, or resume the animation playing from pause status, or replay the last playing animation)</param>
- /// <param name="playTimes">- Playing repeat times. [-1: Use default value of the animation data, 0: No end loop playing, [1~N]: Repeat N times] (default: -1)</param>
- /// <returns>The playing animation state.</returns>
- /// <example>
- /// TypeScript style, for reference only.
- /// <pre>
- /// armature.animation.play("walk");
- /// </pre>
- /// </example>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 播放指定动画。
- /// </summary>
- /// <param name="animationName">- 动画数据名称。 (如果未设置,则播放默认动画,或将暂停状态切换为播放状态,或重新播放之前播放的动画)</param>
- /// <param name="playTimes">- 循环播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1)</param>
- /// <returns>播放的动画状态。</returns>
- /// <example>
- /// TypeScript 风格,仅供参考。
- /// <pre>
- /// armature.animation.play("walk");
- /// </pre>
- /// </example>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public AnimationState Play(string animationName = null, int playTimes = -1)
- {
- this._animationConfig.Clear();
- this._animationConfig.resetToPose = true;
- this._animationConfig.playTimes = playTimes;
- this._animationConfig.fadeInTime = 0.0f;
- this._animationConfig.animation = animationName != null ? animationName : "";
- if (animationName != null && animationName.Length > 0)
- {
- this.PlayConfig(this._animationConfig);
- }
- else if (this._lastAnimationState == null)
- {
- var defaultAnimation = this._armature.armatureData.defaultAnimation;
- if (defaultAnimation != null)
- {
- this._animationConfig.animation = defaultAnimation.name;
- this.PlayConfig(this._animationConfig);
- }
- }
- else if (!this._lastAnimationState.isPlaying && !this._lastAnimationState.isCompleted)
- {
- this._lastAnimationState.Play();
- }
- else
- {
- this._animationConfig.animation = this._lastAnimationState.name;
- this.PlayConfig(this._animationConfig);
- }
- return this._lastAnimationState;
- }
- /// <summary>
- /// - Fade in a specific animation.
- /// </summary>
- /// <param name="animationName">- The name of animation data.</param>
- /// <param name="fadeInTime">- The fade in time. [-1: Use the default value of animation data, [0~N]: The fade in time (In seconds)] (Default: -1)</param>
- /// <param name="playTimes">- playing repeat times. [-1: Use the default value of animation data, 0: No end loop playing, [1~N]: Repeat N times] (Default: -1)</param>
- /// <param name="layer">- The blending layer, the animation states in high level layer will get the blending weights with high priority, when the total blending weights are more than 1.0, there will be no more weights can be allocated to the other animation states. (Default: 0)</param>
- /// <param name="group">- The blending group name, it is typically used to specify the substitution of multiple animation states blending. (Default: null)</param>
- /// <param name="fadeOutMode">- The fade out mode, which is typically used to specify alternate mode of multiple animation states blending. (Default: AnimationFadeOutMode.SameLayerAndGroup)</param>
- /// <returns>The playing animation state.</returns>
- /// <example>
- /// TypeScript style, for reference only.
- /// <pre>
- /// armature.animation.fadeIn("walk", 0.3, 0, 0, "normalGroup").resetToPose = false;
- /// armature.animation.fadeIn("attack", 0.3, 1, 0, "attackGroup").resetToPose = false;
- /// </pre>
- /// </example>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 淡入播放指定的动画。
- /// </summary>
- /// <param name="animationName">- 动画数据名称。</param>
- /// <param name="fadeInTime">- 淡入时间。 [-1: 使用动画数据默认值, [0~N]: 淡入时间 (以秒为单位)] (默认: -1)</param>
- /// <param name="playTimes">- 播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1)</param>
- /// <param name="layer">- 混合图层,图层高的动画状态会优先获取混合权重,当混合权重分配总和超过 1.0 时,剩余的动画状态将不能再获得权重分配。 (默认: 0)</param>
- /// <param name="group">- 混合组名称,该属性通常用来指定多个动画状态混合时的相互替换关系。 (默认: null)</param>
- /// <param name="fadeOutMode">- 淡出模式,该属性通常用来指定多个动画状态混合时的相互替换模式。 (默认: AnimationFadeOutMode.SameLayerAndGroup)</param>
- /// <returns>播放的动画状态。</returns>
- /// <example>
- /// TypeScript 风格,仅供参考。
- /// <pre>
- /// armature.animation.fadeIn("walk", 0.3, 0, 0, "normalGroup").resetToPose = false;
- /// armature.animation.fadeIn("attack", 0.3, 1, 0, "attackGroup").resetToPose = false;
- /// </pre>
- /// </example>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public AnimationState FadeIn(string animationName, float fadeInTime = -1.0f, int playTimes = -1,
- int layer = 0, string group = null,
- AnimationFadeOutMode fadeOutMode = AnimationFadeOutMode.SameLayerAndGroup)
- {
- this._animationConfig.Clear();
- this._animationConfig.fadeOutMode = fadeOutMode;
- this._animationConfig.playTimes = playTimes;
- this._animationConfig.layer = layer;
- this._animationConfig.fadeInTime = fadeInTime;
- this._animationConfig.animation = animationName;
- this._animationConfig.group = group != null ? group : "";
- return this.PlayConfig(this._animationConfig);
- }
- /// <summary>
- /// - Play a specific animation from the specific time.
- /// </summary>
- /// <param name="animationName">- The name of animation data.</param>
- /// <param name="time">- The start time point of playing. (In seconds)</param>
- /// <param name="playTimes">- Playing repeat times. [-1: Use the default value of animation data, 0: No end loop playing, [1~N]: Repeat N times] (Default: -1)</param>
- /// <returns>The played animation state.</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 从指定时间开始播放指定的动画。
- /// </summary>
- /// <param name="animationName">- 动画数据名称。</param>
- /// <param name="time">- 播放开始的时间。 (以秒为单位)</param>
- /// <param name="playTimes">- 循环播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1)</param>
- /// <returns>播放的动画状态。</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public AnimationState GotoAndPlayByTime(string animationName, float time = 0.0f, int playTimes = -1)
- {
- this._animationConfig.Clear();
- this._animationConfig.resetToPose = true;
- this._animationConfig.playTimes = playTimes;
- this._animationConfig.position = time;
- this._animationConfig.fadeInTime = 0.0f;
- this._animationConfig.animation = animationName;
- return this.PlayConfig(this._animationConfig);
- }
- /// <summary>
- /// - Play a specific animation from the specific frame.
- /// </summary>
- /// <param name="animationName">- The name of animation data.</param>
- /// <param name="frame">- The start frame of playing.</param>
- /// <param name="playTimes">- Playing repeat times. [-1: Use the default value of animation data, 0: No end loop playing, [1~N]: Repeat N times] (Default: -1)</param>
- /// <returns>The played animation state.</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 从指定帧开始播放指定的动画。
- /// </summary>
- /// <param name="animationName">- 动画数据名称。</param>
- /// <param name="frame">- 播放开始的帧数。</param>
- /// <param name="playTimes">- 播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1)</param>
- /// <returns>播放的动画状态。</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public AnimationState GotoAndPlayByFrame(string animationName, uint frame = 0, int playTimes = -1)
- {
- this._animationConfig.Clear();
- this._animationConfig.resetToPose = true;
- this._animationConfig.playTimes = playTimes;
- this._animationConfig.fadeInTime = 0.0f;
- this._animationConfig.animation = animationName;
- var animationData = this._animations.ContainsKey(animationName) ? this._animations[animationName] : null;
- if (animationData != null)
- {
- this._animationConfig.position = animationData.duration * frame / animationData.frameCount;
- }
- return this.PlayConfig(this._animationConfig);
- }
- /// <summary>
- /// - Play a specific animation from the specific progress.
- /// </summary>
- /// <param name="animationName">- The name of animation data.</param>
- /// <param name="progress">- The start progress value of playing.</param>
- /// <param name="playTimes">- Playing repeat times. [-1: Use the default value of animation data, 0: No end loop playing, [1~N]: Repeat N times] (Default: -1)</param>
- /// <returns>The played animation state.</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 从指定进度开始播放指定的动画。
- /// </summary>
- /// <param name="animationName">- 动画数据名称。</param>
- /// <param name="progress">- 开始播放的进度。</param>
- /// <param name="playTimes">- 播放次数。 [-1: 使用动画数据默认值, 0: 无限循环播放, [1~N]: 循环播放 N 次] (默认: -1)</param>
- /// <returns>播放的动画状态。</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public AnimationState GotoAndPlayByProgress(string animationName, float progress = 0.0f, int playTimes = -1)
- {
- this._animationConfig.Clear();
- this._animationConfig.resetToPose = true;
- this._animationConfig.playTimes = playTimes;
- this._animationConfig.fadeInTime = 0.0f;
- this._animationConfig.animation = animationName;
- var animationData = this._animations.ContainsKey(animationName) ? this._animations[animationName] : null;
- if (animationData != null)
- {
- this._animationConfig.position = animationData.duration * (progress > 0.0f ? progress : 0.0f);
- }
- return this.PlayConfig(this._animationConfig);
- }
- /// <summary>
- /// - Stop a specific animation at the specific time.
- /// </summary>
- /// <param name="animationName">- The name of animation data.</param>
- /// <param name="time">- The stop time. (In seconds)</param>
- /// <returns>The played animation state.</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 在指定时间停止指定动画播放
- /// </summary>
- /// <param name="animationName">- 动画数据名称。</param>
- /// <param name="time">- 停止的时间。 (以秒为单位)</param>
- /// <returns>播放的动画状态。</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public AnimationState GotoAndStopByTime(string animationName, float time = 0.0f)
- {
- var animationState = this.GotoAndPlayByTime(animationName, time, 1);
- if (animationState != null)
- {
- animationState.Stop();
- }
- return animationState;
- }
- /// <summary>
- /// - Stop a specific animation at the specific frame.
- /// </summary>
- /// <param name="animationName">- The name of animation data.</param>
- /// <param name="frame">- The stop frame.</param>
- /// <returns>The played animation state.</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 在指定帧停止指定动画的播放
- /// </summary>
- /// <param name="animationName">- 动画数据名称。</param>
- /// <param name="frame">- 停止的帧数。</param>
- /// <returns>播放的动画状态。</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public AnimationState GotoAndStopByFrame(string animationName, uint frame = 0)
- {
- var animationState = this.GotoAndPlayByFrame(animationName, frame, 1);
- if (animationState != null)
- {
- animationState.Stop();
- }
- return animationState;
- }
- /// <summary>
- /// - Stop a specific animation at the specific progress.
- /// </summary>
- /// <param name="animationName">- The name of animation data.</param>
- /// <param name="progress">- The stop progress value.</param>
- /// <returns>The played animation state.</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 在指定的进度停止指定的动画播放。
- /// </summary>
- /// <param name="animationName">- 动画数据名称。</param>
- /// <param name="progress">- 停止进度。</param>
- /// <returns>播放的动画状态。</returns>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public AnimationState GotoAndStopByProgress(string animationName, float progress = 0.0f)
- {
- var animationState = this.GotoAndPlayByProgress(animationName, progress, 1);
- if (animationState != null)
- {
- animationState.Stop();
- }
- return animationState;
- }
- /// <summary>
- /// - Get a specific animation state.
- /// </summary>
- /// <param name="animationName">- The name of animation state.</param>
- /// <example>
- /// TypeScript style, for reference only.
- /// <pre>
- /// armature.animation.play("walk");
- /// let walkState = armature.animation.getState("walk");
- /// walkState.timeScale = 0.5;
- /// </pre>
- /// </example>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 获取指定的动画状态
- /// </summary>
- /// <param name="animationName">- 动画状态名称。</param>
- /// <example>
- /// TypeScript 风格,仅供参考。
- /// <pre>
- /// armature.animation.play("walk");
- /// let walkState = armature.animation.getState("walk");
- /// walkState.timeScale = 0.5;
- /// </pre>
- /// </example>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public AnimationState GetState(string animationName)
- {
- var i = this._animationStates.Count;
- while (i-- > 0)
- {
- var animationState = this._animationStates[i];
- if (animationState.name == animationName)
- {
- return animationState;
- }
- }
- return null;
- }
- /// <summary>
- /// - Check whether a specific animation data is included.
- /// </summary>
- /// <param name="animationName">- The name of animation data.</param>
- /// <see cref="DragonBones.AnimationData"/>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 检查是否包含指定的动画数据
- /// </summary>
- /// <param name="animationName">- 动画数据名称。</param>
- /// <see cref="DragonBones.AnimationData"/>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public bool HasAnimation(string animationName)
- {
- return this._animations.ContainsKey(animationName);
- }
- /// <summary>
- /// - Get all the animation states.
- /// </summary>
- /// <version>DragonBones 5.1</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 获取所有的动画状态
- /// </summary>
- /// <version>DragonBones 5.1</version>
- /// <language>zh_CN</language>
- public List<AnimationState> GetStates()
- {
- return this._animationStates;
- }
- /// <summary>
- /// - Check whether there is an animation state is playing
- /// </summary>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 检查是否有动画状态正在播放
- /// </summary>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public bool isPlaying
- {
- get
- {
- foreach (var animationState in this._animationStates)
- {
- if (animationState.isPlaying)
- {
- return true;
- }
- }
- return false;
- }
- }
- /// <summary>
- /// - Check whether all the animation states' playing were finished.
- /// </summary>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 检查是否所有的动画状态均已播放完毕。
- /// </summary>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public bool isCompleted
- {
- get
- {
- foreach (var animationState in this._animationStates)
- {
- if (!animationState.isCompleted)
- {
- return false;
- }
- }
- return this._animationStates.Count > 0;
- }
- }
- /// <summary>
- /// - The name of the last playing animation state.
- /// </summary>
- /// <see cref="lastAnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 上一个播放的动画状态名称
- /// </summary>
- /// <see cref="lastAnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public string lastAnimationName
- {
- get { return this._lastAnimationState != null ? this._lastAnimationState.name : ""; }
- }
- /// <summary>
- /// - The name of all animation data
- /// </summary>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 所有动画数据的名称
- /// </summary>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public List<string> animationNames
- {
- get { return this._animationNames; }
- }
- /// <summary>
- /// - All animation data.
- /// </summary>
- /// <version>DragonBones 4.5</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 所有的动画数据。
- /// </summary>
- /// <version>DragonBones 4.5</version>
- /// <language>zh_CN</language>
- public Dictionary<string, AnimationData> animations
- {
- get { return this._animations; }
- set
- {
- if (this._animations == value)
- {
- return;
- }
- this._animationNames.Clear();
- this._animations.Clear();
- foreach (var k in value)
- {
- this._animationNames.Add(k.Key);
- this._animations[k.Key] = value[k.Key];
- }
- }
- }
- /// <summary>
- /// - An AnimationConfig instance that can be used quickly.
- /// </summary>
- /// <see cref="DragonBones.AnimationConfig"/>
- /// <version>DragonBones 5.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 一个可以快速使用的动画配置实例。
- /// </summary>
- /// <see cref="DragonBones.AnimationConfig"/>
- /// <version>DragonBones 5.0</version>
- /// <language>zh_CN</language>
- public AnimationConfig animationConfig
- {
- get
- {
- this._animationConfig.Clear();
- return this._animationConfig;
- }
- }
- /// <summary>
- /// - The last playing animation state
- /// </summary>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>en_US</language>
- /// <summary>
- /// - 上一个播放的动画状态
- /// </summary>
- /// <see cref="DragonBones.AnimationState"/>
- /// <version>DragonBones 3.0</version>
- /// <language>zh_CN</language>
- public AnimationState lastAnimationState
- {
- get { return this._lastAnimationState; }
- }
- }
- }
|