Examples of AIRobot


Examples of buildcraft.api.robots.AIRobot

    for (ForgeDirection d : ForgeDirection.VALID_DIRECTIONS) {
      DockingStation station = pipe.container.getStation(d);

      if (station != null && station.robotTaking() != null) {
        EntityRobot robot = (EntityRobot) station.robotTaking();
        AIRobot ai = robot.getOverridingAI();

        if (ai != null) {
          continue;
        }
View Full Code Here

Examples of buildcraft.api.robots.AIRobot

    }
  }

  @Override
  public void update() {
    AIRobot board = robot.getBoard();

    if (board != null) {
      startDelegateAI(board);
    }
  }
View Full Code Here

Examples of buildcraft.api.robots.AIRobot

      }
    }

    if (markerToBuild == null || !markerToBuild.needsToBuild()) {
      markerToBuild = null;
      startDelegateAI(new AIRobot(robot));
      return;
    }

    if (currentBuildingSlot == null) {
      currentBuildingSlot = markerToBuild.bluePrintBuilder.reserveNextSlot(robot.worldObj);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.