| | 1 | | using System.Collections; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using JetBrains.Annotations; |
| | 4 | | using UnityEngine; |
| | 5 | | using System.Linq; |
| | 6 | |
|
| | 7 | | public class CarrierInterceptor : Interceptor { |
| 0 | 8 | | private bool _submunitionsLaunched = false; |
| | 9 | |
|
| 0 | 10 | | public override bool IsAssignable() { |
| 0 | 11 | | return false; |
| 0 | 12 | | } |
| | 13 | |
|
| 0 | 14 | | protected override void FixedUpdate() { |
| 0 | 15 | | base.FixedUpdate(); |
| | 16 | | // Check whether to launch submunitions. |
| 0 | 17 | | if ((GetFlightPhase() == FlightPhase.MIDCOURSE || GetFlightPhase() == FlightPhase.BOOST) && |
| 0 | 18 | | !_submunitionsLaunched && IADS.Instance.ShouldLaunchSubmunitions(this)) { |
| 0 | 19 | | SpawnSubmunitions(); |
| 0 | 20 | | _submunitionsLaunched = true; |
| 0 | 21 | | } |
| 0 | 22 | | } |
| | 23 | |
|
| 0 | 24 | | protected override void UpdateMidCourse(double deltaTime) { |
| 0 | 25 | | base.UpdateMidCourse(deltaTime); |
| 0 | 26 | | } |
| | 27 | |
|
| 0 | 28 | | protected override void DrawDebugVectors() { |
| 0 | 29 | | base.DrawDebugVectors(); |
| 0 | 30 | | if (_acceleration != null) { |
| 0 | 31 | | Debug.DrawRay(transform.position, _acceleration * 1f, Color.green); |
| 0 | 32 | | } |
| 0 | 33 | | } |
| | 34 | |
|
| 0 | 35 | | private void SpawnSubmunitions() { |
| 0 | 36 | | List<Interceptor> submunitions = new List<Interceptor>(); |
| 0 | 37 | | for (int i = 0; i < dynamicAgentConfig.submunitions_config.num_submunitions; ++i) { |
| 0 | 38 | | DynamicAgentConfig convertedConfig = DynamicAgentConfig.FromSubmunitionDynamicAgentConfig( |
| | 39 | | dynamicAgentConfig.submunitions_config.dynamic_agent_config); |
| 0 | 40 | | InitialState initialState = new InitialState(); |
| 0 | 41 | | initialState.position = transform.position; |
| | 42 | |
|
| | 43 | | // Fan the submunitions radially outwards by 60 degrees from the carrier interceptor's |
| | 44 | | // velocity vector. |
| | 45 | | const float SubmunitionsAngularDeviation = 60.0f * Mathf.Deg2Rad; |
| 0 | 46 | | Vector3 velocity = GetComponent<Rigidbody>().linearVelocity; |
| 0 | 47 | | Vector3 perpendicularDirection = Vector3.Cross(velocity, Vector3.up); |
| 0 | 48 | | Vector3 lateralDirection = |
| | 49 | | Quaternion.AngleAxis(i * 360 / dynamicAgentConfig.submunitions_config.num_submunitions, |
| | 50 | | velocity) * |
| | 51 | | perpendicularDirection; |
| 0 | 52 | | initialState.velocity = Vector3.RotateTowards( |
| | 53 | | velocity, lateralDirection, maxRadiansDelta: SubmunitionsAngularDeviation, |
| | 54 | | maxMagnitudeDelta: Mathf.Cos(SubmunitionsAngularDeviation)); |
| | 55 | |
|
| 0 | 56 | | Interceptor submunition = |
| | 57 | | SimManager.Instance.CreateInterceptor(convertedConfig, initialState); |
| 0 | 58 | | submunition.SetFlightPhase(FlightPhase.READY); |
| | 59 | | // Launch the submunitions with the same velocity as the carrier interceptor's. |
| 0 | 60 | | submunition.SetVelocity(GetComponent<Rigidbody>().linearVelocity); |
| 0 | 61 | | submunitions.Add(submunition); |
| 0 | 62 | | } |
| 0 | 63 | | UnassignTarget(); |
| 0 | 64 | | IADS.Instance.AssignSubmunitionsToThreats(this, submunitions); |
| | 65 | |
|
| 0 | 66 | | SimManager.Instance.AddSubmunitionsSwarm( |
| 0 | 67 | | submunitions.ConvertAll(submunition => submunition as Agent)); |
| 0 | 68 | | } |
| | 69 | | } |