Package appeng.me.pathfinding

Examples of appeng.me.pathfinding.ControllerValidator


        controllerState = ControllerState.CONTROLLER_CONFLICT;
        return;
      }

      DimensionalCoord dc = startingNode.getGridBlock().getLocation();
      ControllerValidator cv = new ControllerValidator( dc.x, dc.y, dc.z );

      startingNode.beginVisit( cv );

      if ( cv.isValid && cv.found == controllers.size() )
        controllerState = ControllerState.CONTROLLER_ONLINE;
View Full Code Here

TOP

Related Classes of appeng.me.pathfinding.ControllerValidator

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.