NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/BlockWoodStand.java

123 lines
5.7 KiB
Java
Raw Normal View History

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;
2020-01-28 18:08:56 +01:00
import de.ellpeck.naturesaura.blocks.tiles.ModTileEntities;
2018-10-16 11:49:30 +02:00
import de.ellpeck.naturesaura.blocks.tiles.TileEntityWoodStand;
import de.ellpeck.naturesaura.blocks.tiles.render.RenderWoodStand;
2020-01-29 00:40:28 +01:00
import de.ellpeck.naturesaura.data.BlockStateGenerator;
import de.ellpeck.naturesaura.reg.ICustomBlockState;
import de.ellpeck.naturesaura.reg.ITESRProvider;
2020-01-21 21:04:44 +01:00
import net.minecraft.block.BlockState;
2018-10-16 11:49:30 +02:00
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
2019-10-20 22:30:49 +02:00
import net.minecraft.client.renderer.tileentity.TileEntityRenderer;
2020-01-28 18:08:56 +01:00
import net.minecraft.client.renderer.tileentity.TileEntityRendererDispatcher;
2019-10-20 22:30:49 +02:00
import net.minecraft.entity.player.PlayerEntity;
2018-11-14 19:14:03 +01:00
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.Ingredient;
2018-11-14 19:14:03 +01:00
import net.minecraft.tileentity.TileEntity;
2020-01-28 18:08:56 +01:00
import net.minecraft.tileentity.TileEntityType;
import net.minecraft.util.ActionResultType;
2019-10-20 22:30:49 +02:00
import net.minecraft.util.Hand;
import net.minecraft.util.Tuple;
2018-10-16 11:49:30 +02:00
import net.minecraft.util.math.BlockPos;
2020-01-21 21:04:44 +01:00
import net.minecraft.util.math.BlockRayTraceResult;
2020-01-23 16:05:52 +01:00
import net.minecraft.util.math.shapes.ISelectionContext;
import net.minecraft.util.math.shapes.VoxelShape;
import net.minecraft.util.math.shapes.VoxelShapes;
import net.minecraft.world.IBlockReader;
2020-01-21 21:04:44 +01:00
import net.minecraft.world.IWorld;
2018-10-16 11:49:30 +02:00
import net.minecraft.world.World;
2018-11-14 19:14:03 +01:00
import net.minecraftforge.common.MinecraftForge;
2019-11-04 19:08:49 +01:00
import net.minecraftforge.common.ToolType;
2020-01-21 21:04:44 +01:00
import net.minecraftforge.event.world.SaplingGrowTreeEvent;
2019-10-20 22:30:49 +02:00
import net.minecraftforge.eventbus.api.SubscribeEvent;
2018-11-14 19:14:03 +01:00
import org.apache.commons.lang3.mutable.MutableObject;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
2020-01-28 18:08:56 +01:00
import java.util.function.Function;
import java.util.function.Supplier;
2018-10-16 11:49:30 +02:00
2020-01-29 00:40:28 +01:00
public class BlockWoodStand extends BlockContainerImpl implements ITESRProvider<TileEntityWoodStand>, ICustomBlockState {
2018-10-16 11:49:30 +02:00
2020-01-23 16:05:52 +01:00
private static final VoxelShape SHAPE = VoxelShapes.create(3 / 16F, 0F, 3 / 16F, 13 / 16F, 13 / 16F, 13 / 16F);
2018-10-16 11:49:30 +02:00
public BlockWoodStand() {
2020-01-22 01:32:26 +01:00
super("wood_stand", TileEntityWoodStand::new, ModBlocks.prop(Material.WOOD).hardnessAndResistance(1.5F).sound(SoundType.WOOD).harvestLevel(0).harvestTool(ToolType.AXE));
2020-01-21 21:04:44 +01:00
MinecraftForge.EVENT_BUS.register(this);
2018-11-14 19:14:03 +01:00
}
2020-01-23 16:05:52 +01:00
@Override
public VoxelShape getShape(BlockState state, IBlockReader worldIn, BlockPos pos, ISelectionContext context) {
return SHAPE;
}
2018-11-14 19:14:03 +01:00
@SubscribeEvent
public void onTreeGrow(SaplingGrowTreeEvent event) {
2020-01-21 21:04:44 +01:00
IWorld world = event.getWorld();
2018-11-14 19:14:03 +01:00
BlockPos pos = event.getPos();
2020-01-21 21:04:44 +01:00
if (!world.isRemote()) {
2018-11-14 19:14:03 +01:00
if (Multiblocks.TREE_RITUAL.isComplete(world, pos)) {
2019-10-20 22:30:49 +02:00
BlockState sapling = world.getBlockState(pos);
2018-11-14 19:14:03 +01:00
ItemStack saplingStack = sapling.getBlock().getItem(world, pos, sapling);
if (!saplingStack.isEmpty()) {
for (TreeRitualRecipe recipe : NaturesAuraAPI.TREE_RITUAL_RECIPES.values()) {
2020-01-21 21:04:44 +01:00
if (recipe.saplingType.test(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()) {
for (int i = required.size() - 1; i >= 0; i--) {
Ingredient req = required.get(i);
2020-01-21 21:04:44 +01:00
if (req.test(stack)) {
required.remove(i);
2018-11-14 19:14:03 +01:00
if (toPick.getValue() == null) {
toPick.setValue(stand);
}
return true;
2018-11-14 19:14:03 +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
2020-01-28 18:08:56 +01:00
public ActionResultType onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) {
2020-01-21 21:04:44 +01:00
return Helper.putStackOnTile(player, handIn, pos, 0, true);
2018-10-16 11:49:30 +02:00
}
@Override
public Tuple<TileEntityType<TileEntityWoodStand>, Supplier<Function<? super TileEntityRendererDispatcher, ? extends TileEntityRenderer<? super TileEntityWoodStand>>>> getTESR() {
return new Tuple<>(ModTileEntities.WOOD_STAND, () -> RenderWoodStand::new);
}
2020-01-29 00:40:28 +01:00
@Override
public void generateCustomBlockState(BlockStateGenerator generator) {
generator.simpleBlock(this, generator.models().getExistingFile(generator.modLoc(this.getBaseName())));
}
2018-10-16 11:49:30 +02:00
}