2015-07-13 23:44:33 +02:00
|
|
|
package ellpeck.actuallyadditions.blocks;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
import ellpeck.actuallyadditions.ActuallyAdditions;
|
|
|
|
import ellpeck.actuallyadditions.inventory.GuiHandler;
|
2015-07-15 00:17:21 +02:00
|
|
|
import ellpeck.actuallyadditions.items.InitItems;
|
|
|
|
import ellpeck.actuallyadditions.items.metalists.TheSpecialDrops;
|
2015-07-13 23:44:33 +02:00
|
|
|
import ellpeck.actuallyadditions.tile.TileEntityXPSolidifier;
|
|
|
|
import ellpeck.actuallyadditions.util.BlockUtil;
|
|
|
|
import ellpeck.actuallyadditions.util.INameableItem;
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
2015-07-15 00:17:21 +02:00
|
|
|
import net.minecraft.entity.item.EntityItem;
|
2015-07-13 23:44:33 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemBlock;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
import net.minecraft.util.MathHelper;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class BlockXPSolidifier extends BlockContainerBase implements INameableItem{
|
|
|
|
|
|
|
|
private IIcon topIcon;
|
|
|
|
private IIcon frontIcon;
|
|
|
|
|
|
|
|
public BlockXPSolidifier(){
|
|
|
|
super(Material.rock);
|
|
|
|
this.setHarvestLevel("pickaxe", 0);
|
2015-07-15 17:13:23 +02:00
|
|
|
this.setHardness(2.5F);
|
2015-07-13 23:44:33 +02:00
|
|
|
this.setResistance(10.0F);
|
|
|
|
this.setStepSound(soundTypeStone);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBlockPlacedBy(World world, int x, int y, int z, EntityLivingBase player, ItemStack stack){
|
2015-07-16 02:09:00 +02:00
|
|
|
int rotation = MathHelper.floor_double((double)(player.rotationYaw*4.0F/360.0F)+0.5D) & 3;
|
2015-07-13 23:44:33 +02:00
|
|
|
|
2015-07-16 02:09:00 +02:00
|
|
|
if(rotation == 0) world.setBlockMetadataWithNotify(x, y, z, 0, 2);
|
|
|
|
if(rotation == 1) world.setBlockMetadataWithNotify(x, y, z, 3, 2);
|
|
|
|
if(rotation == 2) world.setBlockMetadataWithNotify(x, y, z, 1, 2);
|
|
|
|
if(rotation == 3) world.setBlockMetadataWithNotify(x, y, z, 2, 2);
|
2015-07-13 23:44:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TileEntity createNewTileEntity(World world, int par2){
|
|
|
|
return new TileEntityXPSolidifier();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IIcon getIcon(int side, int meta){
|
2015-07-16 02:09:00 +02:00
|
|
|
if(side == 1 || side == 0) return this.topIcon;
|
2015-07-13 23:44:33 +02:00
|
|
|
if(side == 3) return this.frontIcon;
|
|
|
|
return this.blockIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IIcon getIcon(IBlockAccess world, int x, int y, int z, int side){
|
|
|
|
int meta = world.getBlockMetadata(x, y, z);
|
2015-07-16 02:09:00 +02:00
|
|
|
if(side == 1 || side == 0) return this.topIcon;
|
2015-07-15 17:13:23 +02:00
|
|
|
if(side == meta+2) return this.frontIcon;
|
2015-07-13 23:44:33 +02:00
|
|
|
return this.blockIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerBlockIcons(IIconRegister iconReg){
|
2015-07-16 02:09:00 +02:00
|
|
|
this.blockIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
|
|
|
this.topIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+"Top");
|
|
|
|
this.frontIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+"Front");
|
2015-07-13 23:44:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int par6, float par7, float par8, float par9){
|
|
|
|
if(!world.isRemote){
|
|
|
|
TileEntityXPSolidifier solidifier = (TileEntityXPSolidifier)world.getTileEntity(x, y, z);
|
2015-07-16 02:09:00 +02:00
|
|
|
if(solidifier != null)
|
2015-07-17 09:03:31 +02:00
|
|
|
player.openGui(ActuallyAdditions.instance, GuiHandler.GuiTypes.XP_SOLIDIFIER.ordinal(), world, x, y, z);
|
2015-07-13 23:44:33 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void breakBlock(World world, int x, int y, int z, Block block, int par6){
|
|
|
|
this.dropInventory(world, x, y, z);
|
2015-07-15 00:17:21 +02:00
|
|
|
TileEntity tile = world.getTileEntity(x, y, z);
|
|
|
|
if(tile instanceof TileEntityXPSolidifier){
|
|
|
|
TileEntityXPSolidifier solidifier = (TileEntityXPSolidifier)tile;
|
2015-07-16 02:09:00 +02:00
|
|
|
if(solidifier.amount > 0){
|
|
|
|
int stacks = solidifier.amount/64;
|
|
|
|
int rest = solidifier.amount%64;
|
|
|
|
for(int i = 0; i < stacks; i++){
|
|
|
|
this.spawnItem(world, x, y, z, new ItemStack(InitItems.itemSpecialDrop, 64, TheSpecialDrops.SOLIDIFIED_EXPERIENCE.ordinal()));
|
|
|
|
}
|
|
|
|
this.spawnItem(world, x, y, z, new ItemStack(InitItems.itemSpecialDrop, rest, TheSpecialDrops.SOLIDIFIED_EXPERIENCE.ordinal()));
|
|
|
|
solidifier.amount = 0;
|
2015-07-15 00:17:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-13 23:44:33 +02:00
|
|
|
super.breakBlock(world, x, y, z, block, par6);
|
|
|
|
}
|
|
|
|
|
2015-07-15 00:17:21 +02:00
|
|
|
private void spawnItem(World world, int x, int y, int z, ItemStack stack){
|
|
|
|
float dX = world.rand.nextFloat()*0.8F+0.1F;
|
|
|
|
float dY = world.rand.nextFloat()*0.8F+0.1F;
|
|
|
|
float dZ = world.rand.nextFloat()*0.8F+0.1F;
|
|
|
|
EntityItem entityItem = new EntityItem(world, x+dX, y+dY, z+dZ, stack);
|
|
|
|
float factor = 0.05F;
|
|
|
|
entityItem.motionX = world.rand.nextGaussian()*factor;
|
|
|
|
entityItem.motionY = world.rand.nextGaussian()*factor+0.2F;
|
|
|
|
entityItem.motionZ = world.rand.nextGaussian()*factor;
|
|
|
|
world.spawnEntityInWorld(entityItem);
|
|
|
|
}
|
2015-07-16 02:09:00 +02:00
|
|
|
|
2015-07-13 23:44:33 +02:00
|
|
|
@Override
|
|
|
|
public String getName(){
|
|
|
|
return "blockXPSolidifier";
|
|
|
|
}
|
|
|
|
|
|
|
|
public static class TheItemBlock extends ItemBlock{
|
|
|
|
|
|
|
|
private Block theBlock;
|
|
|
|
|
|
|
|
public TheItemBlock(Block block){
|
|
|
|
super(block);
|
|
|
|
this.theBlock = block;
|
|
|
|
this.setHasSubtypes(false);
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.epic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
|
|
|
return this.getUnlocalizedName();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@SideOnly(Side.CLIENT)
|
2015-07-16 02:09:00 +02:00
|
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
|
2015-07-15 00:17:21 +02:00
|
|
|
BlockUtil.addInformation(theBlock, list, 2, "");
|
2015-07-13 23:44:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|