< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
TrackFileData(...)0%2100%
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 {
 018  public Agent Agent { get; protected set; }
 19  [SerializeField]
 20  protected TrackStatus _status;
 021  public string TrackID { get; protected set; }
 22
 023  public TrackStatus Status => _status;
 24
 025  protected TrackFileData(Agent agent, string trackID) {
 026    Agent = agent;
 027    _status = TrackStatus.UNASSIGNED;
 028    TrackID = trackID;
 029  }
 30
 031  public virtual void MarkDestroyed() {
 032    _status = TrackStatus.DESTROYED;
 033  }
 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]
 74  private List<Threat> _assignedThreats = new List<Threat>();
 75
 76  public InterceptorData(Interceptor interceptor, string interceptorID)
 77      : base(interceptor, interceptorID) {}
 78
 79  public void AssignThreat(Threat threat) {
 80    if (_status == TrackStatus.DESTROYED) {
 81      Debug.LogError($"AssignThreat: Interceptor {TrackID} is destroyed, cannot assign threat.");
 82      return;
 83    }
 84    _status = TrackStatus.ASSIGNED;
 85    _assignedThreats.Add(threat);
 86  }
 87
 88  public void RemoveThreat(Threat threat) {
 89    _assignedThreats.Remove(threat);
 90    if (_assignedThreats.Count == 0) {
 91      _status = TrackStatus.UNASSIGNED;
 92    }
 93  }
 94
 95  public override void MarkDestroyed() {
 96    base.MarkDestroyed();
 97    _assignedThreats.Clear();
 98  }
 99}