< Summary

Class:KDTree[T]
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Utils/KDTree.cs
Covered lines:0
Uncovered lines:43
Coverable lines:43
Total lines:87
Line coverage:0% (0 of 43)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:4
Method coverage:0% (0 of 4)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
KDTree(...)0%2100%
BuildTree(...)0%6200%
NearestNeighbor(...)0%6200%
NearestNeighbor(...)0%2101400%

File(s)

/github/workspace/Assets/Scripts/Utils/KDTree.cs

#LineLine coverage
 1using System;
 2using System.Collections.Generic;
 3using System.Linq;
 4using UnityEngine;
 5
 6// K-D tree node.
 7public class KDNode<T> {
 8  public T Data;
 9  public KDNode<T> Left = null;
 10  public KDNode<T> Right = null;
 11
 12  public KDNode(T data) {
 13    Data = data;
 14  }
 15}
 16
 17// K-D tree with 2D coordinates.
 18public class KDTree<T> {
 19  private KDNode<T> _root;
 20  private Func<T, Vector2> _getCoordinates;
 21
 022  public KDTree(in IReadOnlyList<T> points, Func<T, Vector2> getCoordinates) {
 023    _getCoordinates = getCoordinates;
 024    _root = BuildTree(points, depth: 0);
 025  }
 26
 027  private KDNode<T> BuildTree(in IReadOnlyList<T> points, int depth) {
 028    if (points.Count == 0)
 029      return null;
 30
 031    int k = 2;
 032    int axis = depth % k;
 33
 34    // Sort the points by axis and find the median.
 035    List<T> sortedPoints =
 036        points.OrderBy(point => (axis == 0 ? _getCoordinates(point).x : _getCoordinates(point).y))
 37            .ToList();
 038    int medianIndex = sortedPoints.Count / 2;
 039    T medianPoint = sortedPoints[medianIndex];
 40
 041    KDNode<T> node = new KDNode<T>(medianPoint);
 042    List<T> leftPoints = sortedPoints.GetRange(0, medianIndex);
 043    List<T> rightPoints =
 44        sortedPoints.GetRange(medianIndex + 1, sortedPoints.Count - medianIndex - 1);
 45
 046    node.Left = BuildTree(leftPoints, depth + 1);
 047    node.Right = BuildTree(rightPoints, depth + 1);
 048    return node;
 049  }
 50
 051  public T NearestNeighbor(Vector2 target) {
 052    KDNode<T> neighbor = NearestNeighbor(_root, target, depth: 0, best: null);
 053    if (neighbor == null) {
 054      return default(T);
 55    }
 056    return neighbor.Data;
 057  }
 58
 059  private KDNode<T> NearestNeighbor(KDNode<T> node, Vector2 target, int depth, KDNode<T> best) {
 060    if (node == null)
 061      return best;
 62
 063    float currentDistance = Vector2.Distance(_getCoordinates(node.Data), target);
 064    float bestDistance =
 65        best == null ? float.MaxValue : Vector2.Distance(_getCoordinates(best.Data), target);
 066    if (currentDistance < bestDistance)
 067      best = node;
 68
 069    int axis = depth % 2;
 070    KDNode<T> nextBranch = (axis == 0 ? target.x < _getCoordinates(node.Data).x
 71                                      : target.y < _getCoordinates(node.Data).y)
 72                               ? node.Left
 73                               : node.Right;
 074    KDNode<T> otherBranch = (nextBranch == node.Left) ? node.Right : node.Left;
 75
 76    // Check the next branch.
 077    best = NearestNeighbor(nextBranch, target, depth + 1, best);
 78
 79    // Check the other branch.
 080    if ((axis == 0 && Mathf.Abs(target.x - _getCoordinates(node.Data).x) < bestDistance) ||
 081        (axis == 1 && Mathf.Abs(target.y - _getCoordinates(node.Data).y) < bestDistance)) {
 082      best = NearestNeighbor(otherBranch, target, depth + 1, best);
 083    }
 84
 085    return best;
 086  }
 87}