| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- using System;
- using UnityEngine;
- using Cinemachine.Utility;
- namespace Cinemachine
- {
- [Serializable]
- public struct AxisBase
- {
- /// <summary>The current value of the axis</summary>
- [NoSaveDuringPlay]
- [Tooltip("The current value of the axis.")]
- public float m_Value;
- /// <summary>The minimum value for the axis</summary>
- [Tooltip("The minimum value for the axis")]
- public float m_MinValue;
- /// <summary>The maximum value for the axis</summary>
- [Tooltip("The maximum value for the axis")]
- public float m_MaxValue;
- /// <summary>If checked, then the axis will wrap around at the min/max values, forming a loop</summary>
- [Tooltip("If checked, then the axis will wrap around at the min/max values, forming a loop")]
- public bool m_Wrap;
- public void Validate()
- {
- m_MaxValue = Mathf.Clamp(m_MaxValue, m_MinValue, m_MaxValue);
- }
- }
- [Serializable]
- public struct CinemachineInputAxisDriver
- {
- [Tooltip("Multiply the input by this amount prior to processing. Controls the input power.")]
- public float multiplier;
- [Tooltip("The amount of time in seconds it takes to accelerate to a higher speed")]
- public float accelTime;
- [Tooltip("The amount of time in seconds it takes to decelerate to a lower speed")]
- public float decelTime;
- [Tooltip("The name of this axis as specified in Unity Input manager. "
- + "Setting to an empty string will disable the automatic updating of this axis")]
- public string name;
- [NoSaveDuringPlay]
- [Tooltip("The value of the input axis. A value of 0 means no input. You can drive "
- + "this directly from a custom input system, or you can set the Axis Name and "
- + "have the value driven by the internal Input Manager")]
- public float inputValue;
- /// Internal state
- private float mCurrentSpeed;
- const float Epsilon = UnityVectorExtensions.Epsilon;
- /// Call from OnValidate: Make sure the fields are sensible
- public void Validate()
- {
- accelTime = Mathf.Max(0, accelTime);
- decelTime = Mathf.Max(0, decelTime);
- }
- public bool Update(float deltaTime, ref AxisBase axis)
- {
- if (!string.IsNullOrEmpty(name))
- {
- try { inputValue = CinemachineCore.GetInputAxis(name); }
- catch (ArgumentException) {}
- //catch (ArgumentException e) { Debug.LogError(e.ToString()); }
- }
- float input = inputValue * multiplier;
- if (deltaTime < Epsilon)
- mCurrentSpeed = 0;
- else
- {
- float speed = input / deltaTime;
- float dampTime = Mathf.Abs(speed) < Mathf.Abs(mCurrentSpeed) ? decelTime : accelTime;
- speed = mCurrentSpeed + Damper.Damp(speed - mCurrentSpeed, dampTime, deltaTime);
- mCurrentSpeed = speed;
- // Decelerate to the end points of the range if not wrapping
- float range = axis.m_MaxValue - axis.m_MinValue;
- if (!axis.m_Wrap && decelTime > Epsilon && range > Epsilon)
- {
- float v0 = ClampValue(ref axis, axis.m_Value);
- float v = ClampValue(ref axis, v0 + speed * deltaTime);
- float d = (speed > 0) ? axis.m_MaxValue - v : v - axis.m_MinValue;
- if (d < (0.1f * range) && Mathf.Abs(speed) > Epsilon)
- speed = Damper.Damp(v - v0, decelTime, deltaTime) / deltaTime;
- }
- input = speed * deltaTime;
- }
- axis.m_Value = ClampValue(ref axis, axis.m_Value + input);
- return Mathf.Abs(inputValue) > Epsilon;
- }
- float ClampValue(ref AxisBase axis, float v)
- {
- float r = axis.m_MaxValue - axis.m_MinValue;
- if (axis.m_Wrap && r > Epsilon)
- {
- v = (v - axis.m_MinValue) % r;
- v += axis.m_MinValue + ((v < 0) ? r : 0);
- }
- return Mathf.Clamp(v, axis.m_MinValue, axis.m_MaxValue);
- }
- /// <summary>
- /// Support for legacy AxisState struct
- /// </summary>
- /// <param name="deltaTime"></param>
- /// <param name="axis"></param>
- /// <returns></returns>
- public bool Update(float deltaTime, ref AxisState axis)
- {
- var a = new AxisBase
- {
- m_Value = axis.Value,
- m_MinValue = axis.m_MinValue,
- m_MaxValue = axis.m_MaxValue,
- m_Wrap = axis.m_Wrap
- };
- bool changed = Update(deltaTime, ref a);
- axis.Value = a.m_Value;
- return changed;
- }
- }
- }
|