| | 1 | | using System.Collections; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Linq; |
| | 4 | | using UnityEngine; |
| | 5 | |
|
| | 6 | | // The cluster class represents a collection of game objects. |
| | 7 | | public class Cluster { |
| | 8 | | // Coordinates of the cluster. |
| 81 | 9 | | private Vector3 _coordinates = Vector3.zero; |
| | 10 | |
|
| | 11 | | // List of game objects in the cluster. |
| 81 | 12 | | private List<GameObject> _objects = new List<GameObject>(); |
| | 13 | |
|
| 24 | 14 | | public Cluster() {} |
| 72 | 15 | | public Cluster(in Vector3 coordinates) { |
| 36 | 16 | | _coordinates = coordinates; |
| 36 | 17 | | } |
| 74 | 18 | | public Cluster(in GameObject obj) { |
| 37 | 19 | | _coordinates = obj.transform.position; |
| 37 | 20 | | } |
| | 21 | |
|
| | 22 | | // Get the cluster coordinates. |
| | 23 | | public Vector3 Coordinates { |
| 1224 | 24 | | get { return _coordinates; } |
| | 25 | | } |
| | 26 | |
|
| | 27 | | // Get the list of game objects. |
| | 28 | | public IReadOnlyList<GameObject> Objects { |
| 15 | 29 | | get { return _objects; } |
| | 30 | | } |
| | 31 | |
|
| | 32 | | // Get the list of agents. |
| | 33 | | public IReadOnlyList<Agent> Agents { |
| 0 | 34 | | get { return _objects.Select(gameObject => gameObject.GetComponent<Agent>()).ToList(); } |
| | 35 | | } |
| | 36 | |
|
| | 37 | | // Get the list of interceptors. |
| | 38 | | public IReadOnlyList<Interceptor> Interceptors { |
| 0 | 39 | | get { |
| 0 | 40 | | return _objects.Select(gameObject => gameObject.GetComponent<Agent>() as Interceptor) |
| | 41 | | .ToList(); |
| 0 | 42 | | } |
| | 43 | | } |
| | 44 | |
|
| | 45 | | // Get the list of threats. |
| | 46 | | public IReadOnlyList<Threat> Threats { |
| 0 | 47 | | get { |
| 0 | 48 | | return _objects.Select(gameObject => gameObject.GetComponent<Agent>() as Threat).ToList(); |
| 0 | 49 | | } |
| | 50 | | } |
| | 51 | |
|
| | 52 | | // Return the size of the cluster. |
| 198 | 53 | | public int Size() { |
| 198 | 54 | | return _objects.Count; |
| 198 | 55 | | } |
| | 56 | |
|
| | 57 | | // Check whether the cluster is empty. |
| 132 | 58 | | public bool IsEmpty() { |
| 132 | 59 | | return Size() == 0; |
| 132 | 60 | | } |
| | 61 | |
|
| | 62 | | // Calculate the radius of the cluster. |
| 19 | 63 | | public float Radius() { |
| 19 | 64 | | if (IsEmpty()) { |
| 0 | 65 | | return 0; |
| | 66 | | } |
| | 67 | |
|
| 19 | 68 | | Vector3 centroid = Centroid(); |
| 53 | 69 | | return _objects.Max(obj => Vector3.Distance(centroid, obj.transform.position)); |
| 19 | 70 | | } |
| | 71 | |
|
| | 72 | | // Calculate the centroid of the cluster. |
| 75 | 73 | | public Vector3 Centroid() { |
| 75 | 74 | | if (IsEmpty()) { |
| 0 | 75 | | return Vector3.zero; |
| | 76 | | } |
| | 77 | |
|
| 75 | 78 | | Vector3 centroid = Vector3.zero; |
| 1011 | 79 | | foreach (var obj in _objects) { |
| 262 | 80 | | centroid += obj.transform.position; |
| 262 | 81 | | } |
| 75 | 82 | | centroid /= _objects.Count; |
| 75 | 83 | | return centroid; |
| 75 | 84 | | } |
| | 85 | |
|
| | 86 | | // Recenter the cluster's centroid to be the mean of all game objects' positions in the cluster. |
| 12 | 87 | | public void Recenter() { |
| 12 | 88 | | _coordinates = Centroid(); |
| 12 | 89 | | } |
| | 90 | |
|
| | 91 | | // Calculate the velocity of the cluster. |
| | 92 | | // The velocity is the mean velocity of all game objects. |
| 0 | 93 | | public Vector3 Velocity() { |
| 0 | 94 | | Vector3 velocity = Vector3.zero; |
| 0 | 95 | | int numObjects = 0; |
| 0 | 96 | | foreach (var obj in _objects) { |
| 0 | 97 | | if (obj.GetComponent<Rigidbody>() != null) { |
| 0 | 98 | | velocity += obj.GetComponent<Rigidbody>().linearVelocity; |
| 0 | 99 | | ++numObjects; |
| 0 | 100 | | } |
| 0 | 101 | | } |
| 0 | 102 | | return numObjects > 0 ? velocity / numObjects : Vector3.zero; |
| 0 | 103 | | } |
| | 104 | |
|
| | 105 | | // Add a game object to the cluster. |
| | 106 | | // This function does not update the centroid of the cluster. |
| 150 | 107 | | public void AddObject(in GameObject obj) { |
| 150 | 108 | | _objects.Add(obj); |
| 150 | 109 | | } |
| | 110 | |
|
| | 111 | | // Add multiple game objects to the cluster. |
| | 112 | | // This function does not update the centroid of the cluster. |
| 11 | 113 | | public void AddObjects(in IReadOnlyList<GameObject> objects) { |
| 11 | 114 | | _objects.AddRange(objects); |
| 11 | 115 | | } |
| | 116 | |
|
| | 117 | | // Merge another cluster into this one. |
| | 118 | | // This function does not update the centroid of the cluster. |
| 5 | 119 | | public void Merge(in Cluster cluster) { |
| 5 | 120 | | AddObjects(cluster.Objects); |
| 5 | 121 | | } |
| | 122 | | } |