< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
IterativeLaunchPlanner(...)0%2100%
Plan()0%30500%

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)
 019      : base(launchAnglePlanner, predictor) {}
 20
 21  // Plan the launch.
 022  public override LaunchPlan Plan() {
 023    PredictorState initialState = _predictor.Predict(time: 0);
 024    Vector3 targetPosition = initialState.Position;
 025    Vector2 initialTargetPositionDirection =
 26        ILaunchAnglePlanner.ConvertToDirection(initialState.Position);
 27
 028    LaunchAngleOutput launchAngleOutput = new LaunchAngleOutput();
 029    Vector2 interceptDirection = Vector2.zero;
 030    Vector2 predictedDirection = Vector2.zero;
 031    for (int i = 0; i < MaxNumIterations; ++i) {
 32      // Estimate the time-to-intercept.
 033      launchAngleOutput = _launchAnglePlanner.Plan(targetPosition);
 034      float timeToIntercept = launchAngleOutput.TimeToPosition;
 035      LaunchAngleInput launchAngleInput = _launchAnglePlanner.GetInterceptPosition(targetPosition);
 36
 37      // Estimate the intercept position.
 038      PredictorState predictedState = _predictor.Predict(timeToIntercept);
 039      targetPosition = predictedState.Position;
 40
 41      // Check whether the intercept direction has changed, in which case the algorithm has
 42      // converged.
 043      Vector2 newInterceptDirection =
 44          new Vector2(launchAngleInput.Distance, launchAngleInput.Altitude);
 045      if (interceptDirection == newInterceptDirection) {
 046        break;
 47      }
 048      interceptDirection = newInterceptDirection;
 049      predictedDirection = ILaunchAnglePlanner.ConvertToDirection(targetPosition);
 50
 51      // Check that the target is moving towards the intercept position.
 052      if (Vector2.Dot(interceptDirection - initialTargetPositionDirection,
 053                      predictedDirection - initialTargetPositionDirection) < 0) {
 54        // The interceptor should wait to be launched.
 055        return LaunchPlan.NoLaunch;
 56      }
 057    }
 58
 59    // Check whether the intercept position and the predicted position are within some threshold
 60    // distance of each other.
 061    if (Vector2.Distance(interceptDirection, predictedDirection) < InterceptPositionThreshold) {
 062      return new LaunchPlan(launchAngleOutput.LaunchAngle, targetPosition);
 63    }
 064    return LaunchPlan.NoLaunch;
 065  }
 66}