|
@@ -1,8 +1,9 @@
|
|
|
-using System;
|
|
|
-using UnityEngine;
|
|
|
+using CMDType = ET.Client.AnimatorComponent.CommandType;
|
|
|
+using AniType = Mono.AnimationData.AnimationType;
|
|
|
|
|
|
namespace ET.Client
|
|
|
{
|
|
|
+ [FriendOfAttribute(typeof(GameObjectComponent))]
|
|
|
[FriendOf(typeof(AnimatorComponent))]
|
|
|
public static class AnimatorComponentSystem
|
|
|
{
|
|
@@ -29,192 +30,90 @@ namespace ET.Client
|
|
|
{
|
|
|
protected override void Destroy(AnimatorComponent self)
|
|
|
{
|
|
|
- self.animationClips = null;
|
|
|
- self.Parameter = null;
|
|
|
- self.Animator = null;
|
|
|
+ self.AniData.Animancer.Stop();
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- public static void Awake(this AnimatorComponent self)
|
|
|
+ //===AnimatorComponent 扩展方法-------
|
|
|
+ public static void AppendCommand(this AnimatorComponent self, CMDType type)
|
|
|
{
|
|
|
- Animator animator = self.GetParent<Unit>().GetComponent<GameObjectComponent>().GameObject.GetComponent<Animator>();
|
|
|
-
|
|
|
- if (animator == null)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (animator.runtimeAnimatorController == null)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (animator.runtimeAnimatorController.animationClips == null)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
- self.Animator = animator;
|
|
|
- foreach (AnimationClip animationClip in animator.runtimeAnimatorController.animationClips)
|
|
|
- {
|
|
|
- self.animationClips[animationClip.name] = animationClip;
|
|
|
- }
|
|
|
- foreach (AnimatorControllerParameter animatorControllerParameter in animator.parameters)
|
|
|
- {
|
|
|
- self.Parameter.Add(animatorControllerParameter.name);
|
|
|
- }
|
|
|
+ self.Commands.Add(new AnimatorComponent.Command(type));
|
|
|
}
|
|
|
-
|
|
|
- public static void Update(this AnimatorComponent self)
|
|
|
+ public static void AppendCommand(this AnimatorComponent self, AnimatorComponent.Command cmd)
|
|
|
{
|
|
|
- if (self.isStop)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (self.MotionType == MotionType.None)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- try
|
|
|
- {
|
|
|
- self.Animator.SetFloat("MotionSpeed", self.MontionSpeed);
|
|
|
-
|
|
|
- self.Animator.SetTrigger(self.MotionType.ToString());
|
|
|
-
|
|
|
- self.MontionSpeed = 1;
|
|
|
- self.MotionType = MotionType.None;
|
|
|
- }
|
|
|
- catch (Exception ex)
|
|
|
- {
|
|
|
- throw new Exception($"动作播放失败: {self.MotionType}", ex);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- public static bool HasParameter(this AnimatorComponent self, string parameter)
|
|
|
- {
|
|
|
- return self.Parameter.Contains(parameter);
|
|
|
- }
|
|
|
-
|
|
|
- public static void PlayInTime(this AnimatorComponent self, MotionType motionType, float time)
|
|
|
- {
|
|
|
- AnimationClip animationClip;
|
|
|
- if (!self.animationClips.TryGetValue(motionType.ToString(), out animationClip))
|
|
|
- {
|
|
|
- throw new Exception($"找不到该动作: {motionType}");
|
|
|
- }
|
|
|
-
|
|
|
- float motionSpeed = animationClip.length / time;
|
|
|
- if (motionSpeed < 0.01f || motionSpeed > 1000f)
|
|
|
- {
|
|
|
- Log.Error($"motionSpeed数值异常, {motionSpeed}, 此动作跳过");
|
|
|
- return;
|
|
|
- }
|
|
|
- self.MotionType = motionType;
|
|
|
- self.MontionSpeed = motionSpeed;
|
|
|
+ self.Commands.Add(cmd);
|
|
|
}
|
|
|
+ //^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
- public static void Play(this AnimatorComponent self, MotionType motionType, float motionSpeed = 1f)
|
|
|
- {
|
|
|
- if (!self.HasParameter(motionType.ToString()))
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
- self.MotionType = motionType;
|
|
|
- self.MontionSpeed = motionSpeed;
|
|
|
- }
|
|
|
-
|
|
|
- public static float AnimationTime(this AnimatorComponent self, MotionType motionType)
|
|
|
- {
|
|
|
- AnimationClip animationClip;
|
|
|
- if (!self.animationClips.TryGetValue(motionType.ToString(), out animationClip))
|
|
|
- {
|
|
|
- throw new Exception($"找不到该动作: {motionType}");
|
|
|
- }
|
|
|
- return animationClip.length;
|
|
|
- }
|
|
|
-
|
|
|
- public static void PauseAnimator(this AnimatorComponent self)
|
|
|
- {
|
|
|
- if (self.isStop)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
- self.isStop = true;
|
|
|
-
|
|
|
- if (self.Animator == null)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
- self.stopSpeed = self.Animator.speed;
|
|
|
- self.Animator.speed = 0;
|
|
|
- }
|
|
|
-
|
|
|
- public static void RunAnimator(this AnimatorComponent self)
|
|
|
+ public static void Awake(this AnimatorComponent self)
|
|
|
{
|
|
|
- if (!self.isStop)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- self.isStop = false;
|
|
|
+ GameObjectComponent gameObjectComponent = self.GetParent<Unit>().GetComponent<GameObjectComponent>();
|
|
|
+ self.AniData = gameObjectComponent.GameObject.GetComponent<Mono.AnimationData>();
|
|
|
|
|
|
- if (self.Animator == null)
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
- self.Animator.speed = self.stopSpeed;
|
|
|
+ self.DoingType = AniType.Dead;
|
|
|
+ self.ExeCommand(AnimatorComponent.CMDIdle);
|
|
|
}
|
|
|
|
|
|
- public static void SetBoolValue(this AnimatorComponent self, string name, bool state)
|
|
|
+ public static void Update(this AnimatorComponent self)
|
|
|
{
|
|
|
- if (!self.HasParameter(name))
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- self.Animator.SetBool(name, state);
|
|
|
+ self.ExeCommand(self.FilterCmdList());
|
|
|
}
|
|
|
|
|
|
- public static void SetFloatValue(this AnimatorComponent self, string name, float state)
|
|
|
+ //执行指令
|
|
|
+ private static void ExeCommand(this AnimatorComponent self, AnimatorComponent.Command? cmd)
|
|
|
{
|
|
|
- if (!self.HasParameter(name))
|
|
|
+ if (cmd == null) return;
|
|
|
+ var ani = cmd?.Type switch
|
|
|
{
|
|
|
- return;
|
|
|
- }
|
|
|
+ CMDType.Idle => AniType.Idle,
|
|
|
+ CMDType.Run => AniType.Run,
|
|
|
+ CMDType.StopRun => AniType.Idle,
|
|
|
+ CMDType.StopSkill => AniType.Idle,
|
|
|
+ CMDType.Skill0 => AniType.Skill0,
|
|
|
+ CMDType.Skill1 => AniType.Skill1,
|
|
|
+ CMDType.Skill2 => AniType.Skill2,
|
|
|
+ CMDType.Skill3 => AniType.Skill3,
|
|
|
+ CMDType.Dead => AniType.Dead,
|
|
|
+ _ => AniType.Idle
|
|
|
+ };
|
|
|
+ if (self.DoingType == ani) return;
|
|
|
+ self.DoingType = ani;
|
|
|
|
|
|
- self.Animator.SetFloat(name, state);
|
|
|
+ self.AniData.PlayAnimation(ani, () => {
|
|
|
+ self.DoingType = AniType.Idle;
|
|
|
+ self.AniData.PlayAnimation(AniType.Idle);
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
- public static void SetIntValue(this AnimatorComponent self, string name, int value)
|
|
|
+ //从指令队列中分析出当前需要执行的指令
|
|
|
+ private static AnimatorComponent.Command? FilterCmdList(this AnimatorComponent self)
|
|
|
{
|
|
|
- if (!self.HasParameter(name))
|
|
|
+ var cmds = self.Commands;
|
|
|
+ if (cmds.Count <= 0)
|
|
|
{
|
|
|
- return;
|
|
|
+ return null;
|
|
|
}
|
|
|
|
|
|
- self.Animator.SetInteger(name, value);
|
|
|
- }
|
|
|
-
|
|
|
- public static void SetTrigger(this AnimatorComponent self, string name)
|
|
|
- {
|
|
|
- if (!self.HasParameter(name))
|
|
|
+ var cmd = cmds[0];
|
|
|
+ for(var i=1; i<cmds.Count; i++)
|
|
|
{
|
|
|
- return;
|
|
|
+ var next = cmds[i];
|
|
|
+ if(next.Type == CMDType.StopRun && cmd.Type == CMDType.Run)
|
|
|
+ {
|
|
|
+ cmd = AnimatorComponent.CMDIdle;
|
|
|
+ }
|
|
|
+ else if(next.Type == CMDType.StopSkill && cmd.Type >= CMDType.Skill0 && cmd.Type <= CMDType.Skill3)
|
|
|
+ {
|
|
|
+ cmd = AnimatorComponent.CMDIdle;
|
|
|
+ }
|
|
|
+ else if(next.Type > cmd.Type && cmd.Type < CMDType.Skill0)
|
|
|
+ {
|
|
|
+ cmd = next;
|
|
|
+ }
|
|
|
}
|
|
|
-
|
|
|
- self.Animator.SetTrigger(name);
|
|
|
+ cmds.Clear();
|
|
|
+ return cmd;
|
|
|
}
|
|
|
|
|
|
- public static void SetAnimatorSpeed(this AnimatorComponent self, float speed)
|
|
|
- {
|
|
|
- self.stopSpeed = self.Animator.speed;
|
|
|
- self.Animator.speed = speed;
|
|
|
- }
|
|
|
-
|
|
|
- public static void ResetAnimatorSpeed(this AnimatorComponent self)
|
|
|
- {
|
|
|
- self.Animator.speed = self.stopSpeed;
|
|
|
- }
|
|
|
}
|
|
|
-}
|
|
|
+}
|