2018-10-16 11:49:30 +02:00
|
|
|
package de.ellpeck.naturesaura.blocks;
|
|
|
|
|
2018-10-18 13:34:37 +02:00
|
|
|
import de.ellpeck.naturesaura.Helper;
|
2018-11-14 19:14:03 +01:00
|
|
|
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
|
|
|
|
import de.ellpeck.naturesaura.api.recipes.TreeRitualRecipe;
|
|
|
|
import de.ellpeck.naturesaura.blocks.multi.Multiblocks;
|
2018-10-16 11:49:30 +02:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityWoodStand;
|
|
|
|
import net.minecraft.block.SoundType;
|
|
|
|
import net.minecraft.block.material.Material;
|
2018-11-05 20:52:29 +01:00
|
|
|
import net.minecraft.block.state.BlockFaceShape;
|
2018-10-16 11:49:30 +02:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2018-11-14 19:14:03 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
2018-11-20 11:44:07 +01:00
|
|
|
import net.minecraft.item.crafting.Ingredient;
|
2018-11-14 19:14:03 +01:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2018-10-16 11:49:30 +02:00
|
|
|
import net.minecraft.util.EnumFacing;
|
|
|
|
import net.minecraft.util.EnumHand;
|
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
import net.minecraft.world.World;
|
2018-11-14 19:14:03 +01:00
|
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
|
|
import net.minecraftforge.event.terraingen.SaplingGrowTreeEvent;
|
|
|
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
|
|
|
import org.apache.commons.lang3.mutable.MutableObject;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.List;
|
2018-10-16 11:49:30 +02:00
|
|
|
|
|
|
|
public class BlockWoodStand extends BlockContainerImpl {
|
|
|
|
|
|
|
|
private static final AxisAlignedBB BOUND_BOX = new AxisAlignedBB(3 / 16F, 0F, 3 / 16F, 13 / 16F, 13 / 16F, 13 / 16F);
|
|
|
|
|
|
|
|
public BlockWoodStand() {
|
|
|
|
super(Material.WOOD, "wood_stand", TileEntityWoodStand.class, "wood_stand");
|
|
|
|
this.setHardness(1.5F);
|
|
|
|
this.setSoundType(SoundType.WOOD);
|
|
|
|
this.setHarvestLevel("axe", 0);
|
2018-11-14 19:14:03 +01:00
|
|
|
|
|
|
|
MinecraftForge.TERRAIN_GEN_BUS.register(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@SubscribeEvent
|
|
|
|
public void onTreeGrow(SaplingGrowTreeEvent event) {
|
|
|
|
World world = event.getWorld();
|
|
|
|
BlockPos pos = event.getPos();
|
|
|
|
if (!world.isRemote) {
|
|
|
|
if (Multiblocks.TREE_RITUAL.isComplete(world, pos)) {
|
|
|
|
IBlockState sapling = world.getBlockState(pos);
|
|
|
|
ItemStack saplingStack = sapling.getBlock().getItem(world, pos, sapling);
|
|
|
|
if (!saplingStack.isEmpty()) {
|
|
|
|
for (TreeRitualRecipe recipe : NaturesAuraAPI.TREE_RITUAL_RECIPES.values()) {
|
2018-11-20 11:44:07 +01:00
|
|
|
if (recipe.saplingType.apply(saplingStack)) {
|
|
|
|
List<Ingredient> required = new ArrayList<>(Arrays.asList(recipe.ingredients));
|
2018-11-14 19:14:03 +01:00
|
|
|
MutableObject<TileEntityWoodStand> toPick = new MutableObject<>();
|
|
|
|
|
|
|
|
boolean fine = Multiblocks.TREE_RITUAL.forEach(pos, 'W', (tilePos, matcher) -> {
|
|
|
|
TileEntity tile = world.getTileEntity(tilePos);
|
|
|
|
if (tile instanceof TileEntityWoodStand) {
|
|
|
|
TileEntityWoodStand stand = (TileEntityWoodStand) tile;
|
|
|
|
ItemStack stack = stand.items.getStackInSlot(0);
|
|
|
|
if (!stack.isEmpty()) {
|
2018-11-19 21:55:00 +01:00
|
|
|
for (int i = required.size() - 1; i >= 0; i--) {
|
2018-11-20 11:44:07 +01:00
|
|
|
Ingredient req = required.get(i);
|
|
|
|
if (req.apply(stack)) {
|
2018-11-19 21:55:00 +01:00
|
|
|
required.remove(i);
|
2018-11-14 19:14:03 +01:00
|
|
|
|
2018-11-19 21:55:00 +01:00
|
|
|
if (toPick.getValue() == null) {
|
|
|
|
toPick.setValue(stand);
|
|
|
|
}
|
|
|
|
return true;
|
2018-11-14 19:14:03 +01:00
|
|
|
}
|
|
|
|
}
|
2018-11-19 21:55:00 +01:00
|
|
|
return false;
|
2018-11-14 19:14:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
|
|
|
|
if (fine && required.isEmpty()) {
|
|
|
|
toPick.getValue().setRitual(pos, recipe);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-16 11:49:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumHand hand, EnumFacing facing, float hitX, float hitY, float hitZ) {
|
2018-10-24 12:42:04 +02:00
|
|
|
return Helper.putStackOnTile(playerIn, hand, pos, 0, true);
|
2018-10-16 11:49:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
|
|
|
|
return BOUND_BOX;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isFullCube(IBlockState state) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isOpaqueCube(IBlockState state) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) {
|
|
|
|
return false;
|
|
|
|
}
|
2018-11-05 20:52:29 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isSideSolid(IBlockState baseState, IBlockAccess world, BlockPos pos, EnumFacing side) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, IBlockState state, BlockPos pos, EnumFacing face) {
|
|
|
|
return BlockFaceShape.UNDEFINED;
|
|
|
|
}
|
2018-10-16 11:49:30 +02:00
|
|
|
}
|