< Summary

Class:ThreatClusterData
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/IADS/ThreatClusterData.cs
Covered lines:0
Uncovered lines:30
Coverable lines:30
Total lines:68
Line coverage:0% (0 of 30)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:8
Method coverage:0% (0 of 8)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ThreatClusterData(...)0%2100%
UpdateCentroid()0%2100%
AssignInterceptor(...)0%6200%
RemoveInterceptor(...)0%30500%

File(s)

/github/workspace/Assets/Scripts/IADS/ThreatClusterData.cs

#LineLine coverage
 1using System.Collections.Generic;
 2using System.Linq;
 3using UnityEngine;
 4
 5[System.Serializable]
 6public enum ThreatClusterStatus { UNASSIGNED, ASSIGNED, DELEGATED }
 7
 8[System.Serializable]
 9public class ThreatClusterData {
 10  private Cluster _cluster;
 11
 12  // The agent tracks the centroid of the cluster.
 13  private Agent _agent;
 14
 15  [SerializeField]
 016  private ThreatClusterStatus _status = ThreatClusterStatus.UNASSIGNED;
 17
 18  [SerializeField]
 019  private List<Interceptor> _assignedInterceptors = new List<Interceptor>();
 20
 021  public ThreatClusterData(Cluster cluster) {
 022    _cluster = cluster;
 023    _agent = SimManager.Instance.CreateDummyAgent(cluster.Centroid(), cluster.Velocity());
 024  }
 25
 26  public Cluster Cluster {
 027    get { return _cluster; }
 28  }
 29
 30  public Agent Centroid {
 031    get { return _agent; }
 32  }
 33
 34  public ThreatClusterStatus Status {
 035    get { return _status; }
 36  }
 37
 38  public int AssignedInterceptorCount {
 039    get { return _assignedInterceptors.Count; }
 40  }
 41
 042  public void UpdateCentroid() {
 043    _agent.SetPosition(_cluster.Centroid());
 044    _agent.SetVelocity(_cluster.Velocity());
 045  }
 46
 047  public void AssignInterceptor(Interceptor interceptor) {
 048    _status = ThreatClusterStatus.ASSIGNED;
 049    _assignedInterceptors.Add(interceptor);
 50
 51    // Assign the interceptor to all threats within the cluster.
 052    foreach (var threat in _cluster.Threats.ToList()) {
 053      threat.AddInterceptor(interceptor);
 054    }
 055  }
 56
 057  public void RemoveInterceptor(Interceptor interceptor, bool delegated = false) {
 058    _assignedInterceptors.Remove(interceptor);
 059    if (AssignedInterceptorCount == 0) {
 060      _status = delegated ? ThreatClusterStatus.DELEGATED : ThreatClusterStatus.UNASSIGNED;
 061    }
 62
 63    // Remove the interceptor from all threats within the cluster.
 064    foreach (var threat in _cluster.Threats.ToList()) {
 065      threat.RemoveInterceptor(interceptor);
 066    }
 067  }
 68}