< Summary

Class:IterativeLaunchPlanner
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Algorithms/Planning/IterativeLaunchPlanner.cs
Covered lines:27
Uncovered lines:0
Coverable lines:27
Total lines:66
Line coverage:100% (27 of 27)
Covered branches:0
Total branches:0
Covered methods:2
Total methods:2
Method coverage:100% (2 of 2)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
IterativeLaunchPlanner(...)0%110100%
Plan()0%550100%

File(s)

/github/workspace/Assets/Scripts/Algorithms/Planning/IterativeLaunchPlanner.cs

#LineLine coverage
 1using UnityEngine;
 2
 3// The iterative launch planner class is a launch planner that performs an iterative process to
 4// determine the intercept point. The algorithm continuously performs the following 2-step iterative
 5// process:
 6//  1. Time-to-intercept estimation: The algorithm determines the time it takes the interceptor to
 7//  reach the target at the predicted intercept position, which is initialized to the target's
 8//  current position.
 9//  2. Intercept position estimation: The algorithm predicts the target position at the estimated
 10//  time-to-intercept.
 11public class IterativeLaunchPlanner : ILaunchPlanner {
 12  // Maximum number of iterations before declaring failure.
 13  private const int MaxNumIterations = 10;
 14
 15  // Maximum intercept position threshold to declare convergence.
 16  private const float InterceptPositionThreshold = 1000;
 17
 18  public IterativeLaunchPlanner(ILaunchAnglePlanner launchAnglePlanner, IPredictor predictor)
 1519      : base(launchAnglePlanner, predictor) {}
 20
 21  // Plan the launch.
 522  public override LaunchPlan Plan() {
 523    PredictorState initialState = _predictor.Predict(time: 0);
 524    Vector3 targetPosition = initialState.Position;
 525    Vector2 initialTargetPositionDirection =
 26        ILaunchAnglePlanner.ConvertToDirection(initialState.Position);
 27
 528    LaunchAngleOutput launchAngleOutput = new LaunchAngleOutput();
 529    Vector2 interceptDirection = Vector2.zero;
 530    Vector2 predictedDirection = Vector2.zero;
 3031    for (int i = 0; i < MaxNumIterations; ++i) {
 32      // Estimate the time-to-intercept.
 1033      launchAngleOutput = _launchAnglePlanner.Plan(targetPosition);
 1034      float timeToIntercept = launchAngleOutput.TimeToPosition;
 1035      LaunchAngleInput launchAngleInput = _launchAnglePlanner.GetInterceptPosition(targetPosition);
 36
 37      // Estimate the intercept position.
 1038      PredictorState predictedState = _predictor.Predict(timeToIntercept);
 1039      targetPosition = predictedState.Position;
 40
 41      // Check whether the intercept direction has changed, in which case the algorithm has
 42      // converged.
 1043      Vector2 newInterceptDirection =
 44          new Vector2(launchAngleInput.Distance, launchAngleInput.Altitude);
 1445      if (interceptDirection == newInterceptDirection) {
 446        break;
 47      }
 648      interceptDirection = newInterceptDirection;
 649      predictedDirection = ILaunchAnglePlanner.ConvertToDirection(targetPosition);
 50
 51      // Check that the target is moving towards the intercept position.
 652      if (Vector2.Dot(interceptDirection - initialTargetPositionDirection,
 153                      predictedDirection - initialTargetPositionDirection) < 0) {
 54        // The interceptor should wait to be launched.
 155        return LaunchPlan.NoLaunch;
 56      }
 557    }
 58
 59    // Check whether the intercept position and the predicted position are within some threshold
 60    // distance of each other.
 761    if (Vector2.Distance(interceptDirection, predictedDirection) < InterceptPositionThreshold) {
 362      return new LaunchPlan(launchAngleOutput.LaunchAngle, targetPosition);
 63    }
 164    return LaunchPlan.NoLaunch;
 565  }
 66}