< Summary

Class:ILaunchPlanner
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Algorithms/Planning/LaunchPlanner.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:43
Line coverage:100% (4 of 4)
Covered branches:0
Total branches:0
Covered methods:1
Total methods:1
Method coverage:100% (1 of 1)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ILaunchPlanner(...)0%110100%

File(s)

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

#LineLine coverage
 1using UnityEngine;
 2
 3// Launch planner output.
 4public class LaunchPlan {
 5  // No-launch launch plan.
 6  public static LaunchPlan NoLaunch = new LaunchPlan();
 7
 8  // Whether the interceptor should be launched.
 9  public bool ShouldLaunch { get; }
 10
 11  // Launch angle in degrees measured from the horizon.
 12  public float LaunchAngle { get; }
 13
 14  // Intercept position.
 15  public Vector3 InterceptPosition { get; }
 16
 17  public LaunchPlan() {
 18    ShouldLaunch = false;
 19  }
 20  public LaunchPlan(float launchAngle, Vector3 interceptPosition, bool shouldLaunch = true) {
 21    LaunchAngle = launchAngle;
 22    InterceptPosition = interceptPosition;
 23    ShouldLaunch = shouldLaunch;
 24  }
 25}
 26
 27// The launch planner class is an interface for planning when and where to launch an interceptor to
 28// intercept a target.
 29public abstract class ILaunchPlanner {
 30  // Launch angle planner.
 31  protected ILaunchAnglePlanner _launchAnglePlanner;
 32
 33  // Agent trajectory predictor.
 34  protected IPredictor _predictor;
 35
 1036  public ILaunchPlanner(ILaunchAnglePlanner launchAnglePlanner, IPredictor predictor) {
 537    _launchAnglePlanner = launchAnglePlanner;
 538    _predictor = predictor;
 539  }
 40
 41  // Plan the launch.
 42  public abstract LaunchPlan Plan();
 43}