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;
|
2021-12-04 15:40:09 +01:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.BlockEntityOfferingTable;
|
2018-11-21 20:36:55 +01:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.render.RenderOfferingTable;
|
2020-01-29 00:40:28 +01:00
|
|
|
import de.ellpeck.naturesaura.data.BlockStateGenerator;
|
|
|
|
import de.ellpeck.naturesaura.reg.ICustomBlockState;
|
2018-11-21 20:36:55 +01:00
|
|
|
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;
|
2021-12-04 15:40:09 +01:00
|
|
|
import net.minecraft.client.renderer.tileentity.BlockEntityRenderer;
|
|
|
|
import net.minecraft.client.renderer.tileentity.BlockEntityRendererDispatcher;
|
|
|
|
import net.minecraft.entity.player.Player;
|
|
|
|
import net.minecraft.tileentity.BlockEntityType;
|
|
|
|
import net.minecraft.util.InteractionResult;
|
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;
|
2021-12-04 15:40:09 +01:00
|
|
|
import net.minecraft.util.math.shapes.Shapes;
|
|
|
|
import net.minecraft.level.IBlockReader;
|
|
|
|
import net.minecraft.level.Level;
|
2020-01-28 18:08:56 +01:00
|
|
|
|
|
|
|
import java.util.function.Function;
|
2020-01-28 20:36:08 +01:00
|
|
|
import java.util.function.Supplier;
|
2018-11-19 20:18:22 +01:00
|
|
|
|
2021-12-04 15:40:09 +01:00
|
|
|
public class BlockOfferingTable extends BlockContainerImpl implements ITESRProvider<BlockEntityOfferingTable>, ICustomBlockState {
|
2018-11-19 20:18:22 +01:00
|
|
|
|
2021-12-04 15:40:09 +01:00
|
|
|
private static final VoxelShape SHAPE = Shapes.create(2 / 16F, 0F, 2 / 16F, 14 / 16F, 1F, 14 / 16F);
|
2018-11-19 20:18:22 +01:00
|
|
|
|
|
|
|
public BlockOfferingTable() {
|
2021-12-04 15:40:09 +01:00
|
|
|
super("offering_table", BlockEntityOfferingTable::new, Properties.create(Material.WOOD).hardnessAndResistance(2F).sound(SoundType.WOOD));
|
2018-11-19 20:18:22 +01:00
|
|
|
}
|
|
|
|
|
2020-02-05 14:30:17 +01:00
|
|
|
@Override
|
|
|
|
protected boolean hasWaterlogging() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-11-19 20:18:22 +01:00
|
|
|
@Override
|
2021-12-04 15:40:09 +01:00
|
|
|
public InteractionResult onBlockActivated(BlockState state, Level levelIn, BlockPos pos, Player 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
|
2021-12-04 15:40:09 +01:00
|
|
|
public VoxelShape getShape(BlockState state, IBlockReader levelIn, BlockPos pos, ISelectionContext context) {
|
2020-01-23 16:05:52 +01:00
|
|
|
return SHAPE;
|
2018-11-19 20:18:22 +01:00
|
|
|
}
|
|
|
|
|
2018-11-21 20:36:55 +01:00
|
|
|
@Override
|
2021-12-04 15:40:09 +01:00
|
|
|
public Tuple<BlockEntityType<BlockEntityOfferingTable>, Supplier<Function<? super BlockEntityRendererDispatcher, ? extends BlockEntityRenderer<? super BlockEntityOfferingTable>>>> getTESR() {
|
2020-01-28 20:36:08 +01:00
|
|
|
return new Tuple<>(ModTileEntities.OFFERING_TABLE, () -> RenderOfferingTable::new);
|
2018-11-21 20:36:55 +01:00
|
|
|
}
|
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-11-19 20:18:22 +01:00
|
|
|
}
|