From b4d0140ff9a7d0e943c288cf56b96b33079bdbef Mon Sep 17 00:00:00 2001 From: Robert S Date: Mon, 14 Apr 2014 06:39:02 -0400 Subject: [PATCH] Added tools tips to helper users understand how to use the crate --- .../archaic/crate/ItemBlockCrate.java | 231 +++++++++--------- 1 file changed, 116 insertions(+), 115 deletions(-) diff --git a/archaic/src/main/scala/resonantinduction/archaic/crate/ItemBlockCrate.java b/archaic/src/main/scala/resonantinduction/archaic/crate/ItemBlockCrate.java index e7f1b93f..9c0cbc77 100644 --- a/archaic/src/main/scala/resonantinduction/archaic/crate/ItemBlockCrate.java +++ b/archaic/src/main/scala/resonantinduction/archaic/crate/ItemBlockCrate.java @@ -2,148 +2,149 @@ package resonantinduction.archaic.crate; import java.util.List; -import calclavia.lib.utility.LanguageUtility; import net.minecraft.entity.Entity; import net.minecraft.entity.player.EntityPlayer; -import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; import net.minecraft.world.World; +import calclavia.lib.prefab.item.ItemBlockTooltip; +import calclavia.lib.utility.LanguageUtility; -public class ItemBlockCrate extends ItemBlock +public class ItemBlockCrate extends ItemBlockTooltip { - public ItemBlockCrate(int par1) - { - super(par1); - this.setHasSubtypes(true); - } + public ItemBlockCrate(int par1) + { + super(par1); + this.setHasSubtypes(true); + } - @Override - public String getUnlocalizedName(ItemStack itemStack) - { - return this.getUnlocalizedName() + "." + itemStack.getItemDamage(); - } + @Override + public String getUnlocalizedName(ItemStack itemStack) + { + return this.getUnlocalizedName() + "." + itemStack.getItemDamage(); + } - @Override - public void addInformation(ItemStack itemStack, EntityPlayer par2EntityPlayer, List par3List, boolean par4) - { - ItemStack containingStack = getContainingItemStack(itemStack); + @Override + public void addInformation(ItemStack itemStack, EntityPlayer par2EntityPlayer, List list, boolean par4) + { + super.addInformation(itemStack, par2EntityPlayer, list, par4); + ItemStack containingStack = getContainingItemStack(itemStack); - if (containingStack != null) - { - par3List.add(containingStack.getDisplayName()); - par3List.add(LanguageUtility.getLocal("crate.tooltip.amount") +" " + containingStack.stackSize); - } - } + if (containingStack != null) + { + list.add(containingStack.getDisplayName()); + list.add(LanguageUtility.getLocal("crate.tooltip.amount") + " " + containingStack.stackSize); + } + } - @Override - public int getItemStackLimit(ItemStack stack) - { - ItemStack containingStack = getContainingItemStack(stack); - if (containingStack != null) - { - return 1; - } - return this.maxStackSize; - } + @Override + public int getItemStackLimit(ItemStack stack) + { + ItemStack containingStack = getContainingItemStack(stack); + if (containingStack != null) + { + return 1; + } + return this.maxStackSize; + } - @Override - public void onUpdate(ItemStack itemStack, World par2World, Entity entity, int par4, boolean par5) - { - if (entity instanceof EntityPlayer) - { - EntityPlayer player = (EntityPlayer) entity; - ItemStack containingStack = getContainingItemStack(itemStack); + @Override + public void onUpdate(ItemStack itemStack, World par2World, Entity entity, int par4, boolean par5) + { + if (entity instanceof EntityPlayer) + { + EntityPlayer player = (EntityPlayer) entity; + ItemStack containingStack = getContainingItemStack(itemStack); - if (containingStack != null && !player.capabilities.isCreativeMode) - { - player.addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 5, (int) ((float) containingStack.stackSize / (float) TileCrate.getSlotCount(itemStack.getItemDamage())) * 5)); - } - } - } + if (containingStack != null && !player.capabilities.isCreativeMode) + { + player.addPotionEffect(new PotionEffect(Potion.moveSlowdown.id, 5, (int) ((float) containingStack.stackSize / (float) TileCrate.getSlotCount(itemStack.getItemDamage())) * 5)); + } + } + } - public static void setContainingItemStack(ItemStack itemStack, ItemStack containingStack) - { - if (itemStack.stackTagCompound == null) - { - itemStack.setTagCompound(new NBTTagCompound()); - } + public static void setContainingItemStack(ItemStack itemStack, ItemStack containingStack) + { + if (itemStack.stackTagCompound == null) + { + itemStack.setTagCompound(new NBTTagCompound()); + } - if (containingStack != null) - { - NBTTagCompound itemTagCompound = new NBTTagCompound(); - containingStack.stackSize = Math.abs(containingStack.stackSize); - containingStack.writeToNBT(itemTagCompound); - itemStack.getTagCompound().setTag("Item", itemTagCompound); + if (containingStack != null) + { + NBTTagCompound itemTagCompound = new NBTTagCompound(); + containingStack.stackSize = Math.abs(containingStack.stackSize); + containingStack.writeToNBT(itemTagCompound); + itemStack.getTagCompound().setTag("Item", itemTagCompound); - itemStack.getTagCompound().setInteger("Count", containingStack.stackSize); - } - else - { - itemStack.getTagCompound().setTag("Item", new NBTTagCompound()); - itemStack.getTagCompound().setInteger("Count", 0); - } - } + itemStack.getTagCompound().setInteger("Count", containingStack.stackSize); + } + else + { + itemStack.getTagCompound().setTag("Item", new NBTTagCompound()); + itemStack.getTagCompound().setInteger("Count", 0); + } + } - public static ItemStack getContainingItemStack(ItemStack itemStack) - { - if (itemStack.stackTagCompound == null) - { - itemStack.setTagCompound(new NBTTagCompound()); - return null; - } + public static ItemStack getContainingItemStack(ItemStack itemStack) + { + if (itemStack.stackTagCompound == null) + { + itemStack.setTagCompound(new NBTTagCompound()); + return null; + } - NBTTagCompound itemTagCompound = itemStack.getTagCompound().getCompoundTag("Item"); - ItemStack containingStack = ItemStack.loadItemStackFromNBT(itemTagCompound); + NBTTagCompound itemTagCompound = itemStack.getTagCompound().getCompoundTag("Item"); + ItemStack containingStack = ItemStack.loadItemStackFromNBT(itemTagCompound); - if (containingStack != null) - { - containingStack.stackSize = itemStack.getTagCompound().getInteger("Count"); - } + if (containingStack != null) + { + containingStack.stackSize = itemStack.getTagCompound().getInteger("Count"); + } - return containingStack; - } + return containingStack; + } - @Override - public int getMetadata(int metadata) - { - return metadata; - } + @Override + public int getMetadata(int metadata) + { + return metadata; + } - @Override - public boolean placeBlockAt(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ, int metadata) - { - if (super.placeBlockAt(stack, player, world, x, y, z, side, hitX, hitY, hitZ, metadata)) - { - ItemStack containingItem = getContainingItemStack(stack); + @Override + public boolean placeBlockAt(ItemStack stack, EntityPlayer player, World world, int x, int y, int z, int side, float hitX, float hitY, float hitZ, int metadata) + { + if (super.placeBlockAt(stack, player, world, x, y, z, side, hitX, hitY, hitZ, metadata)) + { + ItemStack containingItem = getContainingItemStack(stack); - if (world.getBlockTileEntity(x, y, z) != null && containingItem != null) - { - if (containingItem.stackSize > 0) - { - TileCrate tileEntity = (TileCrate) world.getBlockTileEntity(x, y, z); - int count = containingItem.stackSize; + if (world.getBlockTileEntity(x, y, z) != null && containingItem != null) + { + if (containingItem.stackSize > 0) + { + TileCrate tileEntity = (TileCrate) world.getBlockTileEntity(x, y, z); + int count = containingItem.stackSize; - for (int slot = 0; slot < tileEntity.getInventory().getSizeInventory(); slot++) - { - int stackSize = Math.min(64, count); - tileEntity.getInventory().setInventorySlotContents(slot, new ItemStack(containingItem.itemID, stackSize, containingItem.getItemDamage())); - count -= stackSize; + for (int slot = 0; slot < tileEntity.getInventory().getSizeInventory(); slot++) + { + int stackSize = Math.min(64, count); + tileEntity.getInventory().setInventorySlotContents(slot, new ItemStack(containingItem.itemID, stackSize, containingItem.getItemDamage())); + count -= stackSize; - if (count <= 0) - { - containingItem = null; - break; - } + if (count <= 0) + { + containingItem = null; + break; + } - } - tileEntity.buildSampleStack(); - } - } - } + } + tileEntity.buildSampleStack(); + } + } + } - return true; - } + return true; + } }