2018-11-19 20:18:22 +01:00
|
|
|
package de.ellpeck.naturesaura.blocks;
|
|
|
|
|
|
|
|
import de.ellpeck.naturesaura.Helper;
|
2020-01-28 18:08:56 +01:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.ModTileEntities;
|
2018-11-19 20:18:22 +01:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityOfferingTable;
|
2018-11-21 20:36:55 +01:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.render.RenderOfferingTable;
|
|
|
|
import de.ellpeck.naturesaura.reg.ITESRProvider;
|
2020-01-21 21:04:44 +01:00
|
|
|
import net.minecraft.block.BlockState;
|
2018-11-19 20:18:22 +01: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;
|
2020-01-28 18:08:56 +01:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.tileentity.TileEntityType;
|
|
|
|
import net.minecraft.util.ActionResultType;
|
2019-10-20 22:30:49 +02:00
|
|
|
import net.minecraft.util.Hand;
|
2018-11-21 20:36:55 +01:00
|
|
|
import net.minecraft.util.Tuple;
|
2018-11-19 20:18:22 +01: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;
|
2018-11-19 20:18:22 +01:00
|
|
|
import net.minecraft.world.World;
|
2020-01-28 18:08:56 +01:00
|
|
|
|
|
|
|
import java.util.function.Function;
|
2018-11-19 20:18:22 +01:00
|
|
|
|
2018-11-21 20:36:55 +01:00
|
|
|
public class BlockOfferingTable extends BlockContainerImpl implements ITESRProvider {
|
2018-11-19 20:18:22 +01:00
|
|
|
|
2020-01-23 16:05:52 +01:00
|
|
|
private static final VoxelShape SHAPE = VoxelShapes.create(2 / 16F, 0F, 2 / 16F, 14 / 16F, 1F, 14 / 16F);
|
2018-11-19 20:18:22 +01:00
|
|
|
|
|
|
|
public BlockOfferingTable() {
|
2020-01-22 01:32:26 +01:00
|
|
|
super("offering_table", TileEntityOfferingTable::new, ModBlocks.prop(Material.WOOD).hardnessAndResistance(2F).sound(SoundType.WOOD));
|
2018-11-19 20:18:22 +01: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-11-19 20:18:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-01-23 16:05:52 +01:00
|
|
|
public VoxelShape getShape(BlockState state, IBlockReader worldIn, BlockPos pos, ISelectionContext context) {
|
|
|
|
return SHAPE;
|
2018-11-19 20:18:22 +01:00
|
|
|
}
|
|
|
|
|
2018-11-21 20:36:55 +01:00
|
|
|
@Override
|
2020-01-28 18:08:56 +01:00
|
|
|
public Tuple<TileEntityType, Function<TileEntityRendererDispatcher, TileEntityRenderer<? extends TileEntity>>> getTESR() {
|
|
|
|
return new Tuple<>(ModTileEntities.OFFERING_TABLE, RenderOfferingTable::new);
|
2018-11-21 20:36:55 +01:00
|
|
|
}
|
2018-11-19 20:18:22 +01:00
|
|
|
}
|