| | 1 | | using System; |
| | 2 | | using System.Collections; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.IO; |
| | 5 | | using System.Linq; |
| | 6 | | using UnityEngine; |
| | 7 | |
|
| | 8 | | // Integrated Air Defense System. |
| | 9 | | public class IADS : MonoBehaviour { |
| 2 | 10 | | public static IADS Instance { get; private set; } |
| | 11 | |
|
| | 12 | | private const float LaunchInterceptorsPeriod = 0.4f; |
| | 13 | | private const float CheckForEscapingThreatsPeriod = 5.0f; |
| | 14 | | private const float ClusterThreatsPeriod = 2.0f; |
| | 15 | |
|
| | 16 | | // TODO(titan): Choose the CSV file based on the interceptor type. |
| 1 | 17 | | private ILaunchAnglePlanner _launchAnglePlanner = |
| | 18 | | new LaunchAngleCsvInterpolator(Path.Combine("Planning", "hydra70_launch_angle.csv")); |
| 1 | 19 | | private IAssignment _assignmentScheme = new MaxSpeedAssignment(); |
| | 20 | | private Coroutine _launchInterceptorsCoroutine; |
| | 21 | |
|
| | 22 | | [SerializeField] |
| 1 | 23 | | private List<TrackFileData> _trackFiles = new List<TrackFileData>(); |
| 1 | 24 | | private Dictionary<Agent, TrackFileData> _trackFileMap = new Dictionary<Agent, TrackFileData>(); |
| | 25 | |
|
| 1 | 26 | | private List<Interceptor> _assignmentQueue = new List<Interceptor>(); |
| 1 | 27 | | private List<Cluster> _threatClusters = new List<Cluster>(); |
| 1 | 28 | | private Dictionary<Cluster, ThreatClusterData> _threatClusterMap = |
| | 29 | | new Dictionary<Cluster, ThreatClusterData>(); |
| 1 | 30 | | private Dictionary<Interceptor, Cluster> _interceptorClusterMap = |
| | 31 | | new Dictionary<Interceptor, Cluster>(); |
| 1 | 32 | | private HashSet<Interceptor> _assignableInterceptors = new HashSet<Interceptor>(); |
| | 33 | |
|
| 1 | 34 | | private HashSet<Threat> _threatsToCluster = new HashSet<Threat>(); |
| | 35 | | private Coroutine _checkForEscapingThreatsCoroutine; |
| | 36 | | private Coroutine _clusterThreatsCoroutine; |
| | 37 | |
|
| 1 | 38 | | private int _trackFileIdTicker = 0; |
| | 39 | |
|
| 1 | 40 | | private void Awake() { |
| 2 | 41 | | if (Instance == null) { |
| 1 | 42 | | Instance = this; |
| 1 | 43 | | } else { |
| 0 | 44 | | Destroy(gameObject); |
| 0 | 45 | | } |
| 1 | 46 | | } |
| | 47 | |
|
| 0 | 48 | | private void OnDestroy() { |
| 0 | 49 | | if (_launchInterceptorsCoroutine != null) { |
| 0 | 50 | | StopCoroutine(_launchInterceptorsCoroutine); |
| 0 | 51 | | } |
| 0 | 52 | | if (_checkForEscapingThreatsCoroutine != null) { |
| 0 | 53 | | StopCoroutine(_checkForEscapingThreatsCoroutine); |
| 0 | 54 | | } |
| 0 | 55 | | if (_clusterThreatsCoroutine != null) { |
| 0 | 56 | | StopCoroutine(_clusterThreatsCoroutine); |
| 0 | 57 | | } |
| 0 | 58 | | } |
| | 59 | |
|
| 1 | 60 | | public void Start() { |
| 1 | 61 | | SimManager.Instance.OnSimulationStarted += RegisterSimulationStarted; |
| 1 | 62 | | SimManager.Instance.OnSimulationEnded += RegisterSimulationEnded; |
| 1 | 63 | | SimManager.Instance.OnNewThreat += RegisterNewThreat; |
| 1 | 64 | | SimManager.Instance.OnNewInterceptor += RegisterNewInterceptor; |
| 1 | 65 | | } |
| | 66 | |
|
| 27 | 67 | | public void LateUpdate() { |
| | 68 | | // Update the cluster centroids. |
| 1509 | 69 | | foreach (var cluster in _threatClusters) { |
| 476 | 70 | | cluster.Recenter(); |
| 476 | 71 | | _threatClusterMap[cluster].UpdateCentroid(); |
| 476 | 72 | | } |
| | 73 | |
|
| | 74 | | // Assign any interceptors that are no longer assigned to any threat. |
| 27 | 75 | | AssignInterceptorToThreat( |
| 0 | 76 | | _assignableInterceptors.Where(interceptor => !interceptor.HasTerminated()).ToList()); |
| 27 | 77 | | } |
| | 78 | |
|
| 10 | 79 | | private void RegisterSimulationStarted() { |
| 10 | 80 | | _launchInterceptorsCoroutine = |
| | 81 | | StartCoroutine(LaunchInterceptorsManager(LaunchInterceptorsPeriod)); |
| 10 | 82 | | _checkForEscapingThreatsCoroutine = |
| | 83 | | StartCoroutine(CheckForEscapingThreatsManager(CheckForEscapingThreatsPeriod)); |
| 10 | 84 | | _clusterThreatsCoroutine = StartCoroutine(ClusterThreatsManager(ClusterThreatsPeriod)); |
| 10 | 85 | | } |
| | 86 | |
|
| 10 | 87 | | private IEnumerator LaunchInterceptorsManager(float period) { |
| 20 | 88 | | while (true) { |
| | 89 | | // Check whether an interceptor should be launched at a cluster and launch it. |
| 10 | 90 | | CheckAndLaunchInterceptors(); |
| 10 | 91 | | yield return new WaitForSeconds(period); |
| 0 | 92 | | } |
| | 93 | | } |
| | 94 | |
|
| 10 | 95 | | private void CheckAndLaunchInterceptors() { |
| 30 | 96 | | foreach (var cluster in _threatClusters) { |
| | 97 | | // Check whether an interceptor has already been assigned to the cluster. |
| 0 | 98 | | if (_threatClusterMap[cluster].Status != ThreatClusterStatus.UNASSIGNED) { |
| 0 | 99 | | continue; |
| | 100 | | } |
| | 101 | |
|
| | 102 | | // Check whether all threats in the cluster have terminated. |
| 0 | 103 | | bool allTerminated = cluster.Threats.All(threat => threat.IsTerminated()); |
| 0 | 104 | | if (allTerminated) { |
| 0 | 105 | | continue; |
| | 106 | | } |
| | 107 | |
|
| | 108 | | // Create a predictor to track the cluster's centroid. |
| 0 | 109 | | IPredictor predictor = new LinearExtrapolator(_threatClusterMap[cluster].Centroid); |
| | 110 | |
|
| | 111 | | // Create a launch planner. |
| 0 | 112 | | ILaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor); |
| 0 | 113 | | LaunchPlan plan = planner.Plan(); |
| | 114 | |
|
| | 115 | | // Check whether an interceptor should be launched. |
| 0 | 116 | | if (plan.ShouldLaunch) { |
| 0 | 117 | | Debug.Log( |
| | 118 | | $"Launching a carrier interceptor at an elevation of {plan.LaunchAngle} degrees to position {plan.InterceptP |
| 0 | 119 | | UIManager.Instance.LogActionMessage( |
| | 120 | | $"[IADS] Launching a carrier interceptor at an elevation of {plan.LaunchAngle} degrees to position {plan.Int |
| | 121 | |
|
| | 122 | | // Create a new interceptor. |
| 0 | 123 | | DynamicAgentConfig config = |
| | 124 | | SimManager.Instance.SimulationConfig.interceptor_swarm_configs[0].dynamic_agent_config; |
| 0 | 125 | | InitialState initialState = new InitialState(); |
| | 126 | |
|
| | 127 | | // Set the initial position, which defaults to the origin. |
| 0 | 128 | | initialState.position = Vector3.zero; |
| | 129 | |
|
| | 130 | | // Set the initial velocity. |
| 0 | 131 | | Vector3 interceptDirection = |
| | 132 | | Coordinates3.ConvertCartesianToSpherical(plan.InterceptPosition); |
| 0 | 133 | | initialState.velocity = Coordinates3.ConvertSphericalToCartesian( |
| | 134 | | r: 1e-3f, azimuth: interceptDirection[1], elevation: plan.LaunchAngle); |
| 0 | 135 | | Interceptor interceptor = SimManager.Instance.CreateInterceptor(config, initialState); |
| | 136 | |
|
| | 137 | | // Assign the interceptor to the cluster. |
| 0 | 138 | | _interceptorClusterMap[interceptor] = cluster; |
| 0 | 139 | | interceptor.AssignTarget(_threatClusterMap[cluster].Centroid); |
| 0 | 140 | | _threatClusterMap[cluster].AssignInterceptor(interceptor); |
| | 141 | |
|
| | 142 | | // Create an interceptor swarm. |
| 0 | 143 | | SimManager.Instance.AddInterceptorSwarm(new List<Agent> { interceptor as Agent }); |
| 0 | 144 | | } |
| 0 | 145 | | } |
| 10 | 146 | | } |
| | 147 | |
|
| 0 | 148 | | public bool ShouldLaunchSubmunitions(Interceptor carrier) { |
| | 149 | | // The carrier interceptor will spawn submunitions when any target is greater than 30 degrees |
| | 150 | | // away from the carrier interceptor's current velocity or when any threat is within 500 meters |
| | 151 | | // of the interceptor. |
| | 152 | | const float SubmunitionSpawnMaxAngularDeviation = 30.0f; |
| | 153 | | const float SubmunitionSpawnMinDistanceToThreat = 500.0f; |
| | 154 | | const float SubmunitionSpawnMaxDistanceToThreat = 2000.0f; |
| | 155 | | // TODO(titan): The prediction time should be a function of the submunition characteristic, such |
| | 156 | | // as the boost time. |
| | 157 | | const float SubmunitionSpawnPredictionTime = 0.6f; |
| | 158 | |
|
| 0 | 159 | | Cluster cluster = _interceptorClusterMap[carrier]; |
| 0 | 160 | | List<Threat> threats = cluster.Threats.ToList(); |
| 0 | 161 | | Vector3 carrierPosition = carrier.GetPosition(); |
| 0 | 162 | | Vector3 carrierVelocity = carrier.GetVelocity(); |
| 0 | 163 | | foreach (var threat in threats) { |
| 0 | 164 | | IPredictor predictor = new LinearExtrapolator(threat); |
| 0 | 165 | | PredictorState predictedState = predictor.Predict(SubmunitionSpawnPredictionTime); |
| 0 | 166 | | Vector3 positionToPredictedThreat = predictedState.Position - carrierPosition; |
| 0 | 167 | | float predictedDistanceToThreat = positionToPredictedThreat.magnitude; |
| | 168 | |
|
| | 169 | | // Check whether the distance to the threat is less than the minimum distance. |
| 0 | 170 | | if (predictedDistanceToThreat < SubmunitionSpawnMinDistanceToThreat) { |
| 0 | 171 | | return true; |
| | 172 | | } |
| | 173 | |
|
| | 174 | | // Check whether the angular deviation exceeds the maximum angular deviation. |
| 0 | 175 | | float distanceDeviation = |
| | 176 | | (Vector3.ProjectOnPlane(positionToPredictedThreat, carrierVelocity)).magnitude; |
| 0 | 177 | | float angularDeviation = |
| | 178 | | Mathf.Asin(distanceDeviation / predictedDistanceToThreat) * Mathf.Rad2Deg; |
| 0 | 179 | | if (angularDeviation > SubmunitionSpawnMaxAngularDeviation && |
| 0 | 180 | | predictedDistanceToThreat < SubmunitionSpawnMaxDistanceToThreat) { |
| 0 | 181 | | return true; |
| | 182 | | } |
| 0 | 183 | | } |
| 0 | 184 | | return false; |
| 0 | 185 | | } |
| | 186 | |
|
| 0 | 187 | | public void AssignSubmunitionsToThreats(Interceptor carrier, List<Interceptor> interceptors) { |
| | 188 | | // Assign threats to the submunitions. |
| 0 | 189 | | Cluster cluster = _interceptorClusterMap[carrier]; |
| 0 | 190 | | List<Threat> threats = cluster.Threats.ToList(); |
| 0 | 191 | | IEnumerable<IAssignment.AssignmentItem> assignments = |
| | 192 | | _assignmentScheme.Assign(interceptors, threats); |
| | 193 | |
|
| | 194 | | // Mark the cluster as delegated to submunitions. |
| 0 | 195 | | _threatClusterMap[cluster].RemoveInterceptor(carrier, delegated: true); |
| | 196 | |
|
| | 197 | | // Apply the assignments to the submunitions. |
| 0 | 198 | | foreach (var assignment in assignments) { |
| 0 | 199 | | assignment.Interceptor.AssignTarget(assignment.Threat); |
| 0 | 200 | | } |
| | 201 | |
|
| | 202 | | // Check whether any submunitions were not assigned to a threat. |
| 0 | 203 | | foreach (var interceptor in interceptors) { |
| 0 | 204 | | if (!interceptor.HasAssignedTarget()) { |
| 0 | 205 | | RequestAssignInterceptorToThreat(interceptor); |
| 0 | 206 | | } |
| 0 | 207 | | } |
| 0 | 208 | | } |
| | 209 | |
|
| 0 | 210 | | public void RequestAssignInterceptorToThreat(Interceptor interceptor) { |
| 0 | 211 | | interceptor.UnassignTarget(); |
| 0 | 212 | | _assignableInterceptors.Add(interceptor); |
| 0 | 213 | | } |
| | 214 | |
|
| 27 | 215 | | private void AssignInterceptorToThreat(in IReadOnlyList<Interceptor> interceptors) { |
| 54 | 216 | | if (interceptors.Count == 0) { |
| 27 | 217 | | return; |
| | 218 | | } |
| | 219 | |
|
| | 220 | | // The threat originally assigned to the interceptor has been terminated, so assign another |
| | 221 | | // threat to the interceptor. |
| | 222 | |
|
| | 223 | | // This pulls from all available track files, not from our previously assigned cluster. |
| 0 | 224 | | List<Threat> threats = _trackFiles.Where(trackFile => trackFile.Agent is Threat) |
| 0 | 225 | | .Select(trackFile => trackFile.Agent as Threat) |
| | 226 | | .ToList(); |
| 0 | 227 | | if (threats.Count == 0) { |
| 0 | 228 | | return; |
| | 229 | | } |
| | 230 | |
|
| 0 | 231 | | IEnumerable<IAssignment.AssignmentItem> assignments = |
| | 232 | | _assignmentScheme.Assign(interceptors, threats); |
| | 233 | |
|
| | 234 | | // Apply the assignments to the submunitions. |
| 0 | 235 | | foreach (var assignment in assignments) { |
| 0 | 236 | | assignment.Interceptor.AssignTarget(assignment.Threat); |
| 0 | 237 | | _assignableInterceptors.Remove(assignment.Interceptor); |
| 0 | 238 | | } |
| 27 | 239 | | } |
| | 240 | |
|
| 755 | 241 | | public void RequestClusterThreat(Threat threat) { |
| 755 | 242 | | _threatsToCluster.Add(threat); |
| 755 | 243 | | } |
| | 244 | |
|
| 10 | 245 | | private IEnumerator CheckForEscapingThreatsManager(float period) { |
| 20 | 246 | | while (true) { |
| 10 | 247 | | yield return new WaitForSeconds(period); |
| 0 | 248 | | CheckForEscapingThreats(); |
| 0 | 249 | | } |
| | 250 | | } |
| | 251 | |
|
| 0 | 252 | | private void CheckForEscapingThreats() { |
| 0 | 253 | | List<Threat> threats = _trackFiles |
| 0 | 254 | | .Where(trackFile => trackFile.Status == TrackStatus.ASSIGNED && |
| | 255 | | trackFile.Agent is Threat) |
| 0 | 256 | | .Select(trackFile => trackFile.Agent as Threat) |
| | 257 | | .ToList(); |
| 0 | 258 | | if (threats.Count == 0) { |
| 0 | 259 | | return; |
| | 260 | | } |
| | 261 | |
|
| | 262 | | // Check whether the threats are escaping the pursuing interceptors. |
| 0 | 263 | | foreach (var threat in threats) { |
| 0 | 264 | | bool isEscaping = threat.AssignedInterceptors.All(interceptor => { |
| 0 | 265 | | Vector3 interceptorPosition = interceptor.GetPosition(); |
| 0 | 266 | | Vector3 threatPosition = threat.GetPosition(); |
| | 267 | |
|
| 0 | 268 | | float threatTimeToHit = (float)(threatPosition.magnitude / threat.GetSpeed()); |
| 0 | 269 | | float interceptorTimeToHit = |
| | 270 | | (float)((threatPosition - interceptorPosition).magnitude / interceptor.GetSpeed()); |
| 0 | 271 | | return interceptorPosition.magnitude > threatPosition.magnitude || |
| | 272 | | threatTimeToHit < interceptorTimeToHit; |
| 0 | 273 | | }); |
| 0 | 274 | | if (isEscaping) { |
| 0 | 275 | | RequestClusterThreat(threat); |
| 0 | 276 | | } |
| 0 | 277 | | } |
| 0 | 278 | | } |
| | 279 | |
|
| 10 | 280 | | private IEnumerator ClusterThreatsManager(float period) { |
| 20 | 281 | | while (true) { |
| 10 | 282 | | ClusterThreats(); |
| 10 | 283 | | yield return new WaitForSeconds(period); |
| 0 | 284 | | } |
| | 285 | | } |
| | 286 | |
|
| 10 | 287 | | private void ClusterThreats() { |
| | 288 | | // Maximum number of threats per cluster. |
| | 289 | | const int MaxSize = 7; |
| | 290 | | // Maximum cluster radius in meters. |
| | 291 | | const float MaxRadius = 500; |
| | 292 | |
|
| | 293 | | // Filter the threats. |
| 10 | 294 | | List<Threat> threats = |
| | 295 | | _threatsToCluster |
| 755 | 296 | | .Where(threat => !threat.IsTerminated() && threat.AssignedInterceptors.Count == 0) |
| | 297 | | .ToList(); |
| 10 | 298 | | if (threats.Count == 0) { |
| 0 | 299 | | return; |
| | 300 | | } |
| | 301 | |
|
| | 302 | | // Cluster threats. |
| 10 | 303 | | IClusterer clusterer = new AgglomerativeClusterer(new List<Agent>(threats), MaxSize, MaxRadius); |
| 10 | 304 | | clusterer.Cluster(); |
| 10 | 305 | | var clusters = clusterer.Clusters; |
| 10 | 306 | | Debug.Log($"Clustered {threats.Count} threats into {clusters.Count} clusters."); |
| 10 | 307 | | UIManager.Instance.LogActionMessage( |
| | 308 | | $"[IADS] Clustered {threats.Count} threats into {clusters.Count} clusters."); |
| | 309 | |
|
| 10 | 310 | | _threatClusters = clusters.ToList(); |
| 561 | 311 | | foreach (var cluster in clusters) { |
| 177 | 312 | | _threatClusterMap.Add(cluster, new ThreatClusterData(cluster)); |
| 177 | 313 | | } |
| | 314 | |
|
| 10 | 315 | | _threatsToCluster.Clear(); |
| 10 | 316 | | } |
| | 317 | |
|
| 755 | 318 | | public void RegisterNewThreat(Threat threat) { |
| 755 | 319 | | string trackID = $"T{1000 + ++_trackFileIdTicker}"; |
| 755 | 320 | | ThreatData trackFile = new ThreatData(threat, trackID); |
| 755 | 321 | | _trackFiles.Add(trackFile); |
| 755 | 322 | | _trackFileMap.Add(threat, trackFile); |
| 755 | 323 | | RequestClusterThreat(threat); |
| | 324 | |
|
| 755 | 325 | | threat.OnThreatHit += RegisterThreatHit; |
| 755 | 326 | | threat.OnThreatMiss += RegisterThreatMiss; |
| 755 | 327 | | } |
| | 328 | |
|
| 0 | 329 | | public void RegisterNewInterceptor(Interceptor interceptor) { |
| 0 | 330 | | string trackID = $"I{2000 + ++_trackFileIdTicker}"; |
| 0 | 331 | | InterceptorData trackFile = new InterceptorData(interceptor, trackID); |
| 0 | 332 | | _trackFiles.Add(trackFile); |
| 0 | 333 | | _trackFileMap.Add(interceptor, trackFile); |
| | 334 | |
|
| 0 | 335 | | interceptor.OnInterceptMiss += RegisterInterceptorMiss; |
| 0 | 336 | | interceptor.OnInterceptHit += RegisterInterceptorHit; |
| 0 | 337 | | } |
| | 338 | |
|
| 0 | 339 | | private void RegisterInterceptorHit(Interceptor interceptor, Threat threat) { |
| 0 | 340 | | var threatTrack = _trackFileMap[threat] as ThreatData; |
| 0 | 341 | | var interceptorTrack = _trackFileMap[interceptor] as InterceptorData; |
| | 342 | |
|
| 0 | 343 | | if (threatTrack != null) { |
| 0 | 344 | | threatTrack.RemoveInterceptor(interceptor); |
| 0 | 345 | | threatTrack.MarkDestroyed(); |
| 0 | 346 | | } |
| | 347 | |
|
| 0 | 348 | | if (interceptorTrack != null) { |
| 0 | 349 | | interceptorTrack.RemoveThreat(threat); |
| 0 | 350 | | interceptorTrack.MarkDestroyed(); |
| 0 | 351 | | } |
| | 352 | |
|
| | 353 | | // Assign the interceptors to other threats. |
| 0 | 354 | | foreach (var assignedInterceptor in threat.AssignedInterceptors.ToList()) { |
| 0 | 355 | | if (assignedInterceptor is not CarrierInterceptor) { |
| 0 | 356 | | RequestAssignInterceptorToThreat(assignedInterceptor as Interceptor); |
| 0 | 357 | | } |
| 0 | 358 | | } |
| 0 | 359 | | } |
| | 360 | |
|
| 0 | 361 | | private void RegisterInterceptorMiss(Interceptor interceptor, Threat threat) { |
| | 362 | | // Assign the interceptor to another threat. |
| 0 | 363 | | RequestAssignInterceptorToThreat(interceptor); |
| | 364 | |
|
| 0 | 365 | | var threatTrack = _trackFileMap[threat] as ThreatData; |
| 0 | 366 | | var interceptorTrack = _trackFileMap[interceptor] as InterceptorData; |
| | 367 | |
|
| 0 | 368 | | if (threatTrack != null) { |
| 0 | 369 | | threatTrack.RemoveInterceptor(interceptor); |
| | 370 | |
|
| | 371 | | // Check if the threat is being targeted by at least one interceptor. |
| 0 | 372 | | if (threatTrack.AssignedInterceptorCount == 0) { |
| 0 | 373 | | RequestClusterThreat(threat); |
| 0 | 374 | | } |
| 0 | 375 | | } |
| | 376 | |
|
| 0 | 377 | | if (interceptorTrack != null) { |
| 0 | 378 | | interceptorTrack.RemoveThreat(threat); |
| 0 | 379 | | interceptorTrack.MarkDestroyed(); |
| 0 | 380 | | } |
| 0 | 381 | | } |
| | 382 | |
|
| 0 | 383 | | private void RegisterThreatHit(Threat threat) { |
| 0 | 384 | | var threatTrack = _trackFileMap[threat] as ThreatData; |
| 0 | 385 | | if (threatTrack != null) { |
| 0 | 386 | | threatTrack.MarkDestroyed(); |
| 0 | 387 | | } |
| | 388 | |
|
| | 389 | | // Re-assign the assigned interceptors to other threats. |
| 0 | 390 | | foreach (var interceptor in threat.AssignedInterceptors.ToList()) { |
| 0 | 391 | | RequestAssignInterceptorToThreat(interceptor as Interceptor); |
| 0 | 392 | | } |
| 0 | 393 | | } |
| | 394 | |
|
| 0 | 395 | | private void RegisterThreatMiss(Threat threat) { |
| | 396 | | // The threat missed (e.g., it hit the floor). |
| | 397 | | // Re-assign the assigned interceptors to other threats. |
| 0 | 398 | | foreach (var interceptor in threat.AssignedInterceptors.ToList()) { |
| 0 | 399 | | RequestAssignInterceptorToThreat(interceptor as Interceptor); |
| 0 | 400 | | } |
| | 401 | |
|
| 0 | 402 | | var threatTrack = _trackFileMap[threat] as ThreatData; |
| 0 | 403 | | if (threatTrack != null) { |
| 0 | 404 | | threatTrack.MarkDestroyed(); |
| 0 | 405 | | } |
| 0 | 406 | | } |
| | 407 | |
|
| 0 | 408 | | public List<ThreatData> GetThreatTracks() => _trackFiles.OfType<ThreatData>().ToList(); |
| | 409 | |
|
| | 410 | | public List<InterceptorData> GetInterceptorTracks() => |
| 0 | 411 | | _trackFiles.OfType<InterceptorData>().ToList(); |
| | 412 | |
|
| 9 | 413 | | private void RegisterSimulationEnded() { |
| 9 | 414 | | _trackFiles.Clear(); |
| 9 | 415 | | _trackFileMap.Clear(); |
| 9 | 416 | | _assignmentQueue.Clear(); |
| 9 | 417 | | _threatClusters.Clear(); |
| 9 | 418 | | _threatClusterMap.Clear(); |
| 9 | 419 | | _interceptorClusterMap.Clear(); |
| 9 | 420 | | _assignableInterceptors.Clear(); |
| 9 | 421 | | _threatsToCluster.Clear(); |
| 9 | 422 | | _trackFileIdTicker = 0; |
| 9 | 423 | | } |
| | 424 | | } |