| | 1 | | using System.Collections; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using UnityEngine; |
| | 4 | |
|
| | 5 | | public class Interceptor : Agent { |
| | 6 | | [SerializeField] |
| 14 | 7 | | private float _navigationGain = 3f; // Typically 3-5. |
| | 8 | |
|
| | 9 | | [SerializeField] |
| 14 | 10 | | protected bool _showDebugVectors = true; |
| | 11 | |
|
| | 12 | | private GameObject _missileTrailEffect; |
| 14 | 13 | | private bool _missileTrailEffectAttached = false; |
| | 14 | |
|
| | 15 | | private Coroutine _returnParticleToManagerCoroutine; |
| | 16 | |
|
| | 17 | | private Vector3 _accelerationInput; |
| | 18 | |
|
| 14 | 19 | | private double _elapsedTime = 0; |
| | 20 | |
|
| 0 | 21 | | protected override void Awake() { |
| 0 | 22 | | base.Awake(); |
| 0 | 23 | | SetFlightPhase(FlightPhase.INITIALIZED); |
| 0 | 24 | | } |
| | 25 | |
|
| 14 | 26 | | public override bool IsAssignable() { |
| 14 | 27 | | bool assignable = !HasAssignedTarget(); |
| 14 | 28 | | return assignable; |
| 14 | 29 | | } |
| | 30 | |
|
| 0 | 31 | | protected override void UpdateReady(double deltaTime) { |
| 0 | 32 | | Vector3 accelerationInput = Vector3.zero; |
| 0 | 33 | | Vector3 acceleration = CalculateAcceleration(accelerationInput); |
| 0 | 34 | | GetComponent<Rigidbody>().AddForce(acceleration, ForceMode.Acceleration); |
| 0 | 35 | | } |
| | 36 | |
|
| 0 | 37 | | protected override void FixedUpdate() { |
| 0 | 38 | | base.FixedUpdate(); |
| 0 | 39 | | if (_showDebugVectors) { |
| 0 | 40 | | DrawDebugVectors(); |
| 0 | 41 | | } |
| 0 | 42 | | } |
| | 43 | |
|
| 0 | 44 | | protected override void UpdateBoost(double deltaTime) { |
| 0 | 45 | | if (_missileTrailEffect == null) { |
| 0 | 46 | | AttachMissileTrailEffect(); |
| 0 | 47 | | } |
| 0 | 48 | | UpdateMissileTrailEffect(); |
| | 49 | |
|
| | 50 | | // Calculate the boost acceleration. |
| 0 | 51 | | float boostAcceleration = |
| | 52 | | (float)(staticAgentConfig.boostConfig.boostAcceleration * Constants.kGravity); |
| 0 | 53 | | Vector3 boostAccelerationVector = boostAcceleration * transform.forward; |
| | 54 | |
|
| | 55 | | // Add the PN acceleration to the boost acceleration. |
| 0 | 56 | | Vector3 controllerAcceleration = CalculateAccelerationInput(deltaTime); |
| 0 | 57 | | Vector3 accelerationInput = boostAccelerationVector + controllerAcceleration; |
| | 58 | |
|
| | 59 | | // Calculate the total acceleration. |
| 0 | 60 | | Vector3 acceleration = CalculateAcceleration(accelerationInput); |
| | 61 | |
|
| | 62 | | // Apply the acceleration. |
| 0 | 63 | | GetComponent<Rigidbody>().AddForce(acceleration, ForceMode.Acceleration); |
| 0 | 64 | | } |
| | 65 | |
|
| 0 | 66 | | protected override void UpdateMidCourse(double deltaTime) { |
| 0 | 67 | | UpdateMissileTrailEffect(); |
| | 68 | |
|
| 0 | 69 | | _elapsedTime += deltaTime; |
| 0 | 70 | | Vector3 accelerationInput = CalculateAccelerationInput(deltaTime); |
| | 71 | |
|
| | 72 | | // Calculate and set the total acceleration. |
| 0 | 73 | | Vector3 acceleration = CalculateAcceleration(accelerationInput); |
| 0 | 74 | | GetComponent<Rigidbody>().AddForce(acceleration, ForceMode.Acceleration); |
| 0 | 75 | | } |
| | 76 | |
|
| 0 | 77 | | private Vector3 CalculateAccelerationInput(double deltaTime) { |
| 0 | 78 | | Vector3 accelerationInput = Vector3.zero; |
| 0 | 79 | | float maxNormalAcceleration = CalculateMaxNormalAcceleration(); |
| | 80 | |
|
| 0 | 81 | | if (!HasAssignedTarget()) { |
| | 82 | | // Counter gravity if possible. |
| 0 | 83 | | accelerationInput = |
| | 84 | | (float)Constants.kGravity / Vector3.Dot(transform.up, Vector3.up) * transform.up; |
| 0 | 85 | | accelerationInput = Vector3.ClampMagnitude(accelerationInput, maxNormalAcceleration); |
| 0 | 86 | | _accelerationInput = accelerationInput; |
| 0 | 87 | | return accelerationInput; |
| | 88 | | } |
| | 89 | |
|
| 0 | 90 | | UpdateTargetModel(deltaTime); |
| | 91 | |
|
| | 92 | | // Check whether the threat should be considered a miss. |
| 0 | 93 | | SensorOutput sensorOutput = GetComponent<Sensor>().Sense(_target); |
| | 94 | | // TODO(dlovell): This causes trouble with the Fateh 110B (high-speed threats). |
| | 95 | | // if (sensorOutput.velocity.range > 1000f) { |
| | 96 | | // HandleInterceptMiss(); |
| | 97 | | // return Vector3.zero; |
| | 98 | | // } |
| | 99 | |
|
| | 100 | | IController controller; |
| 0 | 101 | | if (dynamicAgentConfig.dynamic_config.flight_config.augmentedPnEnabled) { |
| 0 | 102 | | controller = new ApnController(this, _navigationGain); |
| 0 | 103 | | } else { |
| 0 | 104 | | controller = new PnController(this, _navigationGain); |
| 0 | 105 | | } |
| 0 | 106 | | accelerationInput = controller.Plan(); |
| | 107 | |
|
| | 108 | | // Clamp the normal acceleration input to the maximum normal acceleration. |
| 0 | 109 | | accelerationInput = Vector3.ClampMagnitude(accelerationInput, maxNormalAcceleration); |
| 0 | 110 | | _accelerationInput = accelerationInput; |
| 0 | 111 | | return accelerationInput; |
| 0 | 112 | | } |
| | 113 | |
|
| 0 | 114 | | private void UpdateTargetModel(double deltaTime) { |
| 0 | 115 | | _elapsedTime += deltaTime; |
| 0 | 116 | | float sensorUpdatePeriod = 1f / dynamicAgentConfig.dynamic_config.sensor_config.frequency; |
| 0 | 117 | | if (_elapsedTime >= sensorUpdatePeriod) { |
| | 118 | | // TODO: Implement guidance filter to estimate state from the sensor output. |
| | 119 | | // For now, we'll use the threat's actual state. |
| 0 | 120 | | _targetModel.SetPosition(_target.GetPosition()); |
| 0 | 121 | | _targetModel.SetVelocity(_target.GetVelocity()); |
| 0 | 122 | | _targetModel.SetAcceleration(_target.GetAcceleration()); |
| 0 | 123 | | _elapsedTime = 0; |
| 0 | 124 | | } |
| 0 | 125 | | } |
| | 126 | |
|
| 0 | 127 | | private void OnTriggerEnter(Collider other) { |
| | 128 | | // Check if the interceptor hit the floor with a negative vertical speed. |
| 0 | 129 | | if (other.gameObject.name == "Floor" && Vector3.Dot(GetVelocity(), Vector3.up) < 0) { |
| 0 | 130 | | HandleHitGround(); |
| 0 | 131 | | } |
| | 132 | |
|
| | 133 | | // Check if the collision is with another agent. |
| 0 | 134 | | Agent otherAgent = other.gameObject.GetComponentInParent<Agent>(); |
| 0 | 135 | | if (otherAgent != null && otherAgent.GetComponent<Threat>() != null && |
| 0 | 136 | | _target == otherAgent as Threat) { |
| | 137 | | // Check kill probability before marking as hit. |
| 0 | 138 | | float killProbability = otherAgent.staticAgentConfig.hitConfig.killProbability; |
| | 139 | |
|
| 0 | 140 | | if (Random.value <= killProbability) { |
| | 141 | | // Mark both this agent and the other agent as hit. |
| 0 | 142 | | HandleInterceptHit(otherAgent); |
| 0 | 143 | | otherAgent.HandleTargetIntercepted(); |
| 0 | 144 | | } else { |
| 0 | 145 | | HandleInterceptMiss(); |
| 0 | 146 | | } |
| 0 | 147 | | } |
| 0 | 148 | | } |
| | 149 | |
|
| 0 | 150 | | public override void TerminateAgent() { |
| 0 | 151 | | DetatchMissileTrail(); |
| 0 | 152 | | base.TerminateAgent(); |
| 0 | 153 | | } |
| | 154 | |
|
| 0 | 155 | | public void OnDestroy() { |
| 0 | 156 | | if (_returnParticleToManagerCoroutine != null) { |
| 0 | 157 | | StopCoroutine(_returnParticleToManagerCoroutine); |
| 0 | 158 | | } |
| 0 | 159 | | if (_missileTrailEffect != null && ParticleManager.Instance != null) { |
| 0 | 160 | | ParticleManager.Instance.ReturnMissileTrailParticle(_missileTrailEffect); |
| 0 | 161 | | _missileTrailEffect = null; |
| 0 | 162 | | } |
| 0 | 163 | | } |
| | 164 | |
|
| 0 | 165 | | private void AttachMissileTrailEffect() { |
| 0 | 166 | | if (_missileTrailEffect == null) { |
| 0 | 167 | | _missileTrailEffect = ParticleManager.Instance.RequestMissileTrailParticle(); |
| 0 | 168 | | if (_missileTrailEffect != null) { |
| 0 | 169 | | _missileTrailEffect.transform.parent = transform; |
| 0 | 170 | | _missileTrailEffect.transform.localPosition = Vector3.zero; |
| 0 | 171 | | _missileTrailEffectAttached = true; |
| 0 | 172 | | ParticleSystem particleSystem = _missileTrailEffect.GetComponent<ParticleSystem>(); |
| 0 | 173 | | float duration = particleSystem.main.duration; |
| | 174 | |
|
| | 175 | | // Extend the duration of the missile trail effect to be the same as the boost time. |
| 0 | 176 | | if (duration < staticAgentConfig.boostConfig.boostTime) { |
| 0 | 177 | | ParticleSystem.MainModule mainModule = particleSystem.main; |
| 0 | 178 | | mainModule.duration = staticAgentConfig.boostConfig.boostTime; |
| 0 | 179 | | } |
| | 180 | |
|
| 0 | 181 | | _returnParticleToManagerCoroutine = StartCoroutine(ReturnParticleToManager(duration * 2f)); |
| 0 | 182 | | particleSystem.Play(); |
| 0 | 183 | | } |
| 0 | 184 | | } |
| 0 | 185 | | } |
| | 186 | |
|
| 0 | 187 | | private IEnumerator ReturnParticleToManager(float delay) { |
| 0 | 188 | | yield return new WaitForSeconds(delay); |
| 0 | 189 | | if (_missileTrailEffect != null) { |
| 0 | 190 | | ParticleManager.Instance.ReturnMissileTrailParticle(_missileTrailEffect); |
| 0 | 191 | | _missileTrailEffect = null; |
| 0 | 192 | | _missileTrailEffectAttached = false; |
| 0 | 193 | | } |
| 0 | 194 | | } |
| | 195 | |
|
| 0 | 196 | | private void UpdateMissileTrailEffect() { |
| 0 | 197 | | if (_missileTrailEffect == null || !_missileTrailEffectAttached) { |
| 0 | 198 | | return; |
| | 199 | | } |
| | 200 | |
|
| | 201 | | // Get the particle effect duration time. |
| 0 | 202 | | float duration = _missileTrailEffect.GetComponent<ParticleSystem>().main.duration; |
| 0 | 203 | | if (_timeSinceBoost > duration) { |
| 0 | 204 | | DetatchMissileTrail(); |
| 0 | 205 | | } |
| 0 | 206 | | } |
| | 207 | |
|
| 0 | 208 | | private void DetatchMissileTrail() { |
| 0 | 209 | | if (_missileTrailEffect != null && _missileTrailEffectAttached) { |
| 0 | 210 | | Vector3 currentPosition = _missileTrailEffect.transform.position; |
| 0 | 211 | | _missileTrailEffect.transform.SetParent(null); |
| 0 | 212 | | _missileTrailEffect.transform.position = currentPosition; |
| 0 | 213 | | _missileTrailEffectAttached = false; |
| | 214 | | // Stop emitting particles. |
| 0 | 215 | | ParticleSystem particleSystem = _missileTrailEffect.GetComponent<ParticleSystem>(); |
| 0 | 216 | | particleSystem.Stop(); |
| 0 | 217 | | } |
| 0 | 218 | | } |
| | 219 | |
|
| 0 | 220 | | protected virtual void DrawDebugVectors() { |
| 0 | 221 | | if (_target != null) { |
| | 222 | | // Line of sight. |
| 0 | 223 | | Debug.DrawLine(transform.position, _target.transform.position, new Color(1, 1, 1, 0.15f)); |
| | 224 | |
|
| | 225 | | // Velocity vector. |
| 0 | 226 | | Debug.DrawRay(transform.position, GetVelocity() * 0.01f, new Color(0, 0, 1, 0.15f)); |
| | 227 | |
|
| | 228 | | // Current forward direction. |
| 0 | 229 | | Debug.DrawRay(transform.position, transform.forward * 5f, Color.yellow); |
| | 230 | |
|
| | 231 | | // Pitch axis (right). |
| 0 | 232 | | Debug.DrawRay(transform.position, transform.right * 5f, Color.red); |
| | 233 | |
|
| | 234 | | // Yaw axis (up). |
| 0 | 235 | | Debug.DrawRay(transform.position, transform.up * 5f, Color.magenta); |
| | 236 | |
|
| 0 | 237 | | if (_accelerationInput != null) { |
| 0 | 238 | | Debug.DrawRay(transform.position, _accelerationInput * 1f, Color.green); |
| 0 | 239 | | } |
| 0 | 240 | | } |
| 0 | 241 | | } |
| | 242 | | } |