Uses of Class
org.deken.game.pathfinding.NodeLink

Packages that use NodeLink
org.deken.game.pathfinding   
 

Uses of NodeLink in org.deken.game.pathfinding
 

Methods in org.deken.game.pathfinding that return NodeLink
 NodeLink Node.getConnectionFromLocation(int x, int y)
          Gets the NodeLink that contains the given location.
 NodeLink NodeFourWay.getConnectionFromLocation(int x, int y)
           
 NodeLink FindPathsFourWay.getNodeLinkIfOnSamePath(int firstX, int firstY, int secondX, int secondY)
           
 

Methods in org.deken.game.pathfinding that return types with arguments of type NodeLink
 java.util.List<NodeLink> Node.getConnections()
          Returns the connection nodes with distance to that node.
 java.util.List<NodeLink> NodeFourWay.getConnections()
           
 

Methods in org.deken.game.pathfinding with parameters of type NodeLink
 int NodeLinkComparator.compare(NodeLink o1, NodeLink o2)
           
 int NodeLink.compareTo(NodeLink other)
           
 java.util.List<java.lang.String> PathFindingUtils.getPathFromNodeLink(NodeLink nodeLink, int startX, int startY, int endX, int endY)
          Get a path when start and end is in the same NodeLink.