buildcraft/common/buildcraft/core/robots/boards/AIRobotSearchBlock.java
2014-06-13 13:36:02 +02:00

59 lines
1.6 KiB
Java
Executable file

/**
* 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 java.util.LinkedList;
import buildcraft.api.core.BlockIndex;
import buildcraft.api.robots.AIRobot;
import buildcraft.api.robots.EntityRobotBase;
import buildcraft.core.robots.AIRobotMoveToBlock;
import buildcraft.core.utils.IPathFound;
import buildcraft.core.utils.PathFinding;
import buildcraft.core.utils.PathFindingJob;
public class AIRobotSearchBlock extends AIRobot {
public BlockIndex blockFound;
private PathFinding blockScanner = null;
private PathFindingJob blockScannerJob;
private IPathFound pathFound;
public AIRobotSearchBlock(EntityRobotBase iRobot, IPathFound iPathFound) {
super(iRobot, 2);
pathFound = iPathFound;
}
@Override
public void start() {
blockScanner = new PathFinding(robot.worldObj, new BlockIndex(robot), pathFound);
blockScannerJob = new PathFindingJob(blockScanner);
blockScannerJob.start();
}
@Override
public void update() {
if (!blockScannerJob.isAlive()) {
if (blockScanner.isDone()) {
LinkedList<BlockIndex> path = blockScanner.getResult();
blockFound = path.removeLast();
startDelegateAI(new AIRobotMoveToBlock(robot, path));
}
}
}
@Override
public void delegateAIEnded(AIRobot ai) {
if (ai instanceof AIRobotMoveToBlock) {
terminate();
}
}
}