< Summary

Class:LaunchAngleInput
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Algorithms/Planning/LaunchAnglePlanner.cs
Covered lines:6
Uncovered lines:0
Coverable lines:6
Total lines:73
Line coverage:100% (6 of 6)
Covered branches:0
Total branches:0
Covered methods:3
Total methods:3
Method coverage:100% (3 of 3)

Metrics

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

File(s)

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

#LineLine coverage
 1using UnityEngine;
 2
 3// Launch angle input.
 4public struct LaunchAngleInput {
 5  // Horizontal distance in meters.
 436  public float Distance { get; }
 7
 8  // Altitude in meters.
 439  public float Altitude { get; }
 10
 4311  public LaunchAngleInput(float distance, float altitude) {
 4312    Distance = distance;
 4313    Altitude = altitude;
 4314  }
 15}
 16
 17// Launch angle output.
 18public struct LaunchAngleOutput {
 19  // Launch angle in degrees.
 20  public float LaunchAngle { get; }
 21
 22  // Time to reach the target position in seconds.
 23  public float TimeToPosition { get; }
 24
 25  public LaunchAngleOutput(float launchAngle, float timeToPosition) {
 26    LaunchAngle = launchAngle;
 27    TimeToPosition = timeToPosition;
 28  }
 29}
 30
 31// Launch angle data point.
 32public struct LaunchAngleDataPoint {
 33  // Launch angle input.
 34  public LaunchAngleInput Input { get; }
 35
 36  // Launch angle output.
 37  public LaunchAngleOutput Output { get; }
 38
 39  public LaunchAngleDataPoint(in LaunchAngleInput input, in LaunchAngleOutput output) {
 40    Input = input;
 41    Output = output;
 42  }
 43}
 44
 45// The launch angle planner class is an interface for a planner that outputs the optimal launch
 46// angle and the time-to-target.
 47public interface ILaunchAnglePlanner {
 48  // Calculate the optimal launch angle in degrees and the time-to-target in seconds.
 49  public LaunchAngleOutput Plan(in LaunchAngleInput input);
 50  public LaunchAngleOutput Plan(float distance, float altitude) {
 51    return Plan(new LaunchAngleInput(distance, altitude));
 52  }
 53  public LaunchAngleOutput Plan(Vector3 position) {
 54    Vector2 direction = ConvertToDirection(position);
 55    return Plan(distance: direction[0], altitude: direction[1]);
 56  }
 57
 58  // Get the intercept position.
 59  public LaunchAngleInput GetInterceptPosition(in LaunchAngleInput input);
 60  public LaunchAngleInput GetInterceptPosition(float distance, float altitude) {
 61    return GetInterceptPosition(new LaunchAngleInput(distance, altitude));
 62  }
 63  public LaunchAngleInput GetInterceptPosition(Vector3 position) {
 64    Vector2 direction = ConvertToDirection(position);
 65    return GetInterceptPosition(distance: direction[0], altitude: direction[1]);
 66  }
 67
 68  // Convert from a 3D vector to a 2D direction that ignores the azimuth.
 69  public static Vector2 ConvertToDirection(Vector3 position) {
 70    return new Vector2(Vector3.ProjectOnPlane(position, Vector3.up).magnitude,
 71                       Vector3.Project(position, Vector3.up).magnitude);
 72  }
 73}