using UnityEngine; using System; using Cinemachine.Utility; namespace Cinemachine { /// /// Interface representing something that can be used as a vcam target. /// It has a transform, a bounding box, and a bounding sphere. /// public interface ICinemachineTargetGroup { /// /// Get the MonoBehaviour's Transform /// Transform Transform { get; } /// /// The axis-aligned bounding box of the group, computed using the targets positions and radii /// Bounds BoundingBox { get; } /// /// The bounding sphere of the group, computed using the targets positions and radii /// BoundingSphere Sphere { get; } /// /// Returns true if the group has no non-zero-weight members /// bool IsEmpty { get; } /// The axis-aligned bounding box of the group, in a specific reference frame /// The frame of reference in which to compute the bounding box /// The axis-aligned bounding box of the group, in the desired frame of reference Bounds GetViewSpaceBoundingBox(Matrix4x4 observer); /// /// Get the local-space angular bounds of the group, from a spoecific point of view. /// Also returns the z depth range of the members. /// /// Point of view from which to calculate, and in whose /// space the return values are /// The lower bound of the screen angles of the members (degrees) /// The upper bound of the screen angles of the members (degrees) /// The min and max depth values of the members, relative to the observer void GetViewSpaceAngularBounds( Matrix4x4 observer, out Vector2 minAngles, out Vector2 maxAngles, out Vector2 zRange); } /// Defines a group of target objects, each with a radius and a weight. /// The weight is used when calculating the average position of the target group. /// Higher-weighted members of the group will count more. /// The bounding box is calculated by taking the member positions, weight, /// and radii into account. /// [DocumentationSorting(DocumentationSortingAttribute.Level.UserRef)] [AddComponentMenu("Cinemachine/CinemachineTargetGroup")] [SaveDuringPlay] [ExecuteAlways] [DisallowMultipleComponent] [HelpURL(Documentation.BaseURL + "manual/CinemachineTargetGroup.html")] public class CinemachineTargetGroup : MonoBehaviour, ICinemachineTargetGroup { /// Holds the information that represents a member of the group [DocumentationSorting(DocumentationSortingAttribute.Level.UserRef)] [Serializable] public struct Target { /// The target objects. This object's position and orientation will contribute to the /// group's average position and orientation, in accordance with its weight [Tooltip("The target objects. This object's position and orientation will contribute to the " + "group's average position and orientation, in accordance with its weight")] public Transform target; /// How much weight to give the target when averaging. Cannot be negative [Tooltip("How much weight to give the target when averaging. Cannot be negative")] public float weight; /// The radius of the target, used for calculating the bounding box. Cannot be negative [Tooltip("The radius of the target, used for calculating the bounding box. Cannot be negative")] public float radius; } /// How the group's position is calculated [DocumentationSorting(DocumentationSortingAttribute.Level.UserRef)] public enum PositionMode { ///Group position will be the center of the group's axis-aligned bounding box GroupCenter, /// Group position will be the weighted average of the positions of the members GroupAverage } /// How the group's position is calculated [Tooltip("How the group's position is calculated. Select GroupCenter for the center of the bounding box, " + "and GroupAverage for a weighted average of the positions of the members.")] public PositionMode m_PositionMode = PositionMode.GroupCenter; /// How the group's orientation is calculated [DocumentationSorting(DocumentationSortingAttribute.Level.UserRef)] public enum RotationMode { /// Manually set in the group's transform Manual, /// Weighted average of the orientation of its members. GroupAverage } /// How the group's orientation is calculated [Tooltip("How the group's rotation is calculated. Select Manual to use the value in the group's transform, " + "and GroupAverage for a weighted average of the orientations of the members.")] public RotationMode m_RotationMode = RotationMode.Manual; /// This enum defines the options available for the update method. public enum UpdateMethod { /// Updated in normal MonoBehaviour Update. Update, /// Updated in sync with the Physics module, in FixedUpdate FixedUpdate, /// Updated in MonoBehaviour LateUpdate. LateUpdate }; /// When to update the group's transform based on the position of the group members [Tooltip("When to update the group's transform based on the position of the group members")] public UpdateMethod m_UpdateMethod = UpdateMethod.LateUpdate; /// The target objects, together with their weights and radii, that will /// contribute to the group's average position, orientation, and size [NoSaveDuringPlay] [Tooltip("The target objects, together with their weights and radii, that will contribute to the " + "group's average position, orientation, and size.")] public Target[] m_Targets = new Target[0]; /// /// Get the MonoBehaviour's Transform /// public Transform Transform { get { return transform; } } /// The axis-aligned bounding box of the group, computed using the /// targets positions and radii public Bounds BoundingBox { get; private set; } /// The bounding sphere of the group, computed using the /// targets positions and radii public BoundingSphere Sphere { get => m_BoundingSphere; } /// Return true if there are no members with weight > 0 public bool IsEmpty { get { for (int i = 0; i < m_Targets.Length; ++i) if (m_Targets[i].target != null && m_Targets[i].weight > UnityVectorExtensions.Epsilon) return false; return true; } } /// Add a member to the group /// The member to add /// The new member's weight /// The new member's radius public void AddMember(Transform t, float weight, float radius) { int index = 0; if (m_Targets == null) m_Targets = new Target[1]; else { index = m_Targets.Length; var oldTargets = m_Targets; m_Targets = new Target[index + 1]; Array.Copy(oldTargets, m_Targets, index); } m_Targets[index].target = t; m_Targets[index].weight = weight; m_Targets[index].radius = radius; } /// Remove a member from the group /// The member to remove public void RemoveMember(Transform t) { int index = FindMember(t); if (index >= 0) { var oldTargets = m_Targets; m_Targets = new Target[m_Targets.Length - 1]; if (index > 0) Array.Copy(oldTargets, m_Targets, index); if (index < oldTargets.Length - 1) Array.Copy(oldTargets, index + 1, m_Targets, index, oldTargets.Length - index - 1); } } /// Locate a member's index in the group. /// The member to find /// Member index, or -1 if not a member public int FindMember(Transform t) { if (m_Targets != null) { for (int i = m_Targets.Length-1; i >= 0; --i) if (m_Targets[i].target == t) return i; } return -1; } /// /// Get the bounding sphere of a group memebr, with the weight taken into account. /// As the member's weight goes to 0, the position lerps to the group average position. /// /// Member index /// The weighted bounding sphere public BoundingSphere GetWeightedBoundsForMember(int index) { if (index < 0 || index >= m_Targets.Length) return Sphere; return WeightedMemberBounds(m_Targets[index], m_AveragePos, m_MaxWeight); } /// The axis-aligned bounding box of the group, in a specific reference frame /// The frame of reference in which to compute the bounding box /// The axis-aligned bounding box of the group, in the desired frame of reference public Bounds GetViewSpaceBoundingBox(Matrix4x4 observer) { Matrix4x4 inverseView = observer.inverse; Bounds b = new Bounds(inverseView.MultiplyPoint3x4(m_AveragePos), Vector3.zero); for (int i = 0; i < m_Targets.Length; ++i) { BoundingSphere s = GetWeightedBoundsForMember(i); s.position = inverseView.MultiplyPoint3x4(s.position); b.Encapsulate(new Bounds(s.position, s.radius * 2 * Vector3.one)); } return b; } private static BoundingSphere WeightedMemberBounds( Target t, Vector3 avgPos, float maxWeight) { float w = 0; Vector3 pos = avgPos; if (t.target != null) { pos = TargetPositionCache.GetTargetPosition(t.target); w = Mathf.Max(0, t.weight); if (maxWeight > UnityVectorExtensions.Epsilon && w < maxWeight) w /= maxWeight; else w = 1; } return new BoundingSphere(Vector3.Lerp(avgPos, pos, w), t.radius * w); } private float m_MaxWeight; private Vector3 m_AveragePos; private BoundingSphere m_BoundingSphere; /// /// Update the group's transform right now, depending on the transforms of the members. /// Normally this is called automatically by Update() or LateUpdate(). /// public void DoUpdate() { m_AveragePos = CalculateAveragePosition(out m_MaxWeight); BoundingBox = CalculateBoundingBox(m_AveragePos, m_MaxWeight); m_BoundingSphere = CalculateBoundingSphere(m_MaxWeight); switch (m_PositionMode) { case PositionMode.GroupCenter: transform.position = Sphere.position; break; case PositionMode.GroupAverage: transform.position = m_AveragePos; break; } switch (m_RotationMode) { case RotationMode.Manual: break; case RotationMode.GroupAverage: transform.rotation = CalculateAverageOrientation(); break; } } /// /// Use Ritter's algorithm for calculating an approximate bounding sphere /// /// The maximum weight of members in the group /// An approximate bounding sphere. Will be slightly large. BoundingSphere CalculateBoundingSphere(float maxWeight) { var sphere = new BoundingSphere { position = transform.position }; bool gotOne = false; for (int i = 0; i < m_Targets.Length; ++i) { if (m_Targets[i].target == null || m_Targets[i].weight < UnityVectorExtensions.Epsilon) continue; BoundingSphere s = WeightedMemberBounds(m_Targets[i], m_AveragePos, maxWeight); if (!gotOne) { gotOne = true; sphere = s; continue; } var distance = (s.position - sphere.position).magnitude + s.radius; if (distance > sphere.radius) { // Point is outside current sphere: update sphere.radius = (sphere.radius + distance) * 0.5f; sphere.position = (sphere.radius * sphere.position + (distance - sphere.radius) * s.position) / distance; } } return sphere; } Vector3 CalculateAveragePosition(out float maxWeight) { var pos = Vector3.zero; float weight = 0; maxWeight = 0; for (int i = 0; i < m_Targets.Length; ++i) { if (m_Targets[i].target != null) { weight += m_Targets[i].weight; pos += TargetPositionCache.GetTargetPosition(m_Targets[i].target) * m_Targets[i].weight; maxWeight = Mathf.Max(maxWeight, m_Targets[i].weight); } } if (weight > UnityVectorExtensions.Epsilon) pos /= weight; else pos = transform.position; return pos; } Quaternion CalculateAverageOrientation() { if (m_MaxWeight <= UnityVectorExtensions.Epsilon) { return transform.rotation; } float weightedAverage = 0; Quaternion r = Quaternion.identity; for (int i = 0; i < m_Targets.Length; ++i) { if (m_Targets[i].target != null) { var scaledWeight = m_Targets[i].weight / m_MaxWeight; var rot = TargetPositionCache.GetTargetRotation(m_Targets[i].target); r *= Quaternion.Slerp(Quaternion.identity, rot, scaledWeight); weightedAverage += scaledWeight; } } return Quaternion.Slerp(Quaternion.identity, r, 1.0f / weightedAverage); } Bounds CalculateBoundingBox(Vector3 avgPos, float maxWeight) { Bounds b = new Bounds(avgPos, Vector3.zero); if (maxWeight > UnityVectorExtensions.Epsilon) { for (int i = 0; i < m_Targets.Length; ++i) { if (m_Targets[i].target != null) { var s = WeightedMemberBounds(m_Targets[i], m_AveragePos, maxWeight); b.Encapsulate(new Bounds(s.position, s.radius * 2 * Vector3.one)); } } } return b; } private void OnValidate() { for (int i = 0; i < m_Targets.Length; ++i) { m_Targets[i].weight = Mathf.Max(0, m_Targets[i].weight); m_Targets[i].radius = Mathf.Max(0, m_Targets[i].radius); } } void FixedUpdate() { if (m_UpdateMethod == UpdateMethod.FixedUpdate) DoUpdate(); } void Update() { if (!Application.isPlaying || m_UpdateMethod == UpdateMethod.Update) DoUpdate(); } void LateUpdate() { if (m_UpdateMethod == UpdateMethod.LateUpdate) DoUpdate(); } /// /// Get the local-space angular bounds of the group, from a spoecific point of view. /// Also returns the z depth range of the members. /// /// Point of view from which to calculate, and in whose /// space the return values are /// The lower bound of the screen angles of the members (degrees) /// The upper bound of the screen angles of the members (degrees) /// The min and max depth values of the members, relative to the observer public void GetViewSpaceAngularBounds( Matrix4x4 observer, out Vector2 minAngles, out Vector2 maxAngles, out Vector2 zRange) { zRange = Vector2.zero; Matrix4x4 inverseView = observer.inverse; Bounds b = new Bounds(); bool haveOne = false; for (int i = 0; i < m_Targets.Length; ++i) { BoundingSphere s = GetWeightedBoundsForMember(i); Vector3 p = inverseView.MultiplyPoint3x4(s.position); if (p.z < UnityVectorExtensions.Epsilon) continue; // behind us var r = s.radius / p.z; var r2 = new Vector3(r, r, 0); var p2 = p / p.z; if (!haveOne) { b.center = p2; b.extents = r2; zRange = new Vector2(p.z - s.radius, p.z + s.radius); haveOne = true; } else { b.Encapsulate(p2 + r2); b.Encapsulate(p2 - r2); zRange.x = Mathf.Min(zRange.x, p.z - s.radius); zRange.y = Mathf.Max(zRange.y, p.z + s.radius); } } // Don't need the high-precision versions of SignedAngle var pMin = b.min; var pMax = b.max; minAngles = new Vector2( Vector3.SignedAngle(Vector3.forward, new Vector3(0, pMin.y, 1), Vector3.left), Vector3.SignedAngle(Vector3.forward, new Vector3(pMin.x, 0, 1), Vector3.up)); maxAngles = new Vector2( Vector3.SignedAngle(Vector3.forward, new Vector3(0, pMax.y, 1), Vector3.left), Vector3.SignedAngle(Vector3.forward, new Vector3(pMax.x, 0, 1), Vector3.up)); } } }