buildcraft/api/buildcraft/api/blueprints/SchematicFluid.java

82 lines
2 KiB
Java
Raw Normal View History

/**
2014-02-15 09:21:40 +01:00
* Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team
2012-05-09 22:43:05 +02:00
* http://www.mod-buildcraft.com
*
* The BuildCraft API is distributed under the terms of the MIT License.
* Please check the contents of the license, which should be located
* as "LICENSE.API" in the BuildCraft source code distribution.
2012-05-09 22:43:05 +02:00
*/
package buildcraft.api.blueprints;
2012-05-09 22:43:05 +02:00
import java.util.LinkedList;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
2012-07-25 12:45:15 +02:00
public class SchematicFluid extends SchematicBlock {
2012-06-04 22:48:18 +02:00
private final ItemStack fluidItem;
2012-06-04 22:48:18 +02:00
public SchematicFluid(FluidStack fluidStack) {
this.fluidItem = new ItemStack(fluidStack.getFluid().getBlock(), 1);
2012-05-09 22:43:05 +02:00
}
@Override
public void getRequirementsForPlacement(IBuilderContext context, LinkedList<ItemStack> requirements) {
if (meta == 0) {
requirements.add(fluidItem);
2012-05-09 22:43:05 +02:00
}
}
2014-05-04 18:25:28 +02:00
@Override
public void storeRequirements(IBuilderContext context, int x, int y, int z) {
2014-05-04 18:25:28 +02:00
// cancel requirements reading
}
2012-05-09 22:43:05 +02:00
@Override
public boolean isAlreadyBuilt(IBuilderContext context, int x, int y, int z) {
if (meta == 0) {
return block == context.world().getBlock(x, y, z) && context.world().getBlockMetadata(x, y, z) == 0;
} else {
return block == context.world().getBlock(x, y, z);
}
2012-05-09 22:43:05 +02:00
}
@Override
public void rotateLeft(IBuilderContext context) {
2012-05-09 22:43:05 +02:00
}
2012-06-04 22:48:18 +02:00
2012-05-09 22:43:05 +02:00
@Override
public boolean doNotBuild() {
return meta != 0;
2012-05-09 22:43:05 +02:00
}
2012-06-04 22:48:18 +02:00
2012-05-09 22:43:05 +02:00
@Override
public void placeInWorld(IBuilderContext context, int x, int y, int z, LinkedList<ItemStack> stacks) {
if (meta == 0) {
2014-03-19 11:24:46 +01:00
context.world().setBlock(x, y, z, block, 0, 3);
}
}
@Override
public void postProcessing(IBuilderContext context, int x, int y, int z) {
if (meta != 0) {
context.world().setBlock(x, y, z, block, meta, 3);
}
2012-05-09 22:43:05 +02:00
}
@Override
public LinkedList<ItemStack> getStacksToDisplay(
LinkedList<ItemStack> stackConsumed) {
LinkedList<ItemStack> result = new LinkedList<ItemStack>();
result.add(fluidItem);
return result;
}
2014-06-03 05:07:49 +02:00
@Override
2014-09-03 19:22:15 +02:00
public int getEnergyRequirement(LinkedList<ItemStack> stacksUsed) {
return 1 * BuilderAPI.BUILD_ENERGY;
2014-06-03 05:07:49 +02:00
}
2012-05-09 22:43:05 +02:00
}