< Summary

Class:MaxSpeedAssignment
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Assignment/MaxSpeedAssignment.cs
Covered lines:0
Uncovered lines:41
Coverable lines:41
Total lines:77
Line coverage:0% (0 of 41)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:1
Method coverage:0% (0 of 1)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
Assign(...)0%1101000%

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(
 010      in IReadOnlyList<Interceptor> interceptors, in IReadOnlyList<Threat> threats) {
 011    List<IAssignment.AssignmentItem> assignments = new List<IAssignment.AssignmentItem>();
 12
 013    List<Interceptor> assignableInterceptors = IAssignment.GetAssignableInterceptors(interceptors);
 014    if (assignableInterceptors.Count == 0) {
 015      Debug.LogWarning("No assignable interceptors found.");
 016      return assignments;
 17    }
 18
 019    List<Threat> activeThreats = IAssignment.GetActiveThreats(threats);
 020    if (activeThreats.Count == 0) {
 021      Debug.LogWarning("No active threats found.");
 022      return assignments;
 23    }
 24
 25    // Find all pairwise assignment costs.
 026    float[] assignmentCosts = new float[assignableInterceptors.Count * activeThreats.Count];
 027    for (int interceptorIndex = 0; interceptorIndex < assignableInterceptors.Count;
 028         ++interceptorIndex) {
 029      Interceptor interceptor = assignableInterceptors[interceptorIndex];
 30
 31      // The speed decays exponentially with the travelled distance and with the bearing change.
 032      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);
 037      float angleTimeConstant = interceptor.staticAgentConfig.liftDragConfig.liftDragRatio;
 38      // During the turn, the minimum radius dictates the minimum distance needed to make the turn.
 039      float minTurningRadius = (float)(interceptor.GetVelocity().sqrMagnitude /
 40                                       interceptor.CalculateMaxNormalAcceleration());
 41
 042      for (int threatIndex = 0; threatIndex < activeThreats.Count; ++threatIndex) {
 043        Threat threat = activeThreats[threatIndex];
 044        Vector3 directionToThreat = threat.GetPosition() - interceptor.GetPosition();
 045        float distanceToThreat = directionToThreat.magnitude;
 046        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.
 051        float fractionalSpeed = Mathf.Exp(
 52            -((distanceToThreat + angleToThreat * minTurningRadius) / distanceTimeConstant +
 53              angleToThreat / angleTimeConstant));
 054        float cost = (float)interceptor.GetSpeed() / fractionalSpeed;
 055        assignmentCosts[interceptorIndex * activeThreats.Count + threatIndex] = cost;
 056      }
 057    }
 58
 59    // Solve the assignment problem.
 060    int[] assignedInterceptorIndices = new int[assignableInterceptors.Count];
 061    int[] assignedThreatIndices = new int[assignableInterceptors.Count];
 062    int numAssignments = 0;
 063    fixed(int* assignedInterceptorIndicesPtr = assignedInterceptorIndices)
 064        fixed(int* assignedThreatIndicesPtr = assignedThreatIndices) {
 065      numAssignments = Assignment.Assignment_EvenAssignment_Assign(
 66          assignableInterceptors.Count, activeThreats.Count, assignmentCosts,
 67          (IntPtr)assignedInterceptorIndicesPtr, (IntPtr)assignedThreatIndicesPtr);
 068    }
 069    for (int i = 0; i < numAssignments; ++i) {
 070      int interceptorIndex = assignedInterceptorIndices[i];
 071      int threatIndex = assignedThreatIndices[i];
 072      assignments.Add(new IAssignment.AssignmentItem(assignableInterceptors[interceptorIndex],
 73                                                     activeThreats[threatIndex]));
 074    }
 075    return assignments;
 076  }
 77}