< Summary

Class:TacticalSymbol
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/UI/TacticalSymbol.cs
Covered lines:0
Uncovered lines:51
Coverable lines:51
Total lines:98
Line coverage:0% (0 of 51)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:11
Method coverage:0% (0 of 11)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Awake()0%2100%
SetDirectionArrowRotation(...)0%6200%
DisableDirectionArrow()0%6200%
SetSprite(...)0%12300%
SetUniqueDesignator(...)0%2100%
SetIFF(...)0%2100%
SetType(...)0%2100%
SetSpeedAlt(...)0%2100%
SetAdditionalInfo(...)0%2100%
SetText(...)0%6200%
Update()0%2100%

File(s)

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

#LineLine coverage
 1using UnityEngine;
 2using TMPro;
 3using UnityEngine.UI;
 4public class TacticalSymbol : MonoBehaviour {
 5  [SerializeField]
 6  private GameObject _directionArrow;
 7  [SerializeField]
 8  private TextMeshProUGUI _uniqueDesignatorText;
 9  [SerializeField]
 10  private TextMeshProUGUI _iffText;
 11  [SerializeField]
 12  private TextMeshProUGUI _typeText;
 13  [SerializeField]
 14  private TextMeshProUGUI _speedAltText;
 15  [SerializeField]
 16  private TextMeshProUGUI _additionalInfoText;
 17
 18  private SpriteManager _spriteManager;
 19
 20  // Start is called once before the first execution of Update after the MonoBehaviour is created
 021  void Awake() {
 022    _spriteManager = new SpriteManager();
 023    _uniqueDesignatorText.text = "";
 024    _iffText.text = "";
 025    _typeText.text = "";
 026    _speedAltText.text = "";
 027    _additionalInfoText.text = "";
 028  }
 29
 030  public void SetDirectionArrowRotation(float rotationDegrees) {
 031    if (_directionArrow != null) {
 032      _directionArrow.GetComponent<RectTransform>().rotation =
 33          Quaternion.Euler(0, 0, rotationDegrees);
 034    }
 035  }
 36
 037  public void DisableDirectionArrow() {
 038    if (_directionArrow != null) {
 039      _directionArrow.SetActive(false);
 040    } else {
 041      Debug.LogWarning("Direction arrow not found on TacticalSymbol" + name);
 042    }
 043  }
 44
 045  public void SetSprite(string spriteName) {
 046    spriteName = spriteName.ToUpper();
 47    // Update main symbol image
 048    Image symbolImage = GetComponent<Image>();
 049    if (symbolImage != null) {
 050      Sprite symbolSprite = _spriteManager.LoadSymbolSprite(spriteName);
 051      if (symbolSprite != null) {
 052        symbolImage.sprite = symbolSprite;
 053      }
 054    }
 055  }
 56
 057  public void SetUniqueDesignator(string text) {
 058    SetText(_uniqueDesignatorText, text);
 059  }
 60
 061  public void SetIFF(string text) {
 062    SetText(_iffText, text);
 063  }
 64
 065  public void SetType(string text) {
 066    SetText(_typeText, text);
 067  }
 68
 069  public void SetSpeedAlt(string text) {
 070    SetText(_speedAltText, text);
 071  }
 72
 073  public void SetAdditionalInfo(string text) {
 074    SetText(_additionalInfoText, text);
 075  }
 76
 077  private void SetText(TextMeshProUGUI textComponent, string text) {
 078    if (textComponent != null) {
 079      textComponent.text = text.ToUpper();
 080    }
 081  }
 82
 83  // Update is called once per frame
 084  void Update() {}
 85}
 86
 87public class SpriteManager {
 88  private const string SymbolPathFormat = "APP6-D_Symbology/{0}";
 89
 90  public Sprite LoadSymbolSprite(string symbolName) {
 91    string path = string.Format(SymbolPathFormat, symbolName);
 92    Sprite sprite = Resources.Load<Sprite>(path);
 93    if (sprite == null) {
 94      Debug.LogWarning($"Failed to load sprite at path: {path}");
 95    }
 96    return sprite;
 97  }
 98}