< Summary

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

Metrics

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

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 {
 010  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
 041  private int _intrHitCount = 0;
 042  private int _intrMissCount = 0;
 043  private int _intrRemainCount = 0;
 044  private int _thrtRemainCount = 0;
 45  public TMP_FontAsset GlobalFont;
 46
 047  private UIMode curMode = UIMode.THREE_DIMENSIONAL;
 48
 49  // Start is called before the first frame update
 050  void Awake() {
 51    // singleton
 052    if (Instance == null)
 053      Instance = this;
 54    else
 055      Destroy(gameObject);
 056  }
 57
 058  void Start() {
 059    SetUIMode(UIMode.THREE_DIMENSIONAL);
 060    _configSelectorPanel.SetActive(false);
 061    SetupConfigSelectorPanel();
 62    // inputManager = InputManager.Instance;
 63    // worldManager = WorldManager.Instance;
 064    SimManager.Instance.OnNewInterceptor += RegisterNewInterceptor;
 065    SimManager.Instance.OnNewThreat += RegisterNewThreat;
 066    SimManager.Instance.OnSimulationEnded += RegisterSimulationEnded;
 067    actionMessageTextHandle.text = "";
 068    pActionMessageTextHandle.text = "";
 069    ppActionMessageTextHandle.text = "";
 070    ppppActionMessageTextHandle.text = "";
 071    pppppActionMessageTextHandle.text = "";
 072  }
 73
 074  public void LogAction(string message, Color color) {
 75    // Shift existing messages to older slots with faded colors
 076    pppppActionMessageTextHandle.text = ppppActionMessageTextHandle.text;
 077    pppppActionMessageTextHandle.color =
 78        ppppActionMessageTextHandle.color * 0.8f;  // Fade color by 75%
 79
 080    ppppActionMessageTextHandle.text = ppActionMessageTextHandle.text;
 081    ppppActionMessageTextHandle.color = ppActionMessageTextHandle.color * 0.85f;
 82
 083    ppActionMessageTextHandle.text = pActionMessageTextHandle.text;
 084    ppActionMessageTextHandle.color = pActionMessageTextHandle.color * 0.85f;
 85
 086    pActionMessageTextHandle.text = actionMessageTextHandle.text;
 087    pActionMessageTextHandle.color = actionMessageTextHandle.color * 0.9f;
 88
 89    // Set new message
 090    actionMessageTextHandle.text = message;
 091    actionMessageTextHandle.color = color;
 092  }
 93
 094  public void LogActionMessage(string message) {
 095    LogAction(message, Color.white);
 096  }
 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
 0110  private void SetupConfigSelectorPanel() {
 0111    _configSelectorPanel.GetComponentInChildren<Button>().onClick.AddListener(
 0112        delegate { LoadSelectedConfig(); });
 0113    _configDropdown = _configSelectorPanel.GetComponentInChildren<TMP_Dropdown>();
 0114    PopulateConfigDropdown();
 0115  }
 116
 0117  private void PopulateConfigDropdown() {
 0118    _configDropdown.ClearOptions();
 0119    string configPath = Path.Combine(Application.streamingAssetsPath, "Configs");
 0120    string[] configFiles = Directory.GetFiles(configPath, "*.json");
 121
 0122    List<string> configFileNames = new List<string>();
 0123    foreach (string configFile in configFiles) {
 0124      configFileNames.Add(Path.GetFileName(configFile));
 0125    }
 0126    _configDropdown.AddOptions(configFileNames);
 0127  }
 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
 0141  public void SetUIMode(UIMode mode) {
 0142    curMode = mode;
 0143    _cameraPanel.SetActive(mode == UIMode.THREE_DIMENSIONAL);
 0144    _tacticalPanel.SetActive(mode == UIMode.TACTICAL);
 0145  }
 146
 0147  public UIMode GetUIMode() {
 0148    return curMode;
 0149  }
 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
 0168  private void UpdateSimTimeText() {
 0169    simTimeText.text =
 170        "Elapsed Sim Time: " + SimManager.Instance.GetElapsedSimulationTime().ToString("F2");
 0171    float expectedSimTimeAdvance = Time.unscaledDeltaTime * Time.timeScale;
 0172    float actualSimTimeAdvance = Time.deltaTime;
 173
 174    // Allow a small epsilon to account for floating-point precision errors
 0175    if (actualSimTimeAdvance < expectedSimTimeAdvance - 0.001f) {
 0176      simTimeText.text += "\nThrottling time to meet physics rate";
 0177    }
 0178  }
 179
 0180  private void UpdateTotalCostText() {
 0181    double interceptorCost = SimManager.Instance.GetCostLaunchedInterceptors();
 0182    double threatCost = SimManager.Instance.GetCostDestroyedThreats();
 0183    double netCost = interceptorCost - threatCost;
 184
 0185    interceptorCostText.text = $"Interceptors\n(launched)\n${FormatCost(interceptorCost)}";
 0186    threatCostText.text = $"Threats\n(destroyed)\n${FormatCost(threatCost)}";
 0187    netCostText.text = $"Cost\ndifference\n${FormatCost(netCost)}";
 0188    if (netCost < 0) {
 0189      netCostText.color = Color.green;
 0190    } else {
 0191      netCostText.color = Color.red;
 0192    }
 0193  }
 194
 0195  private string FormatCost(double cost) {
 0196    double absCost = Math.Abs(cost);
 0197    if (absCost >= 1e9)
 0198      return $"{cost / 1e9:F2}B";
 0199    if (absCost >= 1e6)
 0200      return $"{cost / 1e6:F2}M";
 0201    if (absCost >= 1e3)
 0202      return $"{cost / 1e3:F2}k";
 0203    return $"{cost:F2}";
 0204  }
 205
 0206  private void RegisterSimulationEnded() {
 0207    _intrRemainCount = 0;
 0208    _thrtRemainCount = 0;
 0209    _intrHitCount = 0;
 0210    _intrMissCount = 0;
 0211    UpdateSummaryText();
 0212  }
 213
 0214  private void UpdateSummaryText() {
 0215    intrRemainTextHandle.text = _intrRemainCount.ToString();
 0216    thrtRemainTextHandle.text = _thrtRemainCount.ToString();
 0217    intrHitTextHandle.text = _intrHitCount.ToString();
 0218    intrMissTextHandle.text = _intrMissCount.ToString();
 0219  }
 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
 0229  private void RegisterNewThreat(Threat threat) {
 0230    ++_thrtRemainCount;
 0231    threat.OnTerminated += RegisterAgentTerminated;
 0232    UpdateSummaryText();
 0233  }
 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
 0255  void Update() {
 256    // UpdateSwarmPanel();
 0257    UpdateSimTimeText();
 0258    UpdateTotalCostText();
 0259  }
 260}
 261
 262public enum UIMode { THREE_DIMENSIONAL, TACTICAL }