// Animancer // https://kybernetik.com.au/animancer // Copyright 2022 Kybernetik //
using System.Collections.Generic;
using UnityEngine;
namespace Animancer
{
/// [Pro-Only]
/// A which plays a main with the
/// ability to play other individual s separately.
///
///
/// Documentation: Hybrid
///
/// https://kybernetik.com.au/animancer/api/Animancer/HybridAnimancerComponent
///
[AddComponentMenu(Strings.MenuPrefix + "Hybrid Animancer Component")]
[HelpURL(Strings.DocsURLs.APIDocumentation + "/" + nameof(HybridAnimancerComponent))]
public class HybridAnimancerComponent : NamedAnimancerComponent
{
/************************************************************************************************************************/
#region Fields and Properties
/************************************************************************************************************************/
[SerializeField, Tooltip("The main Animator Controller that this object will play")]
private ControllerTransition _Controller;
/// []
/// The transition containing the main that this object plays.
///
public ref ControllerTransition Controller => ref _Controller;
/************************************************************************************************************************/
#endregion
/************************************************************************************************************************/
#region Initialisation
/************************************************************************************************************************/
#if UNITY_EDITOR
/// [Editor-Only]
/// Sets = false by default so that will play the
/// instead of the first animation in the
/// array.
///
///
/// Called by the Unity Editor when this component is first added (in Edit Mode) and whenever the Reset command
/// is executed from its context menu.
///
protected override void Reset()
{
base.Reset();
if (Animator != null)
{
Controller = Animator.runtimeAnimatorController;
Animator.runtimeAnimatorController = null;
}
PlayAutomatically = false;
}
#endif
/************************************************************************************************************************/
///
/// Plays the if is false (otherwise it plays the
/// first animation in the array).
///
protected override void OnEnable()
{
PlayController();
base.OnEnable();
#if UNITY_ASSERTIONS
if (Animator != null && Animator.runtimeAnimatorController != null)
OptionalWarning.NativeControllerHybrid.Log($"An Animator Controller is assigned to the" +
$" {nameof(Animator)} component while also using a {nameof(HybridAnimancerComponent)}." +
$" Most likely only one of them is being used so the other should be removed." +
$" See the documentation for more information: {Strings.DocsURLs.AnimatorControllers}", this);
#endif
}
/************************************************************************************************************************/
///
public override void GatherAnimationClips(ICollection clips)
{
base.GatherAnimationClips(clips);
clips.GatherFromSource(_Controller);
}
/************************************************************************************************************************/
#endregion
/************************************************************************************************************************/
#region Animator Controller Wrappers
/************************************************************************************************************************/
///
/// Transitions to the over its specified
/// .
///
/// Returns the .
///
public ControllerState PlayController()
{
if (!_Controller.IsValid())
return null;
// Don't just return the result of Transition because it is an AnimancerState which we would need to cast.
Play(_Controller);
return _Controller.State;
}
/************************************************************************************************************************/
#region Cross Fade
/************************************************************************************************************************/
/// Starts a transition from the current state to the specified state using normalized times.
/// If `fadeDuration` is negative, it uses the .
public void CrossFade(
int stateNameHash,
float fadeDuration = ControllerState.DefaultFadeDuration,
int layer = -1,
float normalizedTime = float.NegativeInfinity)
{
fadeDuration = ControllerState.GetFadeDuration(fadeDuration);
var controllerState = PlayController();
controllerState.Playable.CrossFade(stateNameHash, fadeDuration, layer, normalizedTime);
}
/************************************************************************************************************************/
/// Starts a transition from the current state to the specified state using normalized times.
/// If `fadeDuration` is negative, it uses the .
public AnimancerState CrossFade(
string stateName,
float fadeDuration = ControllerState.DefaultFadeDuration,
int layer = -1,
float normalizedTime = float.NegativeInfinity)
{
fadeDuration = ControllerState.GetFadeDuration(fadeDuration);
if (States.TryGet(name, out var state))
{
Play(state, fadeDuration);
if (layer >= 0)
state.LayerIndex = layer;
if (normalizedTime != float.NegativeInfinity)
state.NormalizedTime = normalizedTime;
return state;
}
else
{
var controllerState = PlayController();
controllerState.Playable.CrossFade(stateName, fadeDuration, layer, normalizedTime);
return controllerState;
}
}
/************************************************************************************************************************/
/// Starts a transition from the current state to the specified state using times in seconds.
/// If `fadeDuration` is negative, it uses the .
public void CrossFadeInFixedTime(
int stateNameHash,
float fadeDuration = ControllerState.DefaultFadeDuration,
int layer = -1,
float fixedTime = 0)
{
fadeDuration = ControllerState.GetFadeDuration(fadeDuration);
var controllerState = PlayController();
controllerState.Playable.CrossFadeInFixedTime(stateNameHash, fadeDuration, layer, fixedTime);
}
/************************************************************************************************************************/
/// Starts a transition from the current state to the specified state using times in seconds.
/// If `fadeDuration` is negative, it uses the .
public AnimancerState CrossFadeInFixedTime(
string stateName,
float fadeDuration = ControllerState.DefaultFadeDuration,
int layer = -1,
float fixedTime = 0)
{
fadeDuration = ControllerState.GetFadeDuration(fadeDuration);
if (States.TryGet(name, out var state))
{
Play(state, fadeDuration);
if (layer >= 0)
state.LayerIndex = layer;
state.Time = fixedTime;
return state;
}
else
{
var controllerState = PlayController();
controllerState.Playable.CrossFadeInFixedTime(stateName, fadeDuration, layer, fixedTime);
return controllerState;
}
}
/************************************************************************************************************************/
#endregion
/************************************************************************************************************************/
#region Play
/************************************************************************************************************************/
/// Plays the specified state immediately, starting from a particular normalized time.
public void Play(
int stateNameHash,
int layer = -1,
float normalizedTime = float.NegativeInfinity)
{
var controllerState = PlayController();
controllerState.Playable.Play(stateNameHash, layer, normalizedTime);
}
/************************************************************************************************************************/
/// Plays the specified state immediately, starting from a particular normalized time.
public AnimancerState Play(
string stateName,
int layer = -1,
float normalizedTime = float.NegativeInfinity)
{
if (States.TryGet(name, out var state))
{
Play(state);
if (layer >= 0)
state.LayerIndex = layer;
if (normalizedTime != float.NegativeInfinity)
state.NormalizedTime = normalizedTime;
return state;
}
else
{
var controllerState = PlayController();
controllerState.Playable.Play(stateName, layer, normalizedTime);
return controllerState;
}
}
/************************************************************************************************************************/
/// Plays the specified state immediately, starting from a particular time (in seconds).
public void PlayInFixedTime(
int stateNameHash,
int layer = -1,
float fixedTime = 0)
{
var controllerState = PlayController();
controllerState.Playable.PlayInFixedTime(stateNameHash, layer, fixedTime);
}
/************************************************************************************************************************/
/// Plays the specified state immediately, starting from a particular time (in seconds).
public AnimancerState PlayInFixedTime(
string stateName,
int layer = -1,
float fixedTime = 0)
{
if (States.TryGet(name, out var state))
{
Play(state);
if (layer >= 0)
state.LayerIndex = layer;
state.Time = fixedTime;
return state;
}
else
{
var controllerState = PlayController();
controllerState.Playable.PlayInFixedTime(stateName, layer, fixedTime);
return controllerState;
}
}
/************************************************************************************************************************/
#endregion
/************************************************************************************************************************/
#region Parameters
/************************************************************************************************************************/
/// Gets the value of the specified boolean parameter.
public bool GetBool(int id) => _Controller.State.Playable.GetBool(id);
/// Gets the value of the specified boolean parameter.
public bool GetBool(string name) => _Controller.State.Playable.GetBool(name);
/// Sets the value of the specified boolean parameter.
public void SetBool(int id, bool value) => _Controller.State.Playable.SetBool(id, value);
/// Sets the value of the specified boolean parameter.
public void SetBool(string name, bool value) => _Controller.State.Playable.SetBool(name, value);
/// Gets the value of the specified float parameter.
public float GetFloat(int id) => _Controller.State.Playable.GetFloat(id);
/// Gets the value of the specified float parameter.
public float GetFloat(string name) => _Controller.State.Playable.GetFloat(name);
/// Sets the value of the specified float parameter.
public void SetFloat(int id, float value) => _Controller.State.Playable.SetFloat(id, value);
/// Sets the value of the specified float parameter.
public void SetFloat(string name, float value) => _Controller.State.Playable.SetFloat(name, value);
/// Gets the value of the specified integer parameter.
public int GetInteger(int id) => _Controller.State.Playable.GetInteger(id);
/// Gets the value of the specified integer parameter.
public int GetInteger(string name) => _Controller.State.Playable.GetInteger(name);
/// Sets the value of the specified integer parameter.
public void SetInteger(int id, int value) => _Controller.State.Playable.SetInteger(id, value);
/// Sets the value of the specified integer parameter.
public void SetInteger(string name, int value) => _Controller.State.Playable.SetInteger(name, value);
/// Sets the specified trigger parameter to true.
public void SetTrigger(int id) => _Controller.State.Playable.SetTrigger(id);
/// Sets the specified trigger parameter to true.
public void SetTrigger(string name) => _Controller.State.Playable.SetTrigger(name);
/// Resets the specified trigger parameter to false.
public void ResetTrigger(int id) => _Controller.State.Playable.ResetTrigger(id);
/// Resets the specified trigger parameter to false.
public void ResetTrigger(string name) => _Controller.State.Playable.ResetTrigger(name);
/// Gets the details of one of the 's parameters.
public AnimatorControllerParameter GetParameter(int index) => _Controller.State.Playable.GetParameter(index);
/// Gets the number of parameters in the .
public int GetParameterCount() => _Controller.State.Playable.GetParameterCount();
/// Indicates whether the specified parameter is controlled by an .
public bool IsParameterControlledByCurve(int id) => _Controller.State.Playable.IsParameterControlledByCurve(id);
/// Indicates whether the specified parameter is controlled by an .
public bool IsParameterControlledByCurve(string name) => _Controller.State.Playable.IsParameterControlledByCurve(name);
/************************************************************************************************************************/
#endregion
/************************************************************************************************************************/
#region Misc
/************************************************************************************************************************/
// Layers.
/************************************************************************************************************************/
/// Gets the weight of the layer at the specified index.
public float GetLayerWeight(int layerIndex) => _Controller.State.Playable.GetLayerWeight(layerIndex);
/// Sets the weight of the layer at the specified index.
public void SetLayerWeight(int layerIndex, float weight) => _Controller.State.Playable.SetLayerWeight(layerIndex, weight);
/// Gets the number of layers in the .
public int GetLayerCount() => _Controller.State.Playable.GetLayerCount();
/// Gets the index of the layer with the specified name.
public int GetLayerIndex(string layerName) => _Controller.State.Playable.GetLayerIndex(layerName);
/// Gets the name of the layer with the specified index.
public string GetLayerName(int layerIndex) => _Controller.State.Playable.GetLayerName(layerIndex);
/************************************************************************************************************************/
// States.
/************************************************************************************************************************/
/// Returns information about the current state.
public AnimatorStateInfo GetCurrentAnimatorStateInfo(int layerIndex = 0) => _Controller.State.Playable.GetCurrentAnimatorStateInfo(layerIndex);
/// Returns information about the next state being transitioned towards.
public AnimatorStateInfo GetNextAnimatorStateInfo(int layerIndex = 0) => _Controller.State.Playable.GetNextAnimatorStateInfo(layerIndex);
/// Indicates whether the specified layer contains the specified state.
public bool HasState(int layerIndex, int stateID) => _Controller.State.Playable.HasState(layerIndex, stateID);
/************************************************************************************************************************/
// Transitions.
/************************************************************************************************************************/
/// Indicates whether the specified layer is currently executing a transition.
public bool IsInTransition(int layerIndex = 0) => _Controller.State.Playable.IsInTransition(layerIndex);
/// Gets information about the current transition.
public AnimatorTransitionInfo GetAnimatorTransitionInfo(int layerIndex = 0) => _Controller.State.Playable.GetAnimatorTransitionInfo(layerIndex);
/************************************************************************************************************************/
// Clips.
/************************************************************************************************************************/
/// Gets information about the s currently being played.
public AnimatorClipInfo[] GetCurrentAnimatorClipInfo(int layerIndex = 0) => _Controller.State.Playable.GetCurrentAnimatorClipInfo(layerIndex);
/// Gets information about the s currently being played.
public void GetCurrentAnimatorClipInfo(int layerIndex, List clips) => _Controller.State.Playable.GetCurrentAnimatorClipInfo(layerIndex, clips);
/// Gets the number of s currently being played.
public int GetCurrentAnimatorClipInfoCount(int layerIndex = 0) => _Controller.State.Playable.GetCurrentAnimatorClipInfoCount(layerIndex);
/// Gets information about the s currently being transitioned towards.
public AnimatorClipInfo[] GetNextAnimatorClipInfo(int layerIndex = 0) => _Controller.State.Playable.GetNextAnimatorClipInfo(layerIndex);
/// Gets information about the s currently being transitioned towards.
public void GetNextAnimatorClipInfo(int layerIndex, List clips) => _Controller.State.Playable.GetNextAnimatorClipInfo(layerIndex, clips);
/// Gets the number of s currently being transitioned towards.
public int GetNextAnimatorClipInfoCount(int layerIndex = 0) => _Controller.State.Playable.GetNextAnimatorClipInfoCount(layerIndex);
/************************************************************************************************************************/
#endregion
/************************************************************************************************************************/
#endregion
/************************************************************************************************************************/
}
}