| | 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 |
| | 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 | |
|
| | 87 | | public class SpriteManager { |
| | 88 | | private const string SymbolPathFormat = "APP6-D_Symbology/{0}"; |
| | 89 | |
|
| 0 | 90 | | public Sprite LoadSymbolSprite(string symbolName) { |
| 0 | 91 | | string path = string.Format(SymbolPathFormat, symbolName); |
| 0 | 92 | | Sprite sprite = Resources.Load<Sprite>(path); |
| 0 | 93 | | if (sprite == null) { |
| 0 | 94 | | Debug.LogWarning($"Failed to load sprite at path: {path}"); |
| 0 | 95 | | } |
| 0 | 96 | | return sprite; |
| 0 | 97 | | } |
| | 98 | | } |