ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/common/misc/apiimpl/farmer/NetherWartFarmerBehavior.java

73 lines
2.8 KiB
Java
Raw Normal View History

2020-09-09 16:49:01 +02:00
package de.ellpeck.actuallyadditions.common.misc.apiimpl.farmer;
2016-12-04 16:15:32 +01:00
import de.ellpeck.actuallyadditions.api.farmer.FarmerResult;
2016-12-04 16:15:32 +01:00
import de.ellpeck.actuallyadditions.api.farmer.IFarmerBehavior;
import de.ellpeck.actuallyadditions.api.internal.IFarmer;
import net.minecraft.block.Block;
import net.minecraft.block.BlockNetherWart;
import net.minecraft.block.state.IBlockState;
import net.minecraft.init.Blocks;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumFacing;
import net.minecraft.util.NonNullList;
2016-12-04 16:15:32 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.common.IPlantable;
2016-12-04 16:15:32 +01:00
2019-05-02 09:10:29 +02:00
public class NetherWartFarmerBehavior implements IFarmerBehavior {
2016-12-04 16:15:32 +01:00
@Override
2019-05-02 09:10:29 +02:00
public FarmerResult tryPlantSeed(ItemStack seed, World world, BlockPos pos, IFarmer farmer) {
2016-12-04 16:15:32 +01:00
int use = 500;
2019-05-02 09:10:29 +02:00
if (farmer.getEnergy() >= use) {
if (seed.getItem() == Items.NETHER_WART) {
if (world.getBlockState(pos.down()).getBlock().canSustainPlant(world.getBlockState(pos.down()), world, pos.down(), EnumFacing.UP, (IPlantable) Items.NETHER_WART)) {
2016-12-04 16:15:32 +01:00
world.setBlockState(pos, Blocks.NETHER_WART.getDefaultState(), 2);
farmer.extractEnergy(use);
return FarmerResult.SUCCESS;
2016-12-04 16:15:32 +01:00
}
2018-07-28 02:05:30 +02:00
return FarmerResult.FAIL;
2016-12-04 16:15:32 +01:00
}
}
return FarmerResult.FAIL;
2016-12-04 16:15:32 +01:00
}
@Override
2019-05-02 09:10:29 +02:00
public FarmerResult tryHarvestPlant(World world, BlockPos pos, IFarmer farmer) {
2016-12-04 16:15:32 +01:00
int use = 500;
2019-05-02 09:10:29 +02:00
if (farmer.getEnergy() >= use) {
2016-12-04 16:15:32 +01:00
IBlockState state = world.getBlockState(pos);
2019-05-02 09:10:29 +02:00
if (state.getBlock() instanceof BlockNetherWart) {
if (state.getValue(BlockNetherWart.AGE) >= 3) {
2017-11-02 22:49:53 +01:00
NonNullList<ItemStack> drops = NonNullList.create();
state.getBlock().getDrops(drops, world, pos, state, 0);
2019-05-02 09:10:29 +02:00
if (!drops.isEmpty()) {
boolean toInput = farmer.canAddToSeeds(drops);
2019-05-02 09:10:29 +02:00
if (toInput || farmer.canAddToOutput(drops)) {
2016-12-04 16:15:32 +01:00
world.playEvent(2001, pos, Block.getStateId(state));
world.setBlockToAir(pos);
2019-05-02 09:10:29 +02:00
if (toInput) {
farmer.addToSeeds(drops);
2019-05-02 09:10:29 +02:00
} else {
farmer.addToOutput(drops);
2016-12-04 16:15:32 +01:00
}
farmer.extractEnergy(use);
return FarmerResult.SUCCESS;
2016-12-04 16:15:32 +01:00
}
}
}
2018-07-28 02:05:30 +02:00
return FarmerResult.FAIL;
2016-12-04 16:15:32 +01:00
}
}
return FarmerResult.FAIL;
}
@Override
2019-05-02 09:10:29 +02:00
public int getPriority() {
2018-01-31 07:46:37 +01:00
return 3;
2016-12-04 16:15:32 +01:00
}
}