2018-11-19 20:18:22 +01:00
|
|
|
package de.ellpeck.naturesaura.blocks;
|
|
|
|
|
|
|
|
import de.ellpeck.naturesaura.Helper;
|
2020-01-21 23:02:39 +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;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
|
|
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.AxisAlignedBB;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
2020-01-21 21:04:44 +01:00
|
|
|
import net.minecraft.util.math.BlockRayTraceResult;
|
2018-11-19 20:18:22 +01:00
|
|
|
import net.minecraft.world.World;
|
2019-10-20 22:30:49 +02:00
|
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
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-21 21:04:44 +01:00
|
|
|
// TODO bounds
|
2018-11-19 20:18:22 +01:00
|
|
|
private static final AxisAlignedBB BOUND_BOX = new AxisAlignedBB(2 / 16F, 0F, 2 / 16F, 14 / 16F, 1F, 14 / 16F);
|
|
|
|
|
|
|
|
public BlockOfferingTable() {
|
2020-01-21 23:02:39 +01:00
|
|
|
super("offering_table", ModTileEntities.OFFERING_TABLE, ModBlocks.prop(Material.WOOD).hardnessAndResistance(2F).sound(SoundType.WOOD));
|
2018-11-19 20:18:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-01-21 21:04:44 +01:00
|
|
|
public boolean onBlockActivated(BlockState state, World worldIn, BlockPos pos, PlayerEntity player, Hand handIn, BlockRayTraceResult hit) {
|
|
|
|
return Helper.putStackOnTile(player, handIn, pos, 0, true);
|
2018-11-19 20:18:22 +01:00
|
|
|
}
|
|
|
|
|
2020-01-21 21:04:44 +01:00
|
|
|
/* @Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public boolean isFullCube(BlockState state) {
|
2018-11-19 20:18:22 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public boolean isOpaqueCube(BlockState state) {
|
2018-11-19 20:18:22 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2020-01-21 21:04:44 +01:00
|
|
|
public boolean isNormalCube(BlockState state, IWorld world, BlockPos pos) {
|
2018-11-19 20:18:22 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public boolean isSideSolid(BlockState baseState, IBlockAccess world, BlockPos pos, Direction side) {
|
2018-11-19 20:18:22 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, BlockState state, BlockPos pos, Direction face) {
|
2018-11-19 20:18:22 +01:00
|
|
|
return BlockFaceShape.UNDEFINED;
|
2020-01-21 21:04:44 +01:00
|
|
|
}*/
|
2018-11-21 20:36:55 +01:00
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
@OnlyIn(Dist.CLIENT)
|
|
|
|
public Tuple<Class, TileEntityRenderer> getTESR() {
|
2018-11-21 20:36:55 +01:00
|
|
|
return new Tuple<>(TileEntityOfferingTable.class, new RenderOfferingTable());
|
|
|
|
}
|
2018-11-19 20:18:22 +01:00
|
|
|
}
|