2018-10-14 14:27:18 +02:00
|
|
|
package de.ellpeck.naturesaura.blocks;
|
|
|
|
|
2018-10-18 13:34:37 +02:00
|
|
|
import de.ellpeck.naturesaura.Helper;
|
2018-10-14 14:27:18 +02:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.TileEntityNatureAltar;
|
2018-11-21 20:36:55 +01:00
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.render.RenderNatureAltar;
|
|
|
|
import de.ellpeck.naturesaura.reg.ITESRProvider;
|
2018-10-14 14:27:18 +02:00
|
|
|
import net.minecraft.block.material.Material;
|
2018-11-05 20:52:29 +01:00
|
|
|
import net.minecraft.block.state.BlockFaceShape;
|
2019-10-20 22:30:49 +02:00
|
|
|
import net.minecraft.block.BlockState;
|
|
|
|
import net.minecraft.client.renderer.tileentity.TileEntityRenderer;
|
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
|
|
import net.minecraft.util.Direction;
|
|
|
|
import net.minecraft.util.Hand;
|
2018-11-21 20:36:55 +01:00
|
|
|
import net.minecraft.util.Tuple;
|
2018-10-14 14:27:18 +02:00
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
2018-10-18 13:34:37 +02: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-10-14 14:27:18 +02:00
|
|
|
|
2018-11-21 20:36:55 +01:00
|
|
|
public class BlockNatureAltar extends BlockContainerImpl implements ITESRProvider {
|
2018-10-14 14:27:18 +02:00
|
|
|
|
|
|
|
private static final AxisAlignedBB BOUND_BOX = new AxisAlignedBB(0F, 0F, 0F, 1F, 12 / 16F, 1F);
|
|
|
|
|
|
|
|
public BlockNatureAltar() {
|
|
|
|
super(Material.ROCK, "nature_altar", TileEntityNatureAltar.class, "nature_altar");
|
2018-10-15 18:36:46 +02:00
|
|
|
this.setHardness(4F);
|
|
|
|
this.setHarvestLevel("pickaxe", 1);
|
2018-10-14 14:27:18 +02:00
|
|
|
}
|
|
|
|
|
2018-10-18 13:34:37 +02:00
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public boolean onBlockActivated(World worldIn, BlockPos pos, BlockState state, PlayerEntity playerIn, Hand hand, Direction 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-18 13:34:37 +02:00
|
|
|
}
|
|
|
|
|
2018-10-14 14:27:18 +02:00
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public AxisAlignedBB getBoundingBox(BlockState state, IBlockAccess source, BlockPos pos) {
|
2018-10-14 14:27:18 +02:00
|
|
|
return BOUND_BOX;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public boolean isFullCube(BlockState state) {
|
2018-10-14 14:27:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public boolean isOpaqueCube(BlockState state) {
|
2018-10-14 14:27:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-10-16 11:49:30 +02:00
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public boolean isNormalCube(BlockState state, IBlockAccess world, BlockPos pos) {
|
2018-10-16 11:49:30 +02:00
|
|
|
return false;
|
|
|
|
}
|
2018-11-05 20:52:29 +01:00
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public boolean isSideSolid(BlockState baseState, IBlockAccess world, BlockPos pos, Direction side) {
|
|
|
|
return side == Direction.DOWN;
|
2018-11-05 20:52:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-10-20 22:30:49 +02:00
|
|
|
public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, BlockState state, BlockPos pos, Direction face) {
|
2018-11-05 20:52:29 +01:00
|
|
|
return BlockFaceShape.UNDEFINED;
|
|
|
|
}
|
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<>(TileEntityNatureAltar.class, new RenderNatureAltar());
|
|
|
|
}
|
2018-10-14 14:27:18 +02:00
|
|
|
}
|