2018-10-16 01:36:30 +02:00
|
|
|
package de.ellpeck.naturesaura.blocks;
|
|
|
|
|
|
|
|
import de.ellpeck.naturesaura.reg.IColorProvidingBlock;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.SoundType;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.block.properties.PropertyEnum;
|
|
|
|
import net.minecraft.block.state.BlockFaceShape;
|
|
|
|
import net.minecraft.block.state.BlockStateContainer;
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
|
|
|
import net.minecraft.client.renderer.color.IBlockColor;
|
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.util.BlockRenderLayer;
|
|
|
|
import net.minecraft.util.EnumFacing;
|
|
|
|
import net.minecraft.util.IStringSerializable;
|
|
|
|
import net.minecraft.util.math.AxisAlignedBB;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
|
|
|
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
|
|
|
|
public class BlockGoldPowder extends BlockImpl implements IColorProvidingBlock {
|
|
|
|
|
|
|
|
public static final PropertyEnum<AttachPos> NORTH = PropertyEnum.create("north", AttachPos.class);
|
|
|
|
public static final PropertyEnum<AttachPos> EAST = PropertyEnum.create("east", AttachPos.class);
|
|
|
|
public static final PropertyEnum<AttachPos> SOUTH = PropertyEnum.create("south", AttachPos.class);
|
|
|
|
public static final PropertyEnum<AttachPos> WEST = PropertyEnum.create("west", AttachPos.class);
|
|
|
|
protected static final AxisAlignedBB[] AABBS = new AxisAlignedBB[]{
|
|
|
|
new AxisAlignedBB(0.1875D, 0.0D, 0.1875D, 0.8125D, 0.0625D, 0.8125D),
|
|
|
|
new AxisAlignedBB(0.1875D, 0.0D, 0.1875D, 0.8125D, 0.0625D, 1.0D),
|
|
|
|
new AxisAlignedBB(0.0D, 0.0D, 0.1875D, 0.8125D, 0.0625D, 0.8125D),
|
|
|
|
new AxisAlignedBB(0.0D, 0.0D, 0.1875D, 0.8125D, 0.0625D, 1.0D),
|
|
|
|
new AxisAlignedBB(0.1875D, 0.0D, 0.0D, 0.8125D, 0.0625D, 0.8125D),
|
|
|
|
new AxisAlignedBB(0.1875D, 0.0D, 0.0D, 0.8125D, 0.0625D, 1.0D),
|
|
|
|
new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.8125D, 0.0625D, 0.8125D),
|
|
|
|
new AxisAlignedBB(0.0D, 0.0D, 0.0D, 0.8125D, 0.0625D, 1.0D),
|
|
|
|
new AxisAlignedBB(0.1875D, 0.0D, 0.1875D, 1.0D, 0.0625D, 0.8125D),
|
|
|
|
new AxisAlignedBB(0.1875D, 0.0D, 0.1875D, 1.0D, 0.0625D, 1.0D),
|
|
|
|
new AxisAlignedBB(0.0D, 0.0D, 0.1875D, 1.0D, 0.0625D, 0.8125D),
|
|
|
|
new AxisAlignedBB(0.0D, 0.0D, 0.1875D, 1.0D, 0.0625D, 1.0D),
|
|
|
|
new AxisAlignedBB(0.1875D, 0.0D, 0.0D, 1.0D, 0.0625D, 0.8125D),
|
|
|
|
new AxisAlignedBB(0.1875D, 0.0D, 0.0D, 1.0D, 0.0625D, 1.0D),
|
|
|
|
new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.0625D, 0.8125D),
|
|
|
|
new AxisAlignedBB(0.0D, 0.0D, 0.0D, 1.0D, 0.0625D, 1.0D)
|
|
|
|
};
|
|
|
|
|
|
|
|
public BlockGoldPowder() {
|
|
|
|
super("gold_powder", Material.CIRCUITS);
|
|
|
|
this.setSoundType(SoundType.STONE);
|
|
|
|
this.setHardness(0F);
|
2018-11-09 13:15:25 +01:00
|
|
|
this.setDefaultState(this.getDefaultState()
|
|
|
|
.withProperty(NORTH, AttachPos.NONE)
|
|
|
|
.withProperty(EAST, AttachPos.NONE)
|
|
|
|
.withProperty(SOUTH, AttachPos.NONE)
|
|
|
|
.withProperty(WEST, AttachPos.NONE));
|
2018-10-16 01:36:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected BlockStateContainer createBlockState() {
|
|
|
|
return new BlockStateContainer(this, NORTH, EAST, SOUTH, WEST);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMetaFromState(IBlockState state) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IBlockColor getBlockColor() {
|
|
|
|
return (state, worldIn, pos, tintIndex) -> 0xf4cb42;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
|
|
|
|
return AABBS[getAABBIndex(state.getActualState(source, pos))];
|
|
|
|
}
|
|
|
|
|
|
|
|
private static int getAABBIndex(IBlockState state) {
|
|
|
|
int i = 0;
|
|
|
|
boolean n = state.getValue(NORTH) != AttachPos.NONE;
|
|
|
|
boolean e = state.getValue(EAST) != AttachPos.NONE;
|
|
|
|
boolean s = state.getValue(SOUTH) != AttachPos.NONE;
|
|
|
|
boolean w = state.getValue(WEST) != AttachPos.NONE;
|
|
|
|
|
|
|
|
if (n || s && !n && !e && !w) {
|
|
|
|
i |= 1 << EnumFacing.NORTH.getHorizontalIndex();
|
|
|
|
}
|
|
|
|
if (e || w && !n && !e && !s) {
|
|
|
|
i |= 1 << EnumFacing.EAST.getHorizontalIndex();
|
|
|
|
}
|
|
|
|
if (s || n && !e && !s && !w) {
|
|
|
|
i |= 1 << EnumFacing.SOUTH.getHorizontalIndex();
|
|
|
|
}
|
|
|
|
if (w || e && !n && !s && !w) {
|
|
|
|
i |= 1 << EnumFacing.WEST.getHorizontalIndex();
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos) {
|
|
|
|
state = state.withProperty(WEST, this.getAttachPosition(worldIn, pos, EnumFacing.WEST));
|
|
|
|
state = state.withProperty(EAST, this.getAttachPosition(worldIn, pos, EnumFacing.EAST));
|
|
|
|
state = state.withProperty(NORTH, this.getAttachPosition(worldIn, pos, EnumFacing.NORTH));
|
|
|
|
state = state.withProperty(SOUTH, this.getAttachPosition(worldIn, pos, EnumFacing.SOUTH));
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
private AttachPos getAttachPosition(IBlockAccess worldIn, BlockPos pos, EnumFacing direction) {
|
|
|
|
BlockPos dirPos = pos.offset(direction);
|
|
|
|
IBlockState state = worldIn.getBlockState(pos.offset(direction));
|
|
|
|
|
|
|
|
if (!this.canConnectTo(worldIn.getBlockState(dirPos), direction, worldIn, dirPos)
|
|
|
|
&& (state.isNormalCube() || !this.canConnectUpwardsTo(worldIn, dirPos.down()))) {
|
|
|
|
IBlockState iblockstate1 = worldIn.getBlockState(pos.up());
|
|
|
|
if (!iblockstate1.isNormalCube()) {
|
|
|
|
boolean flag = worldIn.getBlockState(dirPos).isSideSolid(worldIn, dirPos, EnumFacing.UP)
|
|
|
|
|| worldIn.getBlockState(dirPos).getBlock() == Blocks.GLOWSTONE;
|
|
|
|
if (flag && this.canConnectUpwardsTo(worldIn, dirPos.up())) {
|
|
|
|
if (state.isBlockNormalCube()) {
|
|
|
|
return AttachPos.UP;
|
|
|
|
}
|
|
|
|
return AttachPos.SIDE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return AttachPos.NONE;
|
|
|
|
} else {
|
|
|
|
return AttachPos.SIDE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, IBlockAccess worldIn, BlockPos pos) {
|
|
|
|
return NULL_AABB;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isOpaqueCube(IBlockState state) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isFullCube(IBlockState state) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canPlaceBlockAt(World worldIn, BlockPos pos) {
|
|
|
|
IBlockState downState = worldIn.getBlockState(pos.down());
|
|
|
|
return downState.isTopSolid()
|
|
|
|
|| downState.getBlockFaceShape(worldIn, pos.down(), EnumFacing.UP) == BlockFaceShape.SOLID
|
|
|
|
|| worldIn.getBlockState(pos.down()).getBlock() == Blocks.GLOWSTONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void neighborChanged(IBlockState state, World worldIn, BlockPos pos, Block blockIn, BlockPos fromPos) {
|
|
|
|
if (!worldIn.isRemote) {
|
|
|
|
if (!this.canPlaceBlockAt(worldIn, pos)) {
|
|
|
|
this.dropBlockAsItem(worldIn, pos, state, 0);
|
|
|
|
worldIn.setBlockToAir(pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean canConnectUpwardsTo(IBlockAccess worldIn, BlockPos pos) {
|
|
|
|
return this.canConnectTo(worldIn.getBlockState(pos), null, worldIn, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
private boolean canConnectTo(IBlockState blockState, @Nullable EnumFacing side, IBlockAccess world, BlockPos pos) {
|
|
|
|
Block block = blockState.getBlock();
|
|
|
|
return block == this;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public BlockRenderLayer getRenderLayer() {
|
|
|
|
return BlockRenderLayer.CUTOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public BlockFaceShape getBlockFaceShape(IBlockAccess worldIn, IBlockState state, BlockPos pos, EnumFacing face) {
|
|
|
|
return BlockFaceShape.UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
private enum AttachPos implements IStringSerializable {
|
|
|
|
UP("up"),
|
|
|
|
SIDE("side"),
|
|
|
|
NONE("none");
|
|
|
|
|
|
|
|
private final String name;
|
|
|
|
|
|
|
|
AttachPos(String name) {
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
return this.getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName() {
|
|
|
|
return this.name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|