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

86 lines
3.5 KiB
Java
Raw Normal View History

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;
2020-02-25 20:07:26 +01:00
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
import de.ellpeck.naturesaura.api.aura.type.IAuraType;
2020-01-28 18:08:56 +01:00
import de.ellpeck.naturesaura.blocks.tiles.ModTileEntities;
2018-10-14 14:27:18 +02:00
import de.ellpeck.naturesaura.blocks.tiles.TileEntityNatureAltar;
import de.ellpeck.naturesaura.blocks.tiles.render.RenderNatureAltar;
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-02-25 20:07:26 +01:00
import net.minecraft.block.Block;
2019-10-20 22:30:49 +02:00
import net.minecraft.block.BlockState;
2020-01-21 21:04:44 +01:00
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-02-25 20:07:26 +01:00
import net.minecraft.item.BlockItemUseContext;
import net.minecraft.state.BooleanProperty;
import net.minecraft.state.StateContainer;
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-14 14:27:18 +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;
2018-10-18 13:34:37 +02:00
import net.minecraft.world.World;
2019-11-04 19:08:49 +01:00
import net.minecraftforge.common.ToolType;
2018-10-14 14:27:18 +02:00
2020-02-25 20:07:26 +01:00
import javax.annotation.Nullable;
2020-01-28 18:08:56 +01:00
import java.util.function.Function;
import java.util.function.Supplier;
2020-01-28 18:08:56 +01:00
2020-01-29 00:40:28 +01:00
public class BlockNatureAltar extends BlockContainerImpl implements ITESRProvider<TileEntityNatureAltar>, ICustomBlockState {
2018-10-14 14:27:18 +02:00
2020-01-23 16:05:52 +01:00
private static final VoxelShape SHAPE = VoxelShapes.create(0, 0, 0, 1, 12 / 16F, 1);
2020-02-25 20:07:26 +01:00
public static final BooleanProperty NETHER = BooleanProperty.create("nether");
2020-01-23 16:05:52 +01:00
2018-10-14 14:27:18 +02:00
public BlockNatureAltar() {
2020-10-17 21:13:45 +02:00
super("nature_altar", TileEntityNatureAltar::new, Properties.create(Material.ROCK).hardnessAndResistance(4F).harvestLevel(1).harvestTool(ToolType.PICKAXE));
2020-02-25 22:57:10 +01:00
this.setDefaultState(this.getDefaultState().with(NETHER, false));
2018-10-14 14:27:18 +02:00
}
@Override
protected boolean hasWaterlogging() {
return true;
}
2018-10-18 13:34:37 +02:00
@Override
2020-01-23 16:05:52 +01:00
public VoxelShape getShape(BlockState state, IBlockReader worldIn, BlockPos pos, ISelectionContext context) {
return SHAPE;
2018-10-14 14:27:18 +02:00
}
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-23 16:05:52 +01:00
return Helper.putStackOnTile(player, handIn, pos, 0, true);
}
@Override
public Tuple<TileEntityType<TileEntityNatureAltar>, Supplier<Function<? super TileEntityRendererDispatcher, ? extends TileEntityRenderer<? super TileEntityNatureAltar>>>> getTESR() {
return new Tuple<>(ModTileEntities.NATURE_ALTAR, () -> RenderNatureAltar::new);
}
2020-01-29 00:40:28 +01:00
@Override
public void generateCustomBlockState(BlockStateGenerator generator) {
2020-02-25 20:07:26 +01:00
// noop
}
@Override
protected void fillStateContainer(StateContainer.Builder<Block, BlockState> builder) {
super.fillStateContainer(builder);
builder.add(NETHER);
}
@Nullable
@Override
public BlockState getStateForPlacement(BlockItemUseContext context) {
boolean nether = IAuraType.forWorld(context.getWorld()).isSimilar(NaturesAuraAPI.TYPE_NETHER);
return super.getStateForPlacement(context).with(NETHER, nether);
2020-01-29 00:40:28 +01:00
}
2018-10-14 14:27:18 +02:00
}