Package logisticspipes.pipes

Examples of logisticspipes.pipes.PipeItemsSystemDestinationLogistics


          for(ExitRoute router:pipe.getRouter().getIRoutersByCost()) {
            if(!router.containsFlag(PipeRoutingConnectionType.canRouteTo))
              continue;
            CoreRoutedPipe lPipe = router.destination.getPipe();
            if(lPipe instanceof PipeItemsSystemDestinationLogistics) {
              PipeItemsSystemDestinationLogistics dPipe = (PipeItemsSystemDestinationLogistics) lPipe;
              if(dPipe.getTargetUUID() != null) {
                if(dPipe.getTargetUUID().equals(pipe.getLocalFreqUUID())) {
                  data.setDestination(dPipe.getRouter().getSimpleID());
                  data.setArrived(false);
                }
              }
            }
          }
View Full Code Here

TOP

Related Classes of logisticspipes.pipes.PipeItemsSystemDestinationLogistics

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.