< Summary

Class:UIManager
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/UI/UIManager.cs
Covered lines:110
Uncovered lines:60
Coverable lines:170
Total lines:262
Line coverage:64.7% (110 of 170)
Covered branches:0
Total branches:0
Covered methods:18
Total methods:30
Method coverage:60% (18 of 30)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
UIManager()0%110100%
Awake()0%2.032080%
Start()0%110100%
LogAction(...)0%110100%
LogActionMessage(...)0%110100%
LogActionWarning(...)0%2100%
LogActionError(...)0%2100%
ToggleConfigSelectorPanel()0%2100%
SetupConfigSelectorPanel()0%110100%
PopulateConfigDropdown()0%220100%
LoadSelectedConfig()0%2100%
ToggleUIMode()0%12300%
SetUIMode(...)0%110100%
GetUIMode()0%110100%
SetAgentPanelText(...)0%2100%
GetSwarmPanelText()0%2100%
UpdateSwarmPanel()0%6200%
UpdateSimTimeText()0%220100%
UpdateTotalCostText()0%2.032080%
FormatCost(...)0%4.434070%
RegisterSimulationEnded()0%110100%
UpdateSummaryText()0%110100%
RegisterNewInterceptor(...)0%2100%
RegisterNewThreat(...)0%110100%
RegisterAgentTerminated(...)0%12300%
RegisterInterceptorHit(...)0%2100%
RegisterInterceptorMiss(...)0%2100%
Update()0%110100%

File(s)

/github/workspace/Assets/Scripts/UI/UIManager.cs

#LineLine coverage
 1using System.Collections;
 2using System.Collections.Generic;
 3using System.IO;
 4using UnityEngine;
 5using UnityEngine.UI;
 6using TMPro;
 7using System;
 8
 9public class UIManager : MonoBehaviour {
 9710  public static UIManager Instance { get; private set; }
 11
 12  [SerializeField]
 13  [Tooltip("The UI panel that renders the tactical view for TACTICAL mode")]
 14  private GameObject _tacticalPanel;
 15
 16  [SerializeField]
 17  [Tooltip("The UI panel that renders the camera view for THREE_DIMENSIONAL mode")]
 18  private GameObject _cameraPanel;
 19
 20  [SerializeField]
 21
 22  private GameObject _configSelectorPanel;
 23  private TMP_Dropdown _configDropdown;
 24  public TextMeshProUGUI agentPanelText;
 25  public TextMeshProUGUI simTimeText;
 26  public TextMeshProUGUI interceptorCostText;
 27  public TextMeshProUGUI threatCostText;
 28  public TextMeshProUGUI netCostText;
 29
 30  public TextMeshProUGUI intrHitTextHandle;
 31  public TextMeshProUGUI intrMissTextHandle;
 32  public TextMeshProUGUI intrRemainTextHandle;
 33  public TextMeshProUGUI thrtRemainTextHandle;
 34
 35  public TextMeshProUGUI actionMessageTextHandle;
 36  public TextMeshProUGUI pActionMessageTextHandle;
 37  public TextMeshProUGUI ppActionMessageTextHandle;
 38  public TextMeshProUGUI ppppActionMessageTextHandle;
 39  public TextMeshProUGUI pppppActionMessageTextHandle;
 40
 141  private int _intrHitCount = 0;
 142  private int _intrMissCount = 0;
 143  private int _intrRemainCount = 0;
 144  private int _thrtRemainCount = 0;
 45  public TMP_FontAsset GlobalFont;
 46
 147  private UIMode curMode = UIMode.THREE_DIMENSIONAL;
 48
 49  // Start is called before the first frame update
 150  void Awake() {
 51    // singleton
 152    if (Instance == null)
 153      Instance = this;
 54    else
 055      Destroy(gameObject);
 156  }
 57
 158  void Start() {
 159    SetUIMode(UIMode.THREE_DIMENSIONAL);
 160    _configSelectorPanel.SetActive(false);
 161    SetupConfigSelectorPanel();
 62    // inputManager = InputManager.Instance;
 63    // worldManager = WorldManager.Instance;
 164    SimManager.Instance.OnNewInterceptor += RegisterNewInterceptor;
 165    SimManager.Instance.OnNewThreat += RegisterNewThreat;
 166    SimManager.Instance.OnSimulationEnded += RegisterSimulationEnded;
 167    actionMessageTextHandle.text = "";
 168    pActionMessageTextHandle.text = "";
 169    ppActionMessageTextHandle.text = "";
 170    ppppActionMessageTextHandle.text = "";
 171    pppppActionMessageTextHandle.text = "";
 172  }
 73
 3974  public void LogAction(string message, Color color) {
 75    // Shift existing messages to older slots with faded colors
 3976    pppppActionMessageTextHandle.text = ppppActionMessageTextHandle.text;
 3977    pppppActionMessageTextHandle.color =
 78        ppppActionMessageTextHandle.color * 0.8f;  // Fade color by 75%
 79
 3980    ppppActionMessageTextHandle.text = ppActionMessageTextHandle.text;
 3981    ppppActionMessageTextHandle.color = ppActionMessageTextHandle.color * 0.85f;
 82
 3983    ppActionMessageTextHandle.text = pActionMessageTextHandle.text;
 3984    ppActionMessageTextHandle.color = pActionMessageTextHandle.color * 0.85f;
 85
 3986    pActionMessageTextHandle.text = actionMessageTextHandle.text;
 3987    pActionMessageTextHandle.color = actionMessageTextHandle.color * 0.9f;
 88
 89    // Set new message
 3990    actionMessageTextHandle.text = message;
 3991    actionMessageTextHandle.color = color;
 3992  }
 93
 3994  public void LogActionMessage(string message) {
 3995    LogAction(message, Color.white);
 3996  }
 97
 098  public void LogActionWarning(string message) {
 099    LogAction(message, Color.yellow);
 0100  }
 101
 0102  public void LogActionError(string message) {
 0103    LogAction(message, Color.red);
 0104  }
 105
 0106  public void ToggleConfigSelectorPanel() {
 0107    _configSelectorPanel.SetActive(!_configSelectorPanel.activeSelf);
 0108  }
 109
 1110  private void SetupConfigSelectorPanel() {
 1111    _configSelectorPanel.GetComponentInChildren<Button>().onClick.AddListener(
 0112        delegate { LoadSelectedConfig(); });
 1113    _configDropdown = _configSelectorPanel.GetComponentInChildren<TMP_Dropdown>();
 1114    PopulateConfigDropdown();
 1115  }
 116
 1117  private void PopulateConfigDropdown() {
 1118    _configDropdown.ClearOptions();
 1119    string configPath = Path.Combine(Application.streamingAssetsPath, "Configs");
 1120    string[] configFiles = Directory.GetFiles(configPath, "*.json");
 121
 1122    List<string> configFileNames = new List<string>();
 30123    foreach (string configFile in configFiles) {
 9124      configFileNames.Add(Path.GetFileName(configFile));
 9125    }
 1126    _configDropdown.AddOptions(configFileNames);
 1127  }
 0128  private void LoadSelectedConfig() {
 0129    string selectedConfig = _configDropdown.options[_configDropdown.value].text;
 0130    SimManager.Instance.LoadNewConfig(selectedConfig);
 0131    _configSelectorPanel.SetActive(false);
 132    // if(!InputManager.Instance.mouseActive){
 133    //     InputManager.Instance.mouseActive = true;
 134    // }
 0135  }
 136
 0137  public void ToggleUIMode() {
 0138    SetUIMode(curMode == UIMode.THREE_DIMENSIONAL ? UIMode.TACTICAL : UIMode.THREE_DIMENSIONAL);
 0139  }
 140
 1141  public void SetUIMode(UIMode mode) {
 1142    curMode = mode;
 1143    _cameraPanel.SetActive(mode == UIMode.THREE_DIMENSIONAL);
 1144    _tacticalPanel.SetActive(mode == UIMode.TACTICAL);
 1145  }
 146
 56147  public UIMode GetUIMode() {
 56148    return curMode;
 56149  }
 150
 0151  public void SetAgentPanelText(string text) {
 0152    agentPanelText.text = text;
 0153  }
 154
 0155  public string GetSwarmPanelText() {
 0156    return agentPanelText.text;
 0157  }
 158
 0159  private void UpdateSwarmPanel() {
 0160    string agentPanelText = "";
 0161    foreach (Agent agent in SimManager.Instance.GetActiveAgents()) {
 0162      string jobText = agent.name + "| Phase: " + agent.GetFlightPhase().ToString();
 0163      agentPanelText += jobText + "\n";
 0164    }
 0165    SetAgentPanelText(agentPanelText);
 0166  }
 167
 28168  private void UpdateSimTimeText() {
 28169    simTimeText.text =
 170        "Elapsed Sim Time: " + SimManager.Instance.GetElapsedSimulationTime().ToString("F2");
 28171    float expectedSimTimeAdvance = Time.unscaledDeltaTime * Time.timeScale;
 28172    float actualSimTimeAdvance = Time.deltaTime;
 173
 174    // Allow a small epsilon to account for floating-point precision errors
 47175    if (actualSimTimeAdvance < expectedSimTimeAdvance - 0.001f) {
 19176      simTimeText.text += "\nThrottling time to meet physics rate";
 19177    }
 28178  }
 179
 28180  private void UpdateTotalCostText() {
 28181    double interceptorCost = SimManager.Instance.GetCostLaunchedInterceptors();
 28182    double threatCost = SimManager.Instance.GetCostDestroyedThreats();
 28183    double netCost = interceptorCost - threatCost;
 184
 28185    interceptorCostText.text = $"Interceptors\n(launched)\n${FormatCost(interceptorCost)}";
 28186    threatCostText.text = $"Threats\n(destroyed)\n${FormatCost(threatCost)}";
 28187    netCostText.text = $"Cost\ndifference\n${FormatCost(netCost)}";
 28188    if (netCost < 0) {
 0189      netCostText.color = Color.green;
 28190    } else {
 28191      netCostText.color = Color.red;
 28192    }
 28193  }
 194
 84195  private string FormatCost(double cost) {
 84196    double absCost = Math.Abs(cost);
 84197    if (absCost >= 1e9)
 0198      return $"{cost / 1e9:F2}B";
 84199    if (absCost >= 1e6)
 0200      return $"{cost / 1e6:F2}M";
 84201    if (absCost >= 1e3)
 0202      return $"{cost / 1e3:F2}k";
 84203    return $"{cost:F2}";
 84204  }
 205
 9206  private void RegisterSimulationEnded() {
 9207    _intrRemainCount = 0;
 9208    _thrtRemainCount = 0;
 9209    _intrHitCount = 0;
 9210    _intrMissCount = 0;
 9211    UpdateSummaryText();
 9212  }
 213
 764214  private void UpdateSummaryText() {
 764215    intrRemainTextHandle.text = _intrRemainCount.ToString();
 764216    thrtRemainTextHandle.text = _thrtRemainCount.ToString();
 764217    intrHitTextHandle.text = _intrHitCount.ToString();
 764218    intrMissTextHandle.text = _intrMissCount.ToString();
 764219  }
 220
 0221  private void RegisterNewInterceptor(Interceptor interceptor) {
 0222    ++_intrRemainCount;
 0223    interceptor.OnInterceptHit += RegisterInterceptorHit;
 0224    interceptor.OnInterceptMiss += RegisterInterceptorMiss;
 0225    interceptor.OnTerminated += RegisterAgentTerminated;
 0226    UpdateSummaryText();
 0227  }
 228
 755229  private void RegisterNewThreat(Threat threat) {
 755230    ++_thrtRemainCount;
 755231    threat.OnTerminated += RegisterAgentTerminated;
 755232    UpdateSummaryText();
 755233  }
 234
 0235  private void RegisterAgentTerminated(Agent agent) {
 0236    if (agent is Interceptor) {
 0237      --_intrRemainCount;
 0238    } else if (agent is Threat) {
 0239      --_thrtRemainCount;
 0240    }
 0241    UpdateSummaryText();
 0242  }
 243
 0244  private void RegisterInterceptorHit(Interceptor interceptor, Threat threat) {
 0245    ++_intrHitCount;
 0246    UpdateSummaryText();
 0247  }
 248
 0249  private void RegisterInterceptorMiss(Interceptor interceptor, Threat threat) {
 0250    ++_intrMissCount;
 0251    UpdateSummaryText();
 0252  }
 253
 254  // Update is called once per frame
 28255  void Update() {
 256    // UpdateSwarmPanel();
 28257    UpdateSimTimeText();
 28258    UpdateTotalCostText();
 28259  }
 260}
 261
 262public enum UIMode { THREE_DIMENSIONAL, TACTICAL }