ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/blocks/BlockPhantomface.java

113 lines
3.8 KiB
Java
Raw Normal View History

2015-04-26 20:07:57 +02:00
package ellpeck.actuallyadditions.blocks;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
2015-05-20 22:39:43 +02:00
import ellpeck.actuallyadditions.tile.TileEntityPhantomface;
2015-04-26 20:07:57 +02:00
import ellpeck.actuallyadditions.util.BlockUtil;
import ellpeck.actuallyadditions.util.INameableItem;
2015-05-20 22:39:43 +02:00
import ellpeck.actuallyadditions.util.ModUtil;
2015-04-26 20:07:57 +02:00
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
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;
2015-05-20 22:39:43 +02:00
import net.minecraft.util.ChatComponentText;
2015-04-26 20:07:57 +02:00
import net.minecraft.util.IIcon;
2015-05-20 22:39:43 +02:00
import net.minecraft.util.StatCollector;
2015-04-26 20:07:57 +02:00
import net.minecraft.world.World;
import java.util.List;
2015-05-20 22:39:43 +02:00
public class BlockPhantomface extends BlockContainerBase implements INameableItem{
2015-04-26 20:07:57 +02:00
2015-05-20 22:39:43 +02:00
public BlockPhantomface(){
super(Material.rock);
this.setHarvestLevel("pickaxe", 0);
2015-04-26 20:07:57 +02:00
this.setHardness(1.0F);
2015-05-20 22:39:43 +02:00
this.setStepSound(soundTypeStone);
2015-04-26 20:07:57 +02:00
}
@Override
2015-05-20 22:39:43 +02:00
public String getOredictName(){
return this.getName();
2015-04-26 20:07:57 +02:00
}
@Override
2015-05-20 22:39:43 +02:00
public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int hitSide, float hitX, float hitY, float hitZ){
if(!world.isRemote){
TileEntityPhantomface tile = (TileEntityPhantomface)world.getTileEntity(x, y, z);
if(tile != null){
if(tile.hasBoundTile()){
if(tile.isBoundTileInRage()){
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocalFormatted("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.connectedBlock.desc", tile.boundTile.xCoord, tile.boundTile.yCoord, tile.boundTile.zCoord)));
return true;
}
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocalFormatted("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.connectedNoRange.desc", tile.boundTile.xCoord, tile.boundTile.yCoord, tile.boundTile.zCoord)));
return true;
}
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.notConnected.desc")));
return true;
}
}
2015-04-26 20:07:57 +02:00
return false;
}
@Override
2015-05-20 22:39:43 +02:00
public TileEntity createNewTileEntity(World world, int par2){
return new TileEntityPhantomface();
2015-04-26 20:07:57 +02:00
}
@Override
2015-05-20 22:39:43 +02:00
public IIcon getIcon(int side, int metadata){
return this.blockIcon;
2015-04-26 20:07:57 +02:00
}
@Override
2015-05-20 22:39:43 +02:00
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister iconReg){
this.blockIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER + ":" + this.getName());
2015-04-26 20:07:57 +02:00
}
@Override
public String getName(){
2015-05-20 22:39:43 +02:00
return "blockPhantomface";
2015-04-26 20:07:57 +02:00
}
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){
2015-05-20 22:39:43 +02:00
return EnumRarity.epic;
2015-04-26 20:07:57 +02:00
}
@Override
public String getUnlocalizedName(ItemStack stack){
return this.getUnlocalizedName();
}
@Override
@SuppressWarnings("unchecked")
@SideOnly(Side.CLIENT)
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld) {
2015-05-20 22:39:43 +02:00
BlockUtil.addInformation(theBlock, list, 2, "");
2015-04-26 20:07:57 +02:00
}
@Override
public int getMetadata(int damage){
return damage;
}
}
}