| | 1 | | using UnityEngine; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using UnityEngine.UI; |
| | 4 | | using System.Linq; |
| | 5 | |
|
| | 6 | | public class TacticalPanelController : MonoBehaviour { |
| 0 | 7 | | public static TacticalPanelController Instance { get; private set; } |
| | 8 | |
|
| 0 | 9 | | private void Awake() { |
| 0 | 10 | | if (Instance == null) { |
| 0 | 11 | | Instance = this; |
| 0 | 12 | | InitializeController(); |
| 0 | 13 | | } else { |
| 0 | 14 | | Destroy(gameObject); |
| 0 | 15 | | } |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | [Tooltip("The UI group that contains the radar symbology elements")] |
| | 19 | | [SerializeField] |
| | 20 | | private GameObject _radarUIGroup; |
| | 21 | |
|
| | 22 | | [SerializeField] |
| | 23 | | [Tooltip("How often to refresh symbol positions (in seconds)")] |
| 0 | 24 | | private float _refreshRate = 0.1f; |
| | 25 | |
|
| | 26 | | [SerializeField] |
| 0 | 27 | | private float _keyboardPanSpeed = 500f; // Adjust this value in the inspector |
| | 28 | |
|
| | 29 | | [SerializeField] |
| 0 | 30 | | private float _panelZoomSpeed = 10.0f; |
| | 31 | |
|
| | 32 | | private RectTransform _radarUIGroupRectTransform; |
| | 33 | | private IADS _iads; |
| | 34 | | private float _timeSinceLastRefresh; |
| 0 | 35 | | private readonly Dictionary<TrackFileData, GameObject> _trackSymbols = |
| | 36 | | new Dictionary<TrackFileData, GameObject>(); |
| | 37 | |
|
| 0 | 38 | | private List<GameObject> _originSymbols = new List<GameObject>(); |
| | 39 | |
|
| | 40 | | private TacticalPolarGridGraphic _polarGridGraphic; |
| | 41 | |
|
| 0 | 42 | | private void Start() { |
| 0 | 43 | | _iads = IADS.Instance; |
| 0 | 44 | | SetupRadarUIGroup(); |
| 0 | 45 | | _timeSinceLastRefresh = 0f; |
| 0 | 46 | | CreateOriginSymbol(); |
| 0 | 47 | | } |
| | 48 | |
|
| 0 | 49 | | private void Update() { |
| 0 | 50 | | HandleRefreshTimer(); |
| 0 | 51 | | } |
| | 52 | |
|
| 0 | 53 | | private void OnDisable() { |
| 0 | 54 | | ClearAllSymbols(); |
| 0 | 55 | | } |
| | 56 | |
|
| 0 | 57 | | private void InitializeController() { |
| | 58 | | // Initialize any controller-specific settings here if needed |
| | 59 | | // Create polar grid |
| 0 | 60 | | _polarGridGraphic = _radarUIGroup.GetComponent<TacticalPolarGridGraphic>(); |
| 0 | 61 | | if (_polarGridGraphic == null) { |
| 0 | 62 | | Debug.LogError("TacticalPolarGridGraphic not found on radar UI group"); |
| 0 | 63 | | } |
| 0 | 64 | | } |
| | 65 | |
|
| 0 | 66 | | private void SetupRadarUIGroup() { |
| 0 | 67 | | _radarUIGroupRectTransform = _radarUIGroup.GetComponent<RectTransform>(); |
| 0 | 68 | | ResetRadarUITransform(); |
| 0 | 69 | | } |
| | 70 | |
|
| 0 | 71 | | private void ResetRadarUITransform() { |
| 0 | 72 | | _radarUIGroupRectTransform.localScale = Vector3.one; |
| 0 | 73 | | _radarUIGroupRectTransform.localPosition = Vector3.zero; |
| 0 | 74 | | } |
| | 75 | |
|
| 0 | 76 | | private void HandleRefreshTimer() { |
| 0 | 77 | | _timeSinceLastRefresh += Time.unscaledDeltaTime; |
| | 78 | |
|
| 0 | 79 | | if (_timeSinceLastRefresh >= _refreshRate) { |
| 0 | 80 | | UpdateSymbols(); |
| 0 | 81 | | _timeSinceLastRefresh = 0f; |
| 0 | 82 | | } |
| 0 | 83 | | } |
| | 84 | |
|
| 0 | 85 | | private void UpdateSymbols() { |
| 0 | 86 | | UpdateTrackSymbols(_iads.GetThreatTracks()); |
| 0 | 87 | | UpdateTrackSymbols(_iads.GetInterceptorTracks()); |
| 0 | 88 | | } |
| | 89 | |
|
| | 90 | | private void UpdateTrackSymbols<T>(List<T> currentTracks) |
| 0 | 91 | | where T : TrackFileData { |
| | 92 | | // Remove inactive symbols |
| 0 | 93 | | var tracksToRemove = |
| | 94 | | _trackSymbols.Keys.OfType<T>().Where(track => !currentTracks.Contains(track)).ToList(); |
| | 95 | |
|
| 0 | 96 | | foreach (var track in tracksToRemove) { |
| 0 | 97 | | RemoveTrackSymbol(track); |
| 0 | 98 | | } |
| | 99 | |
|
| | 100 | | // Update or create active symbols |
| 0 | 101 | | foreach (var track in currentTracks) { |
| 0 | 102 | | if (track.Status == TrackStatus.DESTROYED) { |
| 0 | 103 | | RemoveTrackSymbol(track); |
| 0 | 104 | | continue; |
| | 105 | | } |
| | 106 | |
|
| 0 | 107 | | if (_trackSymbols.TryGetValue(track, out GameObject symbolObj)) { |
| 0 | 108 | | UpdateSymbolPosition(symbolObj, track.Agent.transform.position); |
| 0 | 109 | | UpdateSymbolScale(symbolObj); |
| 0 | 110 | | UpdateSymbolRotation(symbolObj, track.Agent.transform.forward); |
| 0 | 111 | | UpdateSymbolSpeedAlt(symbolObj.GetComponent<TacticalSymbol>(), track); |
| 0 | 112 | | } else { |
| 0 | 113 | | CreateTrackSymbol(track); |
| 0 | 114 | | } |
| 0 | 115 | | } |
| 0 | 116 | | } |
| | 117 | |
|
| 0 | 118 | | private GameObject CreateSymbolPrefab() { |
| 0 | 119 | | return Instantiate(Resources.Load<GameObject>("Prefabs/Symbols/SymbolPrefab"), |
| | 120 | | _radarUIGroupRectTransform); |
| 0 | 121 | | } |
| | 122 | |
|
| 0 | 123 | | private void CreateOriginSymbol() { |
| 0 | 124 | | GameObject symbolPrefab = CreateSymbolPrefab(); |
| 0 | 125 | | symbolPrefab.GetComponent<TacticalSymbol>().SetSprite("friendly_destroyer_present"); |
| 0 | 126 | | symbolPrefab.GetComponent<TacticalSymbol>().DisableDirectionArrow(); |
| 0 | 127 | | symbolPrefab.GetComponent<TacticalSymbol>().SetSpeedAlt(""); |
| 0 | 128 | | symbolPrefab.GetComponent<TacticalSymbol>().SetType(""); |
| 0 | 129 | | symbolPrefab.GetComponent<TacticalSymbol>().SetUniqueDesignator(""); |
| 0 | 130 | | _originSymbols.Add(symbolPrefab); |
| 0 | 131 | | } |
| | 132 | |
|
| 0 | 133 | | private void CreateTrackSymbol(TrackFileData trackFile) { |
| 0 | 134 | | GameObject symbolObj = CreateSymbolPrefab(); |
| 0 | 135 | | TacticalSymbol tacticalSymbol = symbolObj.GetComponent<TacticalSymbol>(); |
| | 136 | |
|
| | 137 | | // Set common properties |
| 0 | 138 | | tacticalSymbol.SetSprite(trackFile.Agent.staticAgentConfig.symbolPresent); |
| 0 | 139 | | tacticalSymbol.SetDirectionArrowRotation( |
| | 140 | | Mathf.Atan2(trackFile.Agent.GetVelocity().z, trackFile.Agent.GetVelocity().x) * |
| | 141 | | Mathf.Rad2Deg); |
| | 142 | |
|
| 0 | 143 | | UpdateSymbolSpeedAlt(tacticalSymbol, trackFile); |
| | 144 | |
|
| | 145 | | // Set type-specific properties |
| 0 | 146 | | if (trackFile is ThreatData) { |
| 0 | 147 | | tacticalSymbol.SetType(trackFile.Agent.staticAgentConfig.agentClass.ToString()); |
| 0 | 148 | | } else if (trackFile is InterceptorData) { |
| 0 | 149 | | tacticalSymbol.SetType("Interceptor"); |
| 0 | 150 | | } |
| | 151 | |
|
| 0 | 152 | | tacticalSymbol.SetUniqueDesignator(trackFile.TrackID); |
| | 153 | |
|
| 0 | 154 | | UpdateSymbolPosition(symbolObj, trackFile.Agent.transform.position); |
| 0 | 155 | | UpdateSymbolRotation(symbolObj, trackFile.Agent.transform.forward); |
| 0 | 156 | | UpdateSymbolScale(symbolObj); |
| | 157 | |
|
| 0 | 158 | | _trackSymbols.Add(trackFile, symbolObj); |
| 0 | 159 | | } |
| | 160 | |
|
| 0 | 161 | | private void UpdateSymbolSpeedAlt(TacticalSymbol tacticalSymbol, TrackFileData trackFile) { |
| 0 | 162 | | tacticalSymbol.SetSpeedAlt( |
| | 163 | | $"{Utilities.ConvertMpsToKnots(trackFile.Agent.GetVelocity().magnitude):F0}kts/" + |
| | 164 | | $"{Utilities.ConvertMetersToFeet(trackFile.Agent.transform.position.y):F0}ft"); |
| 0 | 165 | | } |
| | 166 | |
|
| | 167 | | /// <summary> |
| | 168 | | /// Updates the position of a symbol based on the threat's real-world position. |
| | 169 | | /// </summary> |
| | 170 | | /// <param name="symbolObj">The symbol GameObject to update.</param> |
| | 171 | | /// <param name="threatPosition">The real-world position of the threat.</param> |
| 0 | 172 | | private void UpdateSymbolPosition(GameObject symbolObj, Vector3 threatPosition) { |
| 0 | 173 | | if (_polarGridGraphic == null) { |
| 0 | 174 | | Debug.LogError("TacticalPolarGridGraphic reference is missing."); |
| 0 | 175 | | return; |
| | 176 | | } |
| | 177 | |
|
| | 178 | | // Get the current scale factor from the grid |
| 0 | 179 | | float scaleFactor = _polarGridGraphic.CurrentScaleFactor; |
| | 180 | |
|
| | 181 | | // Assuming threatPosition is in meters, convert to the grid's scale |
| | 182 | | // Adjust the division factor as per your real-world scaling |
| 0 | 183 | | float scaleDivisionFactor = 1000f; // Example: 1000 meters = 1 unit on grid |
| | 184 | |
|
| 0 | 185 | | Vector3 scaledPosition = new Vector3(threatPosition.z / scaleDivisionFactor, |
| | 186 | | threatPosition.x / scaleDivisionFactor, 0f); |
| | 187 | |
|
| | 188 | | // Apply the scaleFactor to ensure positioning aligns with grid scaling |
| 0 | 189 | | symbolObj.transform.localPosition = scaledPosition * scaleFactor; |
| 0 | 190 | | } |
| | 191 | |
|
| 0 | 192 | | private void UpdateSymbolRotation(GameObject symbolObj, Vector3 forward) { |
| 0 | 193 | | symbolObj.GetComponent<TacticalSymbol>().SetDirectionArrowRotation( |
| | 194 | | -1 * Mathf.Atan2(forward.z, forward.x) * Mathf.Rad2Deg); |
| 0 | 195 | | } |
| | 196 | |
|
| 0 | 197 | | private void RemoveTrackSymbol(TrackFileData trackFile) { |
| 0 | 198 | | if (_trackSymbols.TryGetValue(trackFile, out GameObject symbolObj)) { |
| 0 | 199 | | Destroy(symbolObj); |
| 0 | 200 | | _trackSymbols.Remove(trackFile); |
| 0 | 201 | | } |
| 0 | 202 | | } |
| | 203 | |
|
| 0 | 204 | | private void ClearAllSymbols() { |
| 0 | 205 | | foreach (var symbol in _trackSymbols.Values) { |
| 0 | 206 | | Destroy(symbol); |
| 0 | 207 | | } |
| 0 | 208 | | _trackSymbols.Clear(); |
| 0 | 209 | | } |
| | 210 | |
|
| 0 | 211 | | public void CycleRangeUp() { |
| 0 | 212 | | _polarGridGraphic.CycleRangeUp(); |
| 0 | 213 | | } |
| | 214 | |
|
| 0 | 215 | | public void CycleRangeDown() { |
| 0 | 216 | | _polarGridGraphic.CycleRangeDown(); |
| 0 | 217 | | } |
| | 218 | |
|
| 0 | 219 | | public void ZoomIn(float amount) { |
| 0 | 220 | | AdjustRadarScale(amount * _panelZoomSpeed); |
| 0 | 221 | | } |
| | 222 | |
|
| 0 | 223 | | public void ZoomOut(float amount) { |
| 0 | 224 | | AdjustRadarScale(-amount * _panelZoomSpeed); |
| 0 | 225 | | } |
| | 226 | |
|
| 0 | 227 | | public void Pan(Vector2 delta) { |
| 0 | 228 | | Vector3 currentPos = _radarUIGroupRectTransform.localPosition; |
| 0 | 229 | | _radarUIGroupRectTransform.localPosition = |
| | 230 | | new Vector3(currentPos.x + delta.x, currentPos.y + delta.y, currentPos.z); |
| 0 | 231 | | } |
| | 232 | |
|
| 0 | 233 | | public void PanWithKeyboard(Vector2 direction) { |
| 0 | 234 | | Vector2 delta = direction * _keyboardPanSpeed * Time.unscaledDeltaTime; |
| 0 | 235 | | Pan(delta); |
| 0 | 236 | | } |
| | 237 | |
|
| | 238 | | /// <summary> |
| | 239 | | /// Adjusts the radar scale by the specified amount. |
| | 240 | | /// </summary> |
| | 241 | | /// <param name="amount">The amount to adjust the radar scale.</param> |
| 0 | 242 | | private void AdjustRadarScale(float amount) { |
| 0 | 243 | | Vector3 newScale = _radarUIGroupRectTransform.localScale + new Vector3(amount, amount, 0f); |
| | 244 | |
|
| | 245 | | // Prevent negative or too small scaling |
| 0 | 246 | | if (newScale.x < 0.01f || newScale.y < 0.01f) { |
| 0 | 247 | | return; |
| | 248 | | } |
| | 249 | |
|
| 0 | 250 | | _radarUIGroupRectTransform.localScale = newScale; |
| | 251 | |
|
| | 252 | | // Update all existing symbols' scales |
| 0 | 253 | | foreach (var symbol in _trackSymbols.Values) { |
| 0 | 254 | | UpdateSymbolScale(symbol); |
| 0 | 255 | | } |
| | 256 | | // Temporarily necessary until we implement IADS vessel system |
| 0 | 257 | | UpdateSymbolScale(_originSymbols[0]); |
| 0 | 258 | | } |
| | 259 | |
|
| 0 | 260 | | private void UpdateSymbolScale(GameObject symbolObj) { |
| | 261 | | // Calculate inverse scale to maintain constant visual size |
| 0 | 262 | | float inverseScale = 2f / _radarUIGroupRectTransform.localScale.x; |
| 0 | 263 | | symbolObj.transform.localScale = new Vector3(inverseScale, inverseScale, 1f); |
| 0 | 264 | | } |
| | 265 | | } |