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

150 lines
6 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-25 17:00:54 +02:00
import ellpeck.actuallyadditions.ActuallyAdditions;
import ellpeck.actuallyadditions.inventory.GuiHandler;
import ellpeck.actuallyadditions.tile.TileEntityPhantomPlacer;
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-25 17:00:54 +02:00
public static final int FACE = 0;
public static final int PLACER = 1;
public static final int BREAKER = 2;
public int type;
public BlockPhantomface(int type){
2015-05-20 22:39:43 +02:00
super(Material.rock);
2015-05-25 17:00:54 +02:00
this.type = type;
2015-05-20 22:39:43 +02:00
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
}
2015-05-25 17:00:54 +02:00
@Override
public void breakBlock(World world, int x, int y, int z, Block block, int par6){
if(this.type == PLACER || this.type == BREAKER) this.dropInventory(world, x, y, z);
super.breakBlock(world, x, y, z, block, par6);
}
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){
2015-05-25 17:00:54 +02:00
TileEntity tile = world.getTileEntity(x, y, z);
2015-05-20 22:39:43 +02:00
if(tile != null){
2015-05-25 17:00:54 +02:00
if(tile instanceof TileEntityPhantomface){
TileEntityPhantomface phantom = (TileEntityPhantomface)tile;
if(phantom.hasBoundTile()){
if(phantom.isBoundTileInRage()){
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocalFormatted("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.connectedBlock.desc", phantom.boundTile.xCoord, phantom.boundTile.yCoord, phantom.boundTile.zCoord)));
}
else player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocalFormatted("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.connectedNoRange.desc", phantom.boundTile.xCoord, phantom.boundTile.yCoord, phantom.boundTile.zCoord)));
2015-05-20 22:39:43 +02:00
}
2015-05-25 17:00:54 +02:00
else player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.notConnected.desc")));
}
else if(tile instanceof TileEntityPhantomPlacer){
if(player.isSneaking()){
TileEntityPhantomPlacer phantom = (TileEntityPhantomPlacer)tile;
if(phantom.hasBoundPosition()){
if(phantom.isBoundPositionInRange()){
player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocalFormatted("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.connectedBlock.desc", phantom.boundPosition.posX, phantom.boundPosition.posY, phantom.boundPosition.posZ)));
}
else player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocalFormatted("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.connectedNoRange.desc", phantom.boundPosition.posX, phantom.boundPosition.posY, phantom.boundPosition.posZ)));
}
else player.addChatComponentMessage(new ChatComponentText(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+".phantom.notConnected.desc")));
}
else player.openGui(ActuallyAdditions.instance, GuiHandler.PHANTOM_PLACER_ID, world, x, y, z);
2015-05-20 22:39:43 +02:00
}
}
}
2015-05-25 17:00:54 +02:00
return true;
2015-04-26 20:07:57 +02:00
}
@Override
2015-05-20 22:39:43 +02:00
public TileEntity createNewTileEntity(World world, int par2){
2015-05-25 17:00:54 +02:00
switch(this.type){
case PLACER:
return new TileEntityPhantomPlacer();
case BREAKER:
return new TileEntityPhantomPlacer.TileEntityPhantomBreaker();
default:
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-25 17:00:54 +02:00
return this.type == PLACER ? "blockPhantomPlacer" : (this.type == BREAKER ? "blockPhantomBreaker" : "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;
}
}
}