< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
LoadSymbolSprite(...)0%6200%

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
 21  void Awake() {
 22    _spriteManager = new SpriteManager();
 23    _uniqueDesignatorText.text = "";
 24    _iffText.text = "";
 25    _typeText.text = "";
 26    _speedAltText.text = "";
 27    _additionalInfoText.text = "";
 28  }
 29
 30  public void SetDirectionArrowRotation(float rotationDegrees) {
 31    if (_directionArrow != null) {
 32      _directionArrow.GetComponent<RectTransform>().rotation =
 33          Quaternion.Euler(0, 0, rotationDegrees);
 34    }
 35  }
 36
 37  public void DisableDirectionArrow() {
 38    if (_directionArrow != null) {
 39      _directionArrow.SetActive(false);
 40    } else {
 41      Debug.LogWarning("Direction arrow not found on TacticalSymbol" + name);
 42    }
 43  }
 44
 45  public void SetSprite(string spriteName) {
 46    spriteName = spriteName.ToUpper();
 47    // Update main symbol image
 48    Image symbolImage = GetComponent<Image>();
 49    if (symbolImage != null) {
 50      Sprite symbolSprite = _spriteManager.LoadSymbolSprite(spriteName);
 51      if (symbolSprite != null) {
 52        symbolImage.sprite = symbolSprite;
 53      }
 54    }
 55  }
 56
 57  public void SetUniqueDesignator(string text) {
 58    SetText(_uniqueDesignatorText, text);
 59  }
 60
 61  public void SetIFF(string text) {
 62    SetText(_iffText, text);
 63  }
 64
 65  public void SetType(string text) {
 66    SetText(_typeText, text);
 67  }
 68
 69  public void SetSpeedAlt(string text) {
 70    SetText(_speedAltText, text);
 71  }
 72
 73  public void SetAdditionalInfo(string text) {
 74    SetText(_additionalInfoText, text);
 75  }
 76
 77  private void SetText(TextMeshProUGUI textComponent, string text) {
 78    if (textComponent != null) {
 79      textComponent.text = text.ToUpper();
 80    }
 81  }
 82
 83  // Update is called once per frame
 84  void Update() {}
 85}
 86
 87public class SpriteManager {
 88  private const string SymbolPathFormat = "APP6-D_Symbology/{0}";
 89
 090  public Sprite LoadSymbolSprite(string symbolName) {
 091    string path = string.Format(SymbolPathFormat, symbolName);
 092    Sprite sprite = Resources.Load<Sprite>(path);
 093    if (sprite == null) {
 094      Debug.LogWarning($"Failed to load sprite at path: {path}");
 095    }
 096    return sprite;
 097  }
 98}

Methods/Properties

LoadSymbolSprite(System.String)