2016-02-17 09:21:22 -05:00
|
|
|
package WayofTime.bloodmagic.block;
|
|
|
|
|
2017-08-15 21:30:48 -07:00
|
|
|
import WayofTime.bloodmagic.BloodMagic;
|
2018-03-07 19:43:00 -08:00
|
|
|
import WayofTime.bloodmagic.client.IVariantProvider;
|
2018-02-15 18:49:01 -08:00
|
|
|
import WayofTime.bloodmagic.soul.IDemonWillGem;
|
|
|
|
import WayofTime.bloodmagic.soul.IDiscreteDemonWill;
|
2017-08-15 21:30:48 -07:00
|
|
|
import WayofTime.bloodmagic.tile.TileDemonCrucible;
|
|
|
|
import WayofTime.bloodmagic.util.Utils;
|
2017-01-01 21:43:34 -08:00
|
|
|
import net.minecraft.block.Block;
|
2016-02-17 09:21:22 -05:00
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
2016-02-17 16:31:11 -05:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2017-08-15 21:24:59 -07:00
|
|
|
import net.minecraft.item.ItemBlock;
|
2016-02-17 16:31:11 -05:00
|
|
|
import net.minecraft.item.ItemStack;
|
2016-02-17 09:21:22 -05:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2016-03-18 13:16:38 -04:00
|
|
|
import net.minecraft.util.EnumBlockRenderType;
|
2016-02-17 16:31:11 -05:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-03-18 13:16:38 -04:00
|
|
|
import net.minecraft.util.EnumHand;
|
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
2016-02-17 09:21:22 -05:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2017-01-01 21:43:34 -08:00
|
|
|
import javax.annotation.Nullable;
|
|
|
|
|
2017-08-15 21:30:48 -07:00
|
|
|
public class BlockDemonCrucible extends Block implements IVariantProvider, IBMBlock {
|
|
|
|
public BlockDemonCrucible() {
|
2016-04-24 10:06:28 -07:00
|
|
|
super(Material.ROCK);
|
2016-02-17 09:21:22 -05:00
|
|
|
|
2017-08-14 20:53:42 -07:00
|
|
|
setUnlocalizedName(BloodMagic.MODID + ".demonCrucible");
|
|
|
|
setCreativeTab(BloodMagic.TAB_BM);
|
2016-02-17 09:21:22 -05:00
|
|
|
setHardness(2.0F);
|
|
|
|
setResistance(5.0F);
|
|
|
|
setHarvestLevel("pickaxe", 0);
|
|
|
|
|
|
|
|
// setBlockBounds(0.3F, 0F, 0.3F, 0.72F, 1F, 0.72F);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-15 21:30:48 -07:00
|
|
|
public boolean isNormalCube(IBlockState state, IBlockAccess world, BlockPos pos) {
|
2016-02-17 09:21:22 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-15 21:30:48 -07:00
|
|
|
public boolean isOpaqueCube(IBlockState state) {
|
2016-02-17 09:21:22 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-15 21:30:48 -07:00
|
|
|
public boolean causesSuffocation(IBlockState state) {
|
2016-02-17 09:21:22 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-15 21:30:48 -07:00
|
|
|
public EnumBlockRenderType getRenderType(IBlockState state) {
|
2016-03-18 13:16:38 -04:00
|
|
|
return EnumBlockRenderType.MODEL;
|
2016-02-17 09:21:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-15 21:30:48 -07:00
|
|
|
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) {
|
2017-01-01 21:43:34 -08:00
|
|
|
ItemStack heldItem = player.getHeldItem(hand);
|
2016-02-17 16:31:11 -05:00
|
|
|
TileDemonCrucible crucible = (TileDemonCrucible) world.getTileEntity(pos);
|
|
|
|
|
|
|
|
if (crucible == null || player.isSneaking())
|
|
|
|
return false;
|
|
|
|
|
2017-08-15 21:30:48 -07:00
|
|
|
if (!heldItem.isEmpty()) {
|
|
|
|
if (!(heldItem.getItem() instanceof IDiscreteDemonWill) && !(heldItem.getItem() instanceof IDemonWillGem)) {
|
2017-03-05 10:38:23 -08:00
|
|
|
return true;
|
|
|
|
}
|
2016-02-17 16:31:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Utils.insertItemToTile(crucible, player);
|
|
|
|
|
2016-03-18 13:16:38 -04:00
|
|
|
world.notifyBlockUpdate(pos, state, state, 3);
|
2016-02-17 16:31:11 -05:00
|
|
|
return true;
|
2016-02-17 09:21:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2017-08-15 21:30:48 -07:00
|
|
|
public void breakBlock(World world, BlockPos blockPos, IBlockState blockState) {
|
2016-02-17 16:31:11 -05:00
|
|
|
TileDemonCrucible tile = (TileDemonCrucible) world.getTileEntity(blockPos);
|
|
|
|
if (tile != null)
|
|
|
|
tile.dropItems();
|
2016-02-17 09:21:22 -05:00
|
|
|
|
|
|
|
super.breakBlock(world, blockPos, blockState);
|
|
|
|
}
|
2016-03-16 15:37:55 -07:00
|
|
|
|
2017-01-01 21:43:34 -08:00
|
|
|
@Override
|
|
|
|
public boolean hasTileEntity(IBlockState state) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public TileEntity createTileEntity(World world, IBlockState state) {
|
|
|
|
return new TileDemonCrucible();
|
|
|
|
}
|
|
|
|
|
2017-08-15 21:24:59 -07:00
|
|
|
@Override
|
|
|
|
public ItemBlock getItem() {
|
|
|
|
return new ItemBlock(this);
|
|
|
|
}
|
2016-02-17 09:21:22 -05:00
|
|
|
}
|