< Summary

Class:InterceptorData
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/IADS/TrackFileData.cs
Covered lines:0
Uncovered lines:19
Coverable lines:19
Total lines:99
Line coverage:0% (0 of 19)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:4
Method coverage:0% (0 of 4)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
InterceptorData(...)0%2100%
AssignThreat(...)0%6200%
RemoveThreat(...)0%6200%
MarkDestroyed()0%2100%

File(s)

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

#LineLine coverage
 1/// A radar track file or an IADS (Integrated Air Defense System) track file is a digital record
 2/// that continuously updates and stores information about a detected object (aircraft, missile,
 3/// drone, etc.) as it moves through a monitored area.
 4///
 5/// These files are maintained by radar systems and air defense networks to track and classify
 6/// targets in real-time.
 7///
 8/// In an Integrated Air Defense System (IADS), track files are shared and fused from multiple
 9/// radar and sensor sources. These files enable coordinated tracking and engagement of threats.
 10
 11using UnityEngine;
 12using System.Collections.Generic;
 13
 14public enum TrackStatus { UNASSIGNED, ASSIGNED, DESTROYED }
 15
 16[System.Serializable]
 17public abstract class TrackFileData {
 18  public Agent Agent { get; protected set; }
 19  [SerializeField]
 20  protected TrackStatus _status;
 21  public string TrackID { get; protected set; }
 22
 23  public TrackStatus Status => _status;
 24
 25  protected TrackFileData(Agent agent, string trackID) {
 26    Agent = agent;
 27    _status = TrackStatus.UNASSIGNED;
 28    TrackID = trackID;
 29  }
 30
 31  public virtual void MarkDestroyed() {
 32    _status = TrackStatus.DESTROYED;
 33  }
 34}
 35
 36[System.Serializable]
 37public class ThreatData : TrackFileData {
 38  [SerializeField]
 39  private List<Interceptor> _assignedInterceptors = new List<Interceptor>();
 40
 41  public ThreatData(Threat threat, string trackID) : base(threat, trackID) {}
 42
 43  public int AssignedInterceptorCount {
 44    get { return _assignedInterceptors.Count; }
 45  }
 46
 47  public void AssignInterceptor(Interceptor interceptor) {
 48    if (Status == TrackStatus.DESTROYED) {
 49      Debug.LogError(
 50          $"AssignInterceptor: Track {TrackID} is destroyed, cannot assign interceptor.");
 51      return;
 52    }
 53    _status = TrackStatus.ASSIGNED;
 54    _assignedInterceptors.Add(interceptor);
 55  }
 56  public void RemoveInterceptor(Interceptor interceptor) {
 57    if (_assignedInterceptors.Contains(interceptor)) {
 58      _assignedInterceptors.Remove(interceptor);
 59      if (_assignedInterceptors.Count == 0) {
 60        _status = TrackStatus.UNASSIGNED;
 61      }
 62    }
 63  }
 64
 65  public override void MarkDestroyed() {
 66    base.MarkDestroyed();
 67    _assignedInterceptors.Clear();
 68  }
 69}
 70
 71[System.Serializable]
 72public class InterceptorData : TrackFileData {
 73  [SerializeField]
 074  private List<Threat> _assignedThreats = new List<Threat>();
 75
 76  public InterceptorData(Interceptor interceptor, string interceptorID)
 077      : base(interceptor, interceptorID) {}
 78
 079  public void AssignThreat(Threat threat) {
 080    if (_status == TrackStatus.DESTROYED) {
 081      Debug.LogError($"AssignThreat: Interceptor {TrackID} is destroyed, cannot assign threat.");
 082      return;
 83    }
 084    _status = TrackStatus.ASSIGNED;
 085    _assignedThreats.Add(threat);
 086  }
 87
 088  public void RemoveThreat(Threat threat) {
 089    _assignedThreats.Remove(threat);
 090    if (_assignedThreats.Count == 0) {
 091      _status = TrackStatus.UNASSIGNED;
 092    }
 093  }
 94
 095  public override void MarkDestroyed() {
 096    base.MarkDestroyed();
 097    _assignedThreats.Clear();
 098  }
 99}