| | 1 | | using NUnit.Framework; |
| | 2 | | using System.Collections; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.Linq; |
| | 5 | | using UnityEngine; |
| | 6 | | using UnityEngine.TestTools; |
| | 7 | |
|
| | 8 | | public class IterativeLaunchPlannerTest { |
| | 9 | | private class DummyLaunchAngleDataInterpolator : LaunchAngleDataInterpolator { |
| 0 | 10 | | public DummyLaunchAngleDataInterpolator() : base() {} |
| | 11 | |
|
| | 12 | | // Generate the list of launch angle data points to interpolate. |
| 0 | 13 | | protected override List<LaunchAngleDataPoint> GenerateData() { |
| 0 | 14 | | return new List<LaunchAngleDataPoint> { |
| | 15 | | new LaunchAngleDataPoint(new LaunchAngleInput(distance: 1, altitude: 100), |
| | 16 | | new LaunchAngleOutput(launchAngle: 90, timeToPosition: 10)), |
| | 17 | | new LaunchAngleDataPoint(new LaunchAngleInput(distance: 60, altitude: 1), |
| | 18 | | new LaunchAngleOutput(launchAngle: 20, timeToPosition: 13)), |
| | 19 | | new LaunchAngleDataPoint(new LaunchAngleInput(distance: 80, altitude: 1), |
| | 20 | | new LaunchAngleOutput(launchAngle: 15, timeToPosition: 16)), |
| | 21 | | new LaunchAngleDataPoint(new LaunchAngleInput(distance: 100, altitude: 1), |
| | 22 | | new LaunchAngleOutput(launchAngle: 10, timeToPosition: 20)), |
| | 23 | | }; |
| 0 | 24 | | } |
| | 25 | | } |
| | 26 | |
|
| 0 | 27 | | private static ILaunchAnglePlanner _launchAnglePlanner = new DummyLaunchAngleDataInterpolator(); |
| | 28 | |
|
| 0 | 29 | | public static Agent GenerateAgent(in Vector3 position, in Vector3 velocity) { |
| 0 | 30 | | Agent agent = new GameObject().AddComponent<DummyAgent>(); |
| 0 | 31 | | Rigidbody rb = agent.gameObject.AddComponent<Rigidbody>(); |
| 0 | 32 | | agent.transform.position = position; |
| 0 | 33 | | rb.linearVelocity = velocity; |
| 0 | 34 | | return agent; |
| 0 | 35 | | } |
| | 36 | |
|
| | 37 | | [Test] |
| 0 | 38 | | public void TestInterceptAtDataPoint() { |
| 0 | 39 | | Agent agent = GenerateAgent(position: new Vector3(1, 90, 0), velocity: new Vector3(0, 1, 0)); |
| 0 | 40 | | LinearExtrapolator predictor = new LinearExtrapolator(agent); |
| 0 | 41 | | IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor); |
| 0 | 42 | | LaunchPlan plan = planner.Plan(); |
| 0 | 43 | | Assert.IsTrue(plan.ShouldLaunch); |
| 0 | 44 | | Assert.AreEqual(90, plan.LaunchAngle); |
| 0 | 45 | | Assert.AreEqual(new Vector3(1, 100, 0), plan.InterceptPosition); |
| 0 | 46 | | } |
| | 47 | |
|
| | 48 | | [Test] |
| 0 | 49 | | public void TestInterceptAroundDataPoint() { |
| 0 | 50 | | Agent agent = GenerateAgent(position: new Vector3(1, 90, 0), velocity: new Vector3(0, 0.9f, 0)); |
| 0 | 51 | | LinearExtrapolator predictor = new LinearExtrapolator(agent); |
| 0 | 52 | | IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor); |
| 0 | 53 | | LaunchPlan plan = planner.Plan(); |
| 0 | 54 | | Assert.IsTrue(plan.ShouldLaunch); |
| 0 | 55 | | Assert.AreEqual(90, plan.LaunchAngle); |
| 0 | 56 | | Assert.AreEqual(new Vector3(1, 99, 0), plan.InterceptPosition); |
| 0 | 57 | | } |
| | 58 | |
|
| | 59 | | [Test] |
| 0 | 60 | | public void TestInterceptAcrossMultipleDataPoints() { |
| 0 | 61 | | Agent agent = GenerateAgent(position: new Vector3(126, 1, 0), velocity: new Vector3(-5, 0, 0)); |
| 0 | 62 | | LinearExtrapolator predictor = new LinearExtrapolator(agent); |
| 0 | 63 | | IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor); |
| 0 | 64 | | LaunchPlan plan = planner.Plan(); |
| 0 | 65 | | Assert.IsTrue(plan.ShouldLaunch); |
| 0 | 66 | | Assert.AreEqual(20, plan.LaunchAngle); |
| 0 | 67 | | Assert.AreEqual(new Vector3(61, 1, 0), plan.InterceptPosition); |
| 0 | 68 | | } |
| | 69 | |
|
| | 70 | | [Test] |
| 0 | 71 | | public void TestNoLaunchDivergingFromInterceptPoint() { |
| 0 | 72 | | Agent agent = GenerateAgent(position: new Vector3(1, 105, 0), velocity: new Vector3(0, 1, 0)); |
| 0 | 73 | | LinearExtrapolator predictor = new LinearExtrapolator(agent); |
| 0 | 74 | | IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor); |
| 0 | 75 | | LaunchPlan plan = planner.Plan(); |
| 0 | 76 | | Assert.IsFalse(plan.ShouldLaunch); |
| 0 | 77 | | } |
| | 78 | |
|
| | 79 | | [Test] |
| 0 | 80 | | public void TestNoLaunchTooFarFromInterceptPoint() { |
| 0 | 81 | | Agent agent = GenerateAgent(position: new Vector3(1, 2000, 0), velocity: new Vector3(0, -1, 0)); |
| 0 | 82 | | LinearExtrapolator predictor = new LinearExtrapolator(agent); |
| 0 | 83 | | IterativeLaunchPlanner planner = new IterativeLaunchPlanner(_launchAnglePlanner, predictor); |
| 0 | 84 | | LaunchPlan plan = planner.Plan(); |
| 0 | 85 | | Assert.IsFalse(plan.ShouldLaunch); |
| 0 | 86 | | } |
| | 87 | | } |