| | 1 | | using System.Collections; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using UnityEngine; |
| | 4 | | using System.Linq; |
| | 5 | |
|
| | 6 | | public class ParticleManager : MonoBehaviour { |
| 0 | 7 | | public static ParticleManager Instance { get; private set; } |
| | 8 | |
|
| | 9 | | private Queue<GameObject> _missileTrailPool; |
| | 10 | | [SerializeField] |
| | 11 | | // Queues cannot be serialized, so if we want to see it in the inspector, |
| | 12 | | // we need to serialize the count. |
| | 13 | | private int _missileTrailPoolCount; |
| | 14 | | [SerializeField] |
| | 15 | | private Queue<GameObject> _missileExplosionPool; |
| | 16 | | [SerializeField] |
| | 17 | | private int _missileExplosionPoolCount; |
| | 18 | |
|
| | 19 | | [SerializeField] |
| 0 | 20 | | private List<TrailRenderer> _agentTrailRenderers = new List<TrailRenderer>(); |
| | 21 | |
|
| | 22 | | [SerializeField, Tooltip("The material to use for commandeered interceptor trail renderers")] |
| | 23 | | public Material interceptorTrailMatFaded; |
| | 24 | | [SerializeField, Tooltip("The material to use for commandeered threat trail renderers")] |
| | 25 | | public Material threatTrailMatFaded; |
| | 26 | |
|
| | 27 | | [SerializeField] |
| 0 | 28 | | private List<GameObject> _hitMarkerList = new List<GameObject>(); |
| | 29 | |
|
| 0 | 30 | | private void Awake() { |
| 0 | 31 | | if (Instance == null) { |
| 0 | 32 | | Instance = this; |
| 0 | 33 | | DontDestroyOnLoad(gameObject); |
| 0 | 34 | | } else { |
| 0 | 35 | | Destroy(gameObject); |
| 0 | 36 | | } |
| 0 | 37 | | } |
| | 38 | |
|
| 0 | 39 | | private void Start() { |
| 0 | 40 | | _missileTrailPool = new Queue<GameObject>(); |
| 0 | 41 | | _missileExplosionPool = new Queue<GameObject>(); |
| 0 | 42 | | _hitMarkerList = new List<GameObject>(); |
| | 43 | |
|
| 0 | 44 | | if (SimManager.Instance.simulatorConfig.enableMissileTrailEffect) { |
| 0 | 45 | | InitializeMissileTrailParticlePool(); |
| 0 | 46 | | } |
| 0 | 47 | | if (SimManager.Instance.simulatorConfig.enableExplosionEffect) { |
| 0 | 48 | | InitializeMissileExplosionParticlePool(); |
| 0 | 49 | | } |
| | 50 | |
|
| | 51 | | // Subscribe to events. |
| 0 | 52 | | SimManager.Instance.OnNewInterceptor += RegisterNewInterceptor; |
| 0 | 53 | | SimManager.Instance.OnNewThreat += RegisterNewThreat; |
| | 54 | |
|
| 0 | 55 | | SimManager.Instance.OnSimulationEnded += RegisterSimulationEnded; |
| 0 | 56 | | } |
| | 57 | |
|
| 0 | 58 | | private void Update() { |
| 0 | 59 | | _missileTrailPoolCount = _missileTrailPool.Count; |
| 0 | 60 | | _missileExplosionPoolCount = _missileExplosionPool.Count; |
| 0 | 61 | | } |
| | 62 | |
|
| 0 | 63 | | private void InitializeMissileTrailParticlePool() { |
| | 64 | | // Grab from Resources/Prefabs/Effects |
| 0 | 65 | | GameObject missileTrailPrefab = |
| | 66 | | Resources.Load<GameObject>("Prefabs/Effects/InterceptorSmokeEffect"); |
| | 67 | |
|
| | 68 | | // Pre-instantiate 10 missile trail particles |
| 0 | 69 | | for (int i = 0; i < 10; ++i) { |
| 0 | 70 | | InstantiateMissileTrail(missileTrailPrefab); |
| 0 | 71 | | } |
| | 72 | | // Instantiate over an interval |
| 0 | 73 | | StartCoroutine(InstantiateMissileTrailsOverTime(missileTrailPrefab, 200, 0.05f)); |
| 0 | 74 | | } |
| | 75 | |
|
| 0 | 76 | | private void InitializeMissileExplosionParticlePool() { |
| 0 | 77 | | GameObject missileExplosionPrefab = |
| | 78 | | Resources.Load<GameObject>("Prefabs/Effects/InterceptExplosionEffect"); |
| | 79 | | // Pre-instantiate 10 missile trail particles |
| 0 | 80 | | for (int i = 0; i < 10; ++i) { |
| 0 | 81 | | InstantiateMissileExplosion(missileExplosionPrefab); |
| 0 | 82 | | } |
| 0 | 83 | | StartCoroutine(InstantiateMissileExplosionsOverTime(missileExplosionPrefab, 200, 0.05f)); |
| 0 | 84 | | } |
| | 85 | |
|
| 0 | 86 | | private void RegisterSimulationEnded() { |
| 0 | 87 | | foreach (var trailRenderer in _agentTrailRenderers) { |
| 0 | 88 | | Destroy(trailRenderer.gameObject); |
| 0 | 89 | | } |
| 0 | 90 | | _agentTrailRenderers.Clear(); |
| 0 | 91 | | } |
| | 92 | |
|
| 0 | 93 | | private void RegisterNewInterceptor(Interceptor interceptor) { |
| 0 | 94 | | interceptor.OnInterceptHit += RegisterInterceptorHit; |
| 0 | 95 | | interceptor.OnInterceptMiss += RegisterInterceptorMiss; |
| 0 | 96 | | interceptor.OnTerminated += RegisterAgentTerminated; |
| 0 | 97 | | } |
| | 98 | |
|
| 0 | 99 | | private void RegisterNewThreat(Threat threat) { |
| 0 | 100 | | threat.OnThreatHit += RegisterThreatHit; |
| 0 | 101 | | threat.OnThreatMiss += RegisterThreatMiss; |
| 0 | 102 | | threat.OnTerminated += RegisterAgentTerminated; |
| 0 | 103 | | } |
| | 104 | |
|
| 0 | 105 | | private void RegisterAgentTerminated(Agent agent) { |
| 0 | 106 | | if (SimManager.Instance.simulatorConfig.persistentFlightTrails) { |
| 0 | 107 | | CommandeerAgentTrailRenderer(agent); |
| 0 | 108 | | } |
| 0 | 109 | | } |
| | 110 | |
|
| 0 | 111 | | private void RegisterInterceptorHit(Interceptor interceptor, Threat threat) { |
| 0 | 112 | | if (SimManager.Instance.simulatorConfig.enableExplosionEffect) { |
| 0 | 113 | | PlayMissileExplosion(interceptor.transform.position); |
| 0 | 114 | | } |
| 0 | 115 | | GameObject hitMarkerObject = SpawnHitMarker(interceptor.transform.position); |
| 0 | 116 | | hitMarkerObject.GetComponent<UIEventMarker>().SetEventHit(); |
| 0 | 117 | | _hitMarkerList.Add(hitMarkerObject); |
| 0 | 118 | | } |
| | 119 | |
|
| 0 | 120 | | private void RegisterInterceptorMiss(Interceptor interceptor, Threat threat) { |
| | 121 | | // It does not make sense to commandeer the TrailRenderer for a miss. |
| | 122 | | // As the interceptor remains in flight |
| 0 | 123 | | GameObject hitMarkerObject = SpawnHitMarker(interceptor.transform.position); |
| 0 | 124 | | hitMarkerObject.GetComponent<UIEventMarker>().SetEventMiss(); |
| 0 | 125 | | _hitMarkerList.Add(hitMarkerObject); |
| 0 | 126 | | } |
| | 127 | |
|
| 0 | 128 | | private void RegisterThreatHit(Threat threat) {} |
| | 129 | |
|
| 0 | 130 | | private void RegisterThreatMiss(Threat threat) {} |
| | 131 | |
|
| 0 | 132 | | private void CommandeerAgentTrailRenderer(Agent agent) { |
| | 133 | | // Take the TrailRenderer component off of the agent, onto us, and store it |
| | 134 | | // (so we can destroy it later on simulation end) |
| 0 | 135 | | TrailRenderer trailRenderer = agent.GetComponentInChildren<TrailRenderer>(); |
| 0 | 136 | | if (trailRenderer != null) { |
| 0 | 137 | | trailRenderer.transform.parent = transform; |
| 0 | 138 | | _agentTrailRenderers.Add(trailRenderer); |
| 0 | 139 | | trailRenderer.material = (agent is Threat) ? threatTrailMatFaded : interceptorTrailMatFaded; |
| 0 | 140 | | } else { |
| 0 | 141 | | Debug.LogWarning("Agent has no TrailRenderer component"); |
| 0 | 142 | | } |
| 0 | 143 | | } |
| | 144 | |
|
| 0 | 145 | | private GameObject SpawnHitMarker(Vector3 position) { |
| 0 | 146 | | GameObject hitMarker = Instantiate(Resources.Load<GameObject>("Prefabs/HitMarkerPrefab"), |
| | 147 | | position, Quaternion.identity); |
| 0 | 148 | | _hitMarkerList.Add(hitMarker); |
| 0 | 149 | | return hitMarker; |
| 0 | 150 | | } |
| | 151 | |
|
| 0 | 152 | | public void ClearHitMarkers() { |
| 0 | 153 | | foreach (var hitMarker in _hitMarkerList) { |
| 0 | 154 | | Destroy(hitMarker); |
| 0 | 155 | | } |
| 0 | 156 | | _hitMarkerList.Clear(); |
| 0 | 157 | | } |
| | 158 | |
|
| | 159 | | /// <summary> |
| | 160 | | /// Returns a missile explosion particle prefab from the pool and plays it at the specified |
| | 161 | | /// location. If the pool is empty, it returns null. |
| | 162 | | /// </summary> |
| | 163 | |
|
| 0 | 164 | | public GameObject PlayMissileExplosion(Vector3 position) { |
| 0 | 165 | | if (_missileExplosionPool.Count > 0) { |
| 0 | 166 | | GameObject explosion = _missileExplosionPool.Dequeue(); |
| 0 | 167 | | explosion.transform.position = position; |
| | 168 | |
|
| 0 | 169 | | ParticleSystem particleSystem = explosion.GetComponent<ParticleSystem>(); |
| 0 | 170 | | if (particleSystem != null) { |
| 0 | 171 | | particleSystem.Clear(); |
| 0 | 172 | | particleSystem.Play(); |
| 0 | 173 | | StartCoroutine(ReturnExplosionAfterDelay(explosion, particleSystem.main.duration)); |
| 0 | 174 | | } else { |
| 0 | 175 | | Debug.LogError("Missile explosion particle has no ParticleSystem component"); |
| 0 | 176 | | _missileExplosionPool.Enqueue(explosion); |
| 0 | 177 | | return null; |
| | 178 | | } |
| | 179 | |
|
| 0 | 180 | | return explosion; |
| | 181 | | } |
| 0 | 182 | | return null; |
| 0 | 183 | | } |
| | 184 | |
|
| 0 | 185 | | private IEnumerator ReturnExplosionAfterDelay(GameObject explosion, float delay) { |
| 0 | 186 | | yield return new WaitForSeconds(delay); |
| 0 | 187 | | ReturnMissileExplosionParticle(explosion); |
| 0 | 188 | | } |
| | 189 | |
|
| 0 | 190 | | private void ReturnMissileExplosionParticle(GameObject explosion) { |
| 0 | 191 | | if (explosion == null) { |
| 0 | 192 | | Debug.LogError("Attempted to return a null missile explosion particle"); |
| 0 | 193 | | return; |
| | 194 | | } |
| | 195 | |
|
| 0 | 196 | | explosion.transform.parent = transform; |
| 0 | 197 | | explosion.transform.localPosition = Vector3.zero; |
| 0 | 198 | | ParticleSystem particleSystem = explosion.GetComponent<ParticleSystem>(); |
| 0 | 199 | | if (particleSystem != null) { |
| 0 | 200 | | particleSystem.Stop(); |
| 0 | 201 | | particleSystem.Clear(); |
| 0 | 202 | | } else { |
| 0 | 203 | | Debug.LogError("Attempted to return a missile explosion particle with no particle system"); |
| 0 | 204 | | } |
| | 205 | |
|
| 0 | 206 | | _missileExplosionPool.Enqueue(explosion); |
| 0 | 207 | | } |
| | 208 | |
|
| 0 | 209 | | private GameObject InstantiateMissileTrail(GameObject prefab) { |
| 0 | 210 | | GameObject trail = Instantiate(prefab, transform); |
| 0 | 211 | | trail.GetComponent<ParticleSystem>().Stop(); |
| 0 | 212 | | _missileTrailPool.Enqueue(trail); |
| 0 | 213 | | return trail; |
| 0 | 214 | | } |
| | 215 | |
|
| 0 | 216 | | private GameObject InstantiateMissileExplosion(GameObject prefab) { |
| 0 | 217 | | GameObject explosion = Instantiate(prefab, transform); |
| 0 | 218 | | explosion.GetComponent<ParticleSystem>().Stop(); |
| 0 | 219 | | _missileExplosionPool.Enqueue(explosion); |
| 0 | 220 | | return explosion; |
| 0 | 221 | | } |
| | 222 | |
|
| | 223 | | private IEnumerator InstantiateMissileTrailsOverTime(GameObject prefab, int count, |
| 0 | 224 | | float duration) { |
| 0 | 225 | | float interval = duration / count; |
| 0 | 226 | | for (int i = 0; i < count; ++i) { |
| 0 | 227 | | InstantiateMissileTrail(prefab); |
| 0 | 228 | | yield return new WaitForSeconds(interval); |
| 0 | 229 | | } |
| 0 | 230 | | } |
| | 231 | |
|
| | 232 | | private IEnumerator InstantiateMissileExplosionsOverTime(GameObject prefab, int count, |
| 0 | 233 | | float duration) { |
| 0 | 234 | | float interval = duration / count; |
| 0 | 235 | | for (int i = 0; i < count; ++i) { |
| 0 | 236 | | InstantiateMissileExplosion(prefab); |
| 0 | 237 | | yield return new WaitForSeconds(interval); |
| 0 | 238 | | } |
| 0 | 239 | | } |
| | 240 | |
|
| | 241 | | /// <summary> |
| | 242 | | /// Returns a missile trail particle prefab from the pool. |
| | 243 | | /// If the pool is empty, it returns null |
| | 244 | | /// </summary> |
| | 245 | | /// <returns></returns> |
| 0 | 246 | | public GameObject RequestMissileTrailParticle() { |
| 0 | 247 | | if (_missileTrailPool.Count > 0 && |
| 0 | 248 | | SimManager.Instance.simulatorConfig.enableMissileTrailEffect) { |
| 0 | 249 | | GameObject trail = _missileTrailPool.Dequeue(); |
| | 250 | |
|
| 0 | 251 | | return trail; |
| | 252 | | } |
| 0 | 253 | | return null; |
| 0 | 254 | | } |
| | 255 | |
|
| 0 | 256 | | public void ReturnMissileTrailParticle(GameObject trail) { |
| 0 | 257 | | if (trail == null) { |
| 0 | 258 | | Debug.LogError("Attempted to return a null missile trail particle"); |
| 0 | 259 | | return; |
| | 260 | | } |
| | 261 | |
|
| 0 | 262 | | trail.transform.parent = transform; |
| 0 | 263 | | trail.transform.localPosition = Vector3.zero; |
| 0 | 264 | | ParticleSystem particleSystem = trail.GetComponent<ParticleSystem>(); |
| 0 | 265 | | if (particleSystem != null) { |
| 0 | 266 | | particleSystem.Stop(); |
| 0 | 267 | | particleSystem.Clear(); |
| 0 | 268 | | var emission = particleSystem.emission; |
| 0 | 269 | | emission.enabled = true; |
| 0 | 270 | | } else { |
| 0 | 271 | | Debug.LogError("Attempted to return a missile trail particle with no particle system"); |
| 0 | 272 | | } |
| | 273 | |
|
| 0 | 274 | | _missileTrailPool.Enqueue(trail); |
| 0 | 275 | | } |
| | 276 | | } |