Package buildcraft.core.robots.boards

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

/**
* 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 net.minecraft.entity.Entity;
import net.minecraft.entity.passive.EntityAnimal;
import net.minecraft.item.ItemStack;
import net.minecraft.item.ItemSword;

import buildcraft.api.boards.RedstoneBoardRobot;
import buildcraft.api.boards.RedstoneBoardRobotNBT;
import buildcraft.api.robots.AIRobot;
import buildcraft.api.robots.EntityRobotBase;
import buildcraft.core.inventory.filters.IStackFilter;
import buildcraft.core.robots.AIRobotAttack;
import buildcraft.core.robots.AIRobotFetchAndEquipItemStack;
import buildcraft.core.robots.AIRobotGotoSleep;
import buildcraft.core.robots.AIRobotSearchEntity;
import buildcraft.core.robots.IEntityFilter;

public class BoardRobotButcher extends RedstoneBoardRobot {

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

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

  @Override
  public final void update() {
    if (robot.getHeldItem() == null) {
      startDelegateAI(new AIRobotFetchAndEquipItemStack(robot, new IStackFilter() {
        @Override
        public boolean matches(ItemStack stack) {
          return stack.getItem() instanceof ItemSword;
        }
      }));
    } else {
      startDelegateAI(new AIRobotSearchEntity(robot, new IEntityFilter() {
        @Override
        public boolean matches(Entity entity) {
          return entity instanceof EntityAnimal;
        }
      }, 250, robot.getZoneToWork()));
    }
  }

  @Override
  public void delegateAIEnded(AIRobot ai) {
    if (ai instanceof AIRobotFetchAndEquipItemStack) {
      if (robot.getHeldItem() == null) {
        startDelegateAI(new AIRobotGotoSleep(robot));
      }
    } else if (ai instanceof AIRobotSearchEntity) {
      AIRobotSearchEntity mobAI = (AIRobotSearchEntity) ai;

      if (mobAI.target != null) {
        startDelegateAI(new AIRobotAttack(robot, ((AIRobotSearchEntity) ai).target));
      } else {
        startDelegateAI(new AIRobotGotoSleep(robot));
      }
    }
  }
}
TOP

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

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.