< Summary

Class:RoundRobinAssignment
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Assignment/RoundRobinAssignment.cs
Covered lines:0
Uncovered lines:18
Coverable lines:18
Total lines:46
Line coverage:0% (0 of 18)
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
RoundRobinAssignment()0%2100%
Assign(...)0%20400%

File(s)

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

#LineLine coverage
 1using System.Collections.Generic;
 2using System.Diagnostics.Contracts;
 3using System.Linq;
 4using UnityEngine;
 5
 6// The round-robin assignment class assigns interceptors to the targets in a
 7// round-robin order using the new paradigm.
 8public class RoundRobinAssignment : IAssignment {
 9  // Previous target index that was assigned.
 010  private int prevTargetIndex = -1;
 11
 12  // Assign a target to each interceptor that has not been assigned a target yet.
 13  [Pure]
 14  public IEnumerable<IAssignment.AssignmentItem> Assign(in IReadOnlyList<Interceptor> interceptors,
 015                                                        in IReadOnlyList<Threat> threats) {
 016    List<IAssignment.AssignmentItem> assignments = new List<IAssignment.AssignmentItem>();
 17
 18    // Get the list of interceptors that are available for assignment.
 019    List<Interceptor> assignableInterceptors = IAssignment.GetAssignableInterceptors(interceptors);
 020    if (assignableInterceptors.Count == 0) {
 021      return assignments;
 22    }
 23
 24    // Get the list of active threats that need to be addressed.
 025    List<Threat> activeThreats = IAssignment.GetActiveThreats(threats);
 026    if (activeThreats.Count == 0) {
 027      Debug.LogWarning("No active threats found.");
 028      return assignments;
 29    }
 30
 31    // Perform round-robin assignment.
 032    foreach (Interceptor interceptor in assignableInterceptors) {
 33      // Determine the next target index in a round-robin fashion.
 034      int nextTargetIndex = (prevTargetIndex + 1) % activeThreats.Count;
 035      Threat threat = activeThreats[nextTargetIndex];
 36
 37      // Assign the interceptor to the selected threat.
 038      assignments.Add(new IAssignment.AssignmentItem(interceptor, threat));
 39
 40      // Update the previous target index.
 041      prevTargetIndex = nextTargetIndex;
 042    }
 43
 044    return assignments;
 045  }
 46}