Package buildcraft.core.robots.boards

Source Code of buildcraft.core.robots.boards.BoardRobotCarrier

/**
* Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team
* http://www.mod-buildcraft.com
*
* BuildCraft is distributed under the terms of the Minecraft Mod Public
* License 1.0, or MMPL. Please check the contents of the license located in
* http://www.mod-buildcraft.com/MMPL-1.0.txt
*/
package buildcraft.core.robots.boards;

import buildcraft.api.boards.RedstoneBoardRobot;
import buildcraft.api.boards.RedstoneBoardRobotNBT;
import buildcraft.api.robots.AIRobot;
import buildcraft.api.robots.EntityRobotBase;
import buildcraft.core.robots.AIRobotGotoSleep;
import buildcraft.core.robots.AIRobotGotoStationAndUnload;
import buildcraft.core.robots.AIRobotGotoStationToLoad;
import buildcraft.core.robots.AIRobotLoad;
import buildcraft.silicon.statements.ActionRobotFilter;

public class BoardRobotCarrier extends RedstoneBoardRobot {

  private boolean loadFound = true;
  private boolean unloadFound = true;

  public BoardRobotCarrier(EntityRobotBase iRobot) {
    super(iRobot);
  }

  @Override
  public RedstoneBoardRobotNBT getNBTHandler() {
    return BoardRobotCarrierNBT.instance;
  }

  @Override
  public void update() {
    if (!robot.containsItems()) {
      startDelegateAI(new AIRobotGotoStationToLoad(robot, ActionRobotFilter.getGateFilter(robot
          .getLinkedStation()), robot.getZoneToWork()));
    } else {
      startDelegateAI(new AIRobotGotoStationAndUnload(robot, robot.getZoneToWork()));
    }
  }

  @Override
  public void delegateAIEnded(AIRobot ai) {
    if (ai instanceof AIRobotGotoStationToLoad) {
      if (ai.success()) {
        loadFound = true;
        startDelegateAI(new AIRobotLoad(robot, ActionRobotFilter.getGateFilter(robot
            .getLinkedStation())));
      } else {
        loadFound = false;

        if (robot.containsItems()) {
          startDelegateAI(new AIRobotGotoStationAndUnload(robot, robot.getZoneToWork()));
        } else {
          unloadFound = false;
        }
      }
    } else if (ai instanceof AIRobotGotoStationAndUnload) {
      if (ai.success()) {
        unloadFound = true;
      } else {
        unloadFound = false;
        startDelegateAI(new AIRobotGotoStationToLoad(robot, ActionRobotFilter.getGateFilter(robot
            .getLinkedStation()), robot.getZoneToWork()));
      }
    }

    if (!loadFound && !unloadFound) {
      startDelegateAI(new AIRobotGotoSleep(robot));

      // reset load and unload so that upon waking up both are tried.
      loadFound = true;
      unloadFound = true;
    }
  }
}
TOP

Related Classes of buildcraft.core.robots.boards.BoardRobotCarrier

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.