| | 1 | | using UnityEngine; |
| | 2 | | using UnityEngine.UI; |
| | 3 | | using TMPro; // Import TextMeshPro namespace |
| | 4 | | using System.Collections.Generic; |
| | 5 | |
|
| | 6 | | [RequireComponent(typeof(CanvasRenderer))] |
| | 7 | | public class TacticalPolarGridGraphic : Graphic { |
| | 8 | | [SerializeField] |
| 1 | 9 | | private Color _gridColor = new Color(0.0f, 1.0f, 0.0f, 0.3f); |
| | 10 | | [SerializeField] |
| 1 | 11 | | private int _numberOfBearingLines = 36; // Every 10 degrees |
| | 12 | | [SerializeField] |
| 1 | 13 | | private int _numberOfRangeRings = 5; |
| | 14 | | [SerializeField] |
| 1 | 15 | | private float[] _rangeScales = { 100f, 1000f, 10000f, 40000f }; // in meters |
| | 16 | |
|
| | 17 | | [SerializeField] |
| 1 | 18 | | private float _lineWidth = 2f; |
| | 19 | |
|
| 1 | 20 | | private int _currentRangeIndex = 1; // Start with 10km range |
| | 21 | |
|
| | 22 | | // Updated field for TextMeshPro range text labels |
| | 23 | | [SerializeField] |
| | 24 | | private GameObject _rangeTextPrefab; // Assign a TextMeshPro prefab in the inspector |
| | 25 | |
|
| 1 | 26 | | private List<TextMeshProUGUI> _rangeTexts = new List<TextMeshProUGUI>(); |
| | 27 | |
|
| 1 | 28 | | private float _currentScaleFactor = 1f; // Store the current scale factor |
| | 29 | |
|
| 0 | 30 | | public float CurrentScaleFactor => _currentScaleFactor; // Public getter |
| 1 | 31 | | protected override void OnEnable() { |
| 1 | 32 | | base.OnEnable(); |
| 2 | 33 | | if (Application.isPlaying) { |
| 1 | 34 | | ClearRangeTexts(); |
| 1 | 35 | | UpdateRangeTexts(); // Create range texts when the component is enabled |
| 1 | 36 | | } |
| 1 | 37 | | } |
| | 38 | |
|
| 0 | 39 | | public void CycleRangeUp() { |
| 0 | 40 | | _currentRangeIndex = (_currentRangeIndex + 1) % _rangeScales.Length; |
| 0 | 41 | | SetVerticesDirty(); // Mark the UI as needing to be redrawn |
| 0 | 42 | | UpdateRangeTexts(); // Update range labels |
| 0 | 43 | | } |
| | 44 | |
|
| 0 | 45 | | public void CycleRangeDown() { |
| 0 | 46 | | _currentRangeIndex = (_currentRangeIndex - 1 + _rangeScales.Length) % _rangeScales.Length; |
| 0 | 47 | | SetVerticesDirty(); // Mark the UI as needing to be redrawn |
| 0 | 48 | | UpdateRangeTexts(); // Update range labels |
| 0 | 49 | | } |
| | 50 | |
|
| 0 | 51 | | protected override void OnPopulateMesh(VertexHelper vh) { |
| 0 | 52 | | vh.Clear(); |
| | 53 | |
|
| 0 | 54 | | float maxRange = _rangeScales[_currentRangeIndex] / 1000f; // Convert to km for UI scale |
| | 55 | |
|
| | 56 | | // Get the rect dimensions |
| 0 | 57 | | Rect rect = GetPixelAdjustedRect(); |
| 0 | 58 | | Vector2 center = rect.center; |
| | 59 | |
|
| | 60 | | // Adjust scale based on rect size |
| 0 | 61 | | _currentScaleFactor = Mathf.Min(rect.width, rect.height) / (2 * maxRange); |
| | 62 | |
|
| 0 | 63 | | float scaleFactor = _currentScaleFactor; |
| | 64 | |
|
| | 65 | | // Draw the grid |
| 0 | 66 | | DrawRangeRings(vh, center, maxRange, scaleFactor); |
| 0 | 67 | | DrawBearingLines(vh, center, maxRange, scaleFactor); |
| | 68 | |
|
| | 69 | | // Only update positions of existing range texts |
| 0 | 70 | | UpdateRangeTextsPositions(center, maxRange, scaleFactor); |
| 0 | 71 | | } |
| | 72 | |
|
| 0 | 73 | | private void DrawRangeRings(VertexHelper vh, Vector2 center, float maxRange, float scaleFactor) { |
| | 74 | | // Extend the range rings to 10x the major marker range |
| 0 | 75 | | float extendedMaxRange = maxRange * 10; |
| | 76 | |
|
| 0 | 77 | | for (int i = 1; i <= _numberOfRangeRings * 10; ++i) { |
| 0 | 78 | | float radius = (i * extendedMaxRange) / (_numberOfRangeRings * 10); |
| 0 | 79 | | DrawCircle(vh, center, radius * scaleFactor, 128, 1f); |
| | 80 | |
|
| | 81 | | // Make every 10th ring thicker to indicate major markers |
| 0 | 82 | | if (i % 10 == 0) { |
| 0 | 83 | | DrawCircle(vh, center, radius * scaleFactor, 128, 2f); // Draw again for thickness |
| 0 | 84 | | } |
| 0 | 85 | | } |
| 0 | 86 | | } |
| | 87 | |
|
| | 88 | | private void DrawBearingLines(VertexHelper vh, Vector2 center, float maxRange, |
| 0 | 89 | | float scaleFactor) { |
| | 90 | | // Extend the bearing lines to 10x the major marker range |
| 0 | 91 | | float extendedMaxRange = maxRange * 10; |
| | 92 | |
|
| 0 | 93 | | float angleStep = 360f / _numberOfBearingLines; |
| | 94 | |
|
| 0 | 95 | | for (int i = 0; i < _numberOfBearingLines; ++i) { |
| 0 | 96 | | float angle = i * angleStep * Mathf.Deg2Rad; |
| 0 | 97 | | Vector2 direction = new Vector2(Mathf.Cos(angle), Mathf.Sin(angle)); |
| 0 | 98 | | DrawLine(vh, center, center + direction * extendedMaxRange * scaleFactor, _lineWidth); |
| 0 | 99 | | } |
| 0 | 100 | | } |
| | 101 | |
|
| | 102 | | private void DrawCircle(VertexHelper vh, Vector2 center, float radius, int segments, |
| 0 | 103 | | float widthMultiplier) { |
| 0 | 104 | | float angleStep = 360f / segments; |
| 0 | 105 | | Vector2 prevPoint = center + new Vector2(radius, 0); |
| | 106 | |
|
| 0 | 107 | | for (int i = 1; i <= segments; ++i) { |
| 0 | 108 | | float angle = i * angleStep * Mathf.Deg2Rad; |
| 0 | 109 | | Vector2 newPoint = center + new Vector2(Mathf.Cos(angle), Mathf.Sin(angle)) * radius; |
| 0 | 110 | | DrawLine(vh, prevPoint, newPoint, _lineWidth * widthMultiplier); |
| 0 | 111 | | prevPoint = newPoint; |
| 0 | 112 | | } |
| 0 | 113 | | } |
| | 114 | |
|
| 0 | 115 | | private void DrawLine(VertexHelper vh, Vector2 start, Vector2 end, float thickness) { |
| | 116 | | // Calculate the total scale factor from Canvas and RectTransform |
| 0 | 117 | | float totalScale = canvas.scaleFactor * transform.lossyScale.x; |
| | 118 | |
|
| | 119 | | // Thickness adjusted for total scale to maintain constant pixel width |
| 0 | 120 | | float adjustedThickness = thickness / totalScale; |
| | 121 | |
|
| 0 | 122 | | Vector2 direction = (end - start).normalized; |
| 0 | 123 | | Vector2 perpendicular = new Vector2(-direction.y, direction.x) * adjustedThickness * 0.5f; |
| | 124 | |
|
| 0 | 125 | | Vector2 v0 = start - perpendicular; |
| 0 | 126 | | Vector2 v1 = start + perpendicular; |
| 0 | 127 | | Vector2 v2 = end + perpendicular; |
| 0 | 128 | | Vector2 v3 = end - perpendicular; |
| | 129 | |
|
| 0 | 130 | | int index = vh.currentVertCount; |
| | 131 | |
|
| 0 | 132 | | UIVertex vertex = UIVertex.simpleVert; |
| 0 | 133 | | vertex.color = _gridColor; |
| | 134 | |
|
| 0 | 135 | | vertex.position = v0; |
| 0 | 136 | | vh.AddVert(vertex); |
| | 137 | |
|
| 0 | 138 | | vertex.position = v1; |
| 0 | 139 | | vh.AddVert(vertex); |
| | 140 | |
|
| 0 | 141 | | vertex.position = v2; |
| 0 | 142 | | vh.AddVert(vertex); |
| | 143 | |
|
| 0 | 144 | | vertex.position = v3; |
| 0 | 145 | | vh.AddVert(vertex); |
| | 146 | |
|
| 0 | 147 | | vh.AddTriangle(index, index + 1, index + 2); |
| 0 | 148 | | vh.AddTriangle(index + 2, index + 3, index); |
| 0 | 149 | | } |
| | 150 | |
|
| 2 | 151 | | private void ClearRangeTexts() { |
| 6 | 152 | | foreach (var text in _rangeTexts) { |
| 0 | 153 | | if (text != null) { |
| 0 | 154 | | DestroyImmediate(text.gameObject); |
| 0 | 155 | | } |
| 0 | 156 | | } |
| 2 | 157 | | _rangeTexts.Clear(); |
| 2 | 158 | | } |
| | 159 | |
|
| | 160 | | // New method to update range text labels |
| 1 | 161 | | private void UpdateRangeTexts() { |
| 1 | 162 | | ClearRangeTexts(); |
| | 163 | |
|
| | 164 | | // Only create new labels if they don't exist |
| 2 | 165 | | if (_rangeTexts.Count == 0) { |
| 17 | 166 | | for (int i = 1; i <= _numberOfRangeRings; ++i) { |
| 5 | 167 | | GameObject textObj = Instantiate(_rangeTextPrefab, transform); |
| 5 | 168 | | TextMeshProUGUI textComponent = textObj.GetComponent<TextMeshProUGUI>(); |
| 5 | 169 | | textComponent.color = _gridColor; |
| 5 | 170 | | textComponent.transform.localScale = Vector3.one; |
| 5 | 171 | | _rangeTexts.Add(textComponent); |
| 5 | 172 | | } |
| 1 | 173 | | } |
| | 174 | |
|
| | 175 | | // Update the text values |
| 17 | 176 | | for (int i = 0; i < _rangeTexts.Count; ++i) { |
| 5 | 177 | | _rangeTexts[i].text = GetRangeLabelText(i + 1); |
| 5 | 178 | | } |
| 1 | 179 | | } |
| | 180 | |
|
| | 181 | | // New method to position and adjust range text labels |
| 0 | 182 | | private void UpdateRangeTextsPositions(Vector2 center, float maxRange, float scaleFactor) { |
| 0 | 183 | | if (_rangeTexts.Count == 0) { |
| 0 | 184 | | return; |
| | 185 | | } |
| | 186 | |
|
| 0 | 187 | | for (int i = 1; i <= _numberOfRangeRings; ++i) { |
| 0 | 188 | | float radius = (i * maxRange) / _numberOfRangeRings; |
| 0 | 189 | | float adjustedRadius = radius * scaleFactor; |
| | 190 | |
|
| | 191 | | // Position to the right (0 degrees) |
| 0 | 192 | | Vector2 position = center + new Vector2(adjustedRadius, 0); |
| | 193 | |
|
| 0 | 194 | | TextMeshProUGUI textComponent = _rangeTexts[i - 1]; |
| 0 | 195 | | if (textComponent != null) { |
| 0 | 196 | | textComponent.rectTransform.anchoredPosition = position; |
| | 197 | | // Adjust text scale inversely to the grid's scaleFactor to maintain constant size |
| | 198 | | // Assuming uniform scaling for both x and y |
| 0 | 199 | | float inverseScale = 4f / scaleFactor; |
| | 200 | | // textComponent.transform.localScale = new Vector3(inverseScale, inverseScale, 1f); |
| 0 | 201 | | } else { |
| | 202 | | // Remove the object if it doesn't have a TextMeshProUGUI component |
| 0 | 203 | | _rangeTexts.Clear(); |
| 0 | 204 | | return; |
| | 205 | | } |
| 0 | 206 | | } |
| 0 | 207 | | } |
| | 208 | |
|
| | 209 | | // Helper method to get the range label text |
| 5 | 210 | | private string GetRangeLabelText(int ringIndex) { |
| 5 | 211 | | float maxRange = _rangeScales[_currentRangeIndex]; |
| 5 | 212 | | float rangeValue = (ringIndex * maxRange) / _numberOfRangeRings; |
| | 213 | |
|
| 6 | 214 | | if (rangeValue >= 1000f) { |
| 1 | 215 | | return $"{rangeValue / 1000f:F0} km"; |
| 4 | 216 | | } else { |
| 4 | 217 | | return $"{rangeValue:F0} m"; |
| | 218 | | } |
| 5 | 219 | | } |
| | 220 | |
|
| 0 | 221 | | protected override void OnDestroy() { |
| 0 | 222 | | base.OnDestroy(); |
| 0 | 223 | | ClearRangeTexts(); |
| 0 | 224 | | } |
| | 225 | | } |