/** * Copyright (c) 2011-2015, SpaceToad and the BuildCraft Team * http://www.mod-buildcraft.com * <p/> * 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.robotics.boards; import buildcraft.api.boards.RedstoneBoardRobot; import buildcraft.api.boards.RedstoneBoardRobotNBT; import buildcraft.api.robots.AIRobot; import buildcraft.api.robots.EntityRobotBase; import buildcraft.core.lib.inventory.filters.IStackFilter; import buildcraft.robotics.ai.AIRobotGotoSleep; import buildcraft.robotics.ai.AIRobotGotoStationAndLoad; import buildcraft.robotics.ai.AIRobotGotoStationAndUnload; import buildcraft.robotics.ai.AIRobotLoad; import buildcraft.robotics.statements.ActionRobotFilter; public class BoardRobotCarrier extends RedstoneBoardRobot { public BoardRobotCarrier(EntityRobotBase iRobot) { super(iRobot); } @Override public RedstoneBoardRobotNBT getNBTHandler() { return BCBoardNBT.REGISTRY.get("carrier"); } @Override public void update() { if (!robot.containsItems()) { IStackFilter filter = ActionRobotFilter.getGateFilter(robot.getLinkedStation()); startDelegateAI(new AIRobotGotoStationAndLoad(robot, filter, AIRobotLoad.ANY_QUANTITY)); } else { startDelegateAI(new AIRobotGotoStationAndUnload(robot)); } } @Override public void delegateAIEnded(AIRobot ai) { if (ai instanceof AIRobotGotoStationAndLoad) { if (!ai.success()) { startDelegateAI(new AIRobotGotoSleep(robot)); } } else if (ai instanceof AIRobotGotoStationAndUnload) { if (!ai.success()) { startDelegateAI(new AIRobotGotoSleep(robot)); } } } }