Package logisticspipes.routing.pathfinder

Examples of logisticspipes.routing.pathfinder.PathFinder


    CoreRoutedPipe thisPipe = getPipe();
    if (thisPipe == null) return false;
    HashMap<CoreRoutedPipe, ExitRoute> adjacent;
    List<Pair<ILogisticsPowerProvider,List<IFilter>>> power;
    List<Pair<ISubSystemPowerProvider,List<IFilter>>> subSystemPower;
    PathFinder finder = new PathFinder(thisPipe.container, Configs.LOGISTICS_DETECTION_COUNT, Configs.LOGISTICS_DETECTION_LENGTH);
    power = finder.powerNodes;
    subSystemPower = finder.subPowerProvider;
    adjacent = finder.result;
   
    for(CoreRoutedPipe pipe : adjacent.keySet()) {
View Full Code Here

TOP

Related Classes of logisticspipes.routing.pathfinder.PathFinder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.