< Summary

Class:MaxSpeedAssignment
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Assignment/MaxSpeedAssignment.cs
Covered lines:41
Uncovered lines:0
Coverable lines:41
Total lines:77
Line coverage:100% (41 of 41)
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
Assign(...)0%10100100%

File(s)

/github/workspace/Assets/Scripts/Assignment/MaxSpeedAssignment.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using UnityEngine;
 4
 5// The maximum speed assignment class assigns interceptors to the targets to maximize the intercept
 6// speed by defining a cost of the assignment equal to the speed lost for the maneuver.
 7public class MaxSpeedAssignment : IAssignment {
 8  // Assign a target to each interceptor that has not been assigned a target yet.
 9  public unsafe IEnumerable<IAssignment.AssignmentItem> Assign(
 410      in IReadOnlyList<Interceptor> interceptors, in IReadOnlyList<Threat> threats) {
 411    List<IAssignment.AssignmentItem> assignments = new List<IAssignment.AssignmentItem>();
 12
 413    List<Interceptor> assignableInterceptors = IAssignment.GetAssignableInterceptors(interceptors);
 514    if (assignableInterceptors.Count == 0) {
 115      Debug.LogWarning("No assignable interceptors found.");
 116      return assignments;
 17    }
 18
 319    List<Threat> activeThreats = IAssignment.GetActiveThreats(threats);
 420    if (activeThreats.Count == 0) {
 121      Debug.LogWarning("No active threats found.");
 122      return assignments;
 23    }
 24
 25    // Find all pairwise assignment costs.
 226    float[] assignmentCosts = new float[assignableInterceptors.Count * activeThreats.Count];
 1027    for (int interceptorIndex = 0; interceptorIndex < assignableInterceptors.Count;
 1228         ++interceptorIndex) {
 629      Interceptor interceptor = assignableInterceptors[interceptorIndex];
 30
 31      // The speed decays exponentially with the travelled distance and with the bearing change.
 632      float distanceTimeConstant =
 33          2 * interceptor.staticAgentConfig.bodyConfig.mass /
 34          ((float)Constants.CalculateAirDensityAtAltitude(interceptor.GetPosition().y) *
 35           interceptor.staticAgentConfig.liftDragConfig.dragCoefficient *
 36           interceptor.staticAgentConfig.bodyConfig.crossSectionalArea);
 637      float angleTimeConstant = interceptor.staticAgentConfig.liftDragConfig.liftDragRatio;
 38      // During the turn, the minimum radius dictates the minimum distance needed to make the turn.
 639      float minTurningRadius = (float)(interceptor.GetVelocity().sqrMagnitude /
 40                                       interceptor.CalculateMaxNormalAcceleration());
 41
 5742      for (int threatIndex = 0; threatIndex < activeThreats.Count; ++threatIndex) {
 1543        Threat threat = activeThreats[threatIndex];
 1544        Vector3 directionToThreat = threat.GetPosition() - interceptor.GetPosition();
 1545        float distanceToThreat = directionToThreat.magnitude;
 1546        float angleToThreat =
 47            Vector3.Angle(interceptor.GetVelocity(), directionToThreat) * Mathf.Deg2Rad;
 48
 49        // The fractional speed is the product of the fractional speed after traveling the distance
 50        // and of the fractional speed after turning.
 1551        float fractionalSpeed = Mathf.Exp(
 52            -((distanceToThreat + angleToThreat * minTurningRadius) / distanceTimeConstant +
 53              angleToThreat / angleTimeConstant));
 1554        float cost = (float)interceptor.GetSpeed() / fractionalSpeed;
 1555        assignmentCosts[interceptorIndex * activeThreats.Count + threatIndex] = cost;
 1556      }
 657    }
 58
 59    // Solve the assignment problem.
 260    int[] assignedInterceptorIndices = new int[assignableInterceptors.Count];
 261    int[] assignedThreatIndices = new int[assignableInterceptors.Count];
 262    int numAssignments = 0;
 263    fixed(int* assignedInterceptorIndicesPtr = assignedInterceptorIndices)
 464        fixed(int* assignedThreatIndicesPtr = assignedThreatIndices) {
 265      numAssignments = Assignment.Assignment_EvenAssignment_Assign(
 66          assignableInterceptors.Count, activeThreats.Count, assignmentCosts,
 67          (IntPtr)assignedInterceptorIndicesPtr, (IntPtr)assignedThreatIndicesPtr);
 268    }
 2269    for (int i = 0; i < numAssignments; ++i) {
 670      int interceptorIndex = assignedInterceptorIndices[i];
 671      int threatIndex = assignedThreatIndices[i];
 672      assignments.Add(new IAssignment.AssignmentItem(assignableInterceptors[interceptorIndex],
 73                                                     activeThreats[threatIndex]));
 674    }
 275    return assignments;
 476  }
 77}