| | 1 | | using System.Collections.Generic; |
| | 2 | | using System.Linq; |
| | 3 | | using UnityEngine; |
| | 4 | |
|
| | 5 | | [System.Serializable] |
| | 6 | | public enum ThreatClusterStatus { UNASSIGNED, ASSIGNED, DELEGATED } |
| | 7 | |
|
| | 8 | | [System.Serializable] |
| | 9 | | public class ThreatClusterData { |
| | 10 | | private Cluster _cluster; |
| | 11 | |
|
| | 12 | | // The agent tracks the centroid of the cluster. |
| | 13 | | private Agent _agent; |
| | 14 | |
|
| | 15 | | [SerializeField] |
| 0 | 16 | | private ThreatClusterStatus _status = ThreatClusterStatus.UNASSIGNED; |
| | 17 | |
|
| | 18 | | [SerializeField] |
| 0 | 19 | | private List<Interceptor> _assignedInterceptors = new List<Interceptor>(); |
| | 20 | |
|
| 0 | 21 | | public ThreatClusterData(Cluster cluster) { |
| 0 | 22 | | _cluster = cluster; |
| 0 | 23 | | _agent = SimManager.Instance.CreateDummyAgent(cluster.Centroid(), cluster.Velocity()); |
| 0 | 24 | | } |
| | 25 | |
|
| | 26 | | public Cluster Cluster { |
| 0 | 27 | | get { return _cluster; } |
| | 28 | | } |
| | 29 | |
|
| | 30 | | public Agent Centroid { |
| 0 | 31 | | get { return _agent; } |
| | 32 | | } |
| | 33 | |
|
| | 34 | | public ThreatClusterStatus Status { |
| 0 | 35 | | get { return _status; } |
| | 36 | | } |
| | 37 | |
|
| | 38 | | public int AssignedInterceptorCount { |
| 0 | 39 | | get { return _assignedInterceptors.Count; } |
| | 40 | | } |
| | 41 | |
|
| 0 | 42 | | public void UpdateCentroid() { |
| 0 | 43 | | _agent.SetPosition(_cluster.Centroid()); |
| 0 | 44 | | _agent.SetVelocity(_cluster.Velocity()); |
| 0 | 45 | | } |
| | 46 | |
|
| 0 | 47 | | public void AssignInterceptor(Interceptor interceptor) { |
| 0 | 48 | | _status = ThreatClusterStatus.ASSIGNED; |
| 0 | 49 | | _assignedInterceptors.Add(interceptor); |
| | 50 | |
|
| | 51 | | // Assign the interceptor to all threats within the cluster. |
| 0 | 52 | | foreach (var threat in _cluster.Threats.ToList()) { |
| 0 | 53 | | threat.AddInterceptor(interceptor); |
| 0 | 54 | | } |
| 0 | 55 | | } |
| | 56 | |
|
| 0 | 57 | | public void RemoveInterceptor(Interceptor interceptor, bool delegated = false) { |
| 0 | 58 | | _assignedInterceptors.Remove(interceptor); |
| 0 | 59 | | if (AssignedInterceptorCount == 0) { |
| 0 | 60 | | _status = delegated ? ThreatClusterStatus.DELEGATED : ThreatClusterStatus.UNASSIGNED; |
| 0 | 61 | | } |
| | 62 | |
|
| | 63 | | // Remove the interceptor from all threats within the cluster. |
| 0 | 64 | | foreach (var threat in _cluster.Threats.ToList()) { |
| 0 | 65 | | threat.RemoveInterceptor(interceptor); |
| 0 | 66 | | } |
| 0 | 67 | | } |
| | 68 | | } |