Package buildcraft.transport

Examples of buildcraft.transport.Pipe


    @Override
    public boolean matches(DockingStation station) {
      boolean actionFound = false;

      Pipe pipe = station.getPipe().pipe;

      if (!station.index().nextTo(new BlockIndex(requested.requester))) {
        return false;
      }
View Full Code Here


  }

  private StackRequest getOrderFromRequestingAction(DockingStation station) {
    boolean actionFound = false;

    Pipe pipe = station.getPipe().pipe;

    for (StatementSlot s : new ActionIterator(pipe)) {
      if (s.statement instanceof ActionStationRequestItems) {
        for (IStatementParameter p : s.parameters) {
          StatementParameterItemStack param = (StatementParameterItemStack) p;
View Full Code Here

    if (station == null) {
      return false;
    }

    Pipe pipe = station.getPipe().pipe;

    for (IInvSlot robotSlot : InventoryIterator.getIterable(robot, ForgeDirection.UNKNOWN)) {
      if (robotSlot.getStackInSlot() == null) {
        continue;
      }
View Full Code Here

TOP

Related Classes of buildcraft.transport.Pipe

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.