< Summary

Class:KDNode[T]
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Utils/KDTree.cs
Covered lines:5
Uncovered lines:0
Coverable lines:5
Total lines:87
Line coverage:100% (5 of 5)
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
KDNode(...)0%110100%

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;
 4839  public KDNode<T> Left = null;
 48310  public KDNode<T> Right = null;
 11
 96612  public KDNode(T data) {
 48313    Data = data;
 48314  }
 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
 22  public KDTree(in IReadOnlyList<T> points, Func<T, Vector2> getCoordinates) {
 23    _getCoordinates = getCoordinates;
 24    _root = BuildTree(points, depth: 0);
 25  }
 26
 27  private KDNode<T> BuildTree(in IReadOnlyList<T> points, int depth) {
 28    if (points.Count == 0)
 29      return null;
 30
 31    int k = 2;
 32    int axis = depth % k;
 33
 34    // Sort the points by axis and find the median.
 35    List<T> sortedPoints =
 36        points.OrderBy(point => (axis == 0 ? _getCoordinates(point).x : _getCoordinates(point).y))
 37            .ToList();
 38    int medianIndex = sortedPoints.Count / 2;
 39    T medianPoint = sortedPoints[medianIndex];
 40
 41    KDNode<T> node = new KDNode<T>(medianPoint);
 42    List<T> leftPoints = sortedPoints.GetRange(0, medianIndex);
 43    List<T> rightPoints =
 44        sortedPoints.GetRange(medianIndex + 1, sortedPoints.Count - medianIndex - 1);
 45
 46    node.Left = BuildTree(leftPoints, depth + 1);
 47    node.Right = BuildTree(rightPoints, depth + 1);
 48    return node;
 49  }
 50
 51  public T NearestNeighbor(Vector2 target) {
 52    KDNode<T> neighbor = NearestNeighbor(_root, target, depth: 0, best: null);
 53    if (neighbor == null) {
 54      return default(T);
 55    }
 56    return neighbor.Data;
 57  }
 58
 59  private KDNode<T> NearestNeighbor(KDNode<T> node, Vector2 target, int depth, KDNode<T> best) {
 60    if (node == null)
 61      return best;
 62
 63    float currentDistance = Vector2.Distance(_getCoordinates(node.Data), target);
 64    float bestDistance =
 65        best == null ? float.MaxValue : Vector2.Distance(_getCoordinates(best.Data), target);
 66    if (currentDistance < bestDistance)
 67      best = node;
 68
 69    int axis = depth % 2;
 70    KDNode<T> nextBranch = (axis == 0 ? target.x < _getCoordinates(node.Data).x
 71                                      : target.y < _getCoordinates(node.Data).y)
 72                               ? node.Left
 73                               : node.Right;
 74    KDNode<T> otherBranch = (nextBranch == node.Left) ? node.Right : node.Left;
 75
 76    // Check the next branch.
 77    best = NearestNeighbor(nextBranch, target, depth + 1, best);
 78
 79    // Check the other branch.
 80    if ((axis == 0 && Mathf.Abs(target.x - _getCoordinates(node.Data).x) < bestDistance) ||
 81        (axis == 1 && Mathf.Abs(target.y - _getCoordinates(node.Data).y) < bestDistance)) {
 82      best = NearestNeighbor(otherBranch, target, depth + 1, best);
 83    }
 84
 85    return best;
 86  }
 87}

Methods/Properties

KDNode(T)