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