package com.hbm.util; import net.minecraft.block.Block; import net.minecraft.entity.item.EntityItem; import net.minecraft.inventory.IInventory; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.nbt.NBTTagList; import net.minecraft.nbt.NBTTagString; import net.minecraft.util.EnumChatFormatting; import net.minecraft.world.World; import net.minecraftforge.oredict.OreDictionary; import java.util.ArrayList; import java.util.List; import java.util.Random; import cpw.mods.fml.common.registry.GameRegistry; import cpw.mods.fml.common.registry.GameRegistry.UniqueIdentifier; public class ItemStackUtil { public static ItemStack carefulCopy(ItemStack stack) { if(stack == null) return null; return stack.copy(); } public static ItemStack carefulCopyWithSize(ItemStack stack, int size) { if(stack == null) return null; ItemStack copy = stack.copy(); copy.stackSize = size; return copy; } /** * Runs carefulCopy over the entire ItemStack array. * @param array * @return */ public static ItemStack[] carefulCopyArray(ItemStack[] array) { return carefulCopyArray(array, 0, array.length - 1); } /** * Recreates the ItemStack array and only runs carefulCopy over the supplied range. All other fields remain null. * @param array * @param start * @param end * @return */ public static ItemStack[] carefulCopyArray(ItemStack[] array, int start, int end) { if(array == null) return null; ItemStack[] copy = new ItemStack[array.length]; for(int i = start; i <= end; i++) { copy[i] = carefulCopy(array[i]); } return copy; } /** * Creates a new array that only contains the copied range. * @param array * @param start * @param end * @return */ public static ItemStack[] carefulCopyArrayTruncate(ItemStack[] array, int start, int end) { if(array == null) return null; int length = end - start + 1; ItemStack[] copy = new ItemStack[length]; for(int i = 0; i < length; i++) { copy[i] = carefulCopy(array[start + i]); } return copy; } /** * UNSAFE! Will ignore all existing display tags and override them! In its current state, only fit for items we know don't have any display tags! * Will, however, respect existing NBT tags * @param stack * @param lines */ public static ItemStack addTooltipToStack(ItemStack stack, String... lines) { if(!stack.hasTagCompound()) stack.stackTagCompound = new NBTTagCompound(); NBTTagCompound display = new NBTTagCompound(); NBTTagList lore = new NBTTagList(); for(String line : lines) { lore.appendTag(new NBTTagString(EnumChatFormatting.RESET + "" + EnumChatFormatting.GRAY + line)); } display.setTag("Lore", lore); stack.stackTagCompound.setTag("display", display); return stack; } public static void addStacksToNBT(ItemStack stack, ItemStack... stacks) { if(!stack.hasTagCompound()) stack.stackTagCompound = new NBTTagCompound(); NBTTagList tags = new NBTTagList(); for(int i = 0; i < stacks.length; i++) { if(stacks[i] != null) { NBTTagCompound slotNBT = new NBTTagCompound(); slotNBT.setByte("slot", (byte) i); stacks[i].writeToNBT(slotNBT); tags.appendTag(slotNBT); } } stack.stackTagCompound.setTag("items", tags); } public static ItemStack[] readStacksFromNBT(ItemStack stack, int count) { if(!stack.hasTagCompound()) return null; NBTTagList list = stack.stackTagCompound.getTagList("items", 10); if(count == 0) { count = list.tagCount(); } ItemStack[] stacks = new ItemStack[count]; for(int i = 0; i < count; i++) { NBTTagCompound slotNBT = list.getCompoundTagAt(i); byte slot = slotNBT.getByte("slot"); ItemStack loadedStack = ItemStack.loadItemStackFromNBT(slotNBT); if(slot >= 0 && slot < stacks.length && loadedStack != null) { stacks[slot] = loadedStack; } } return stacks; } public static ItemStack[] readStacksFromNBT(ItemStack stack) { return readStacksFromNBT(stack, 0); } /** * Returns a List of all ore dict names for this stack. Stack cannot be null, list is empty when there are no ore dict entries. * @param stack * @return */ public static List getOreDictNames(ItemStack stack) { List list = new ArrayList(); int ids[] = OreDictionary.getOreIDs(stack); for(int i : ids) { list.add(OreDictionary.getOreName(i)); } return list; } /** * Returns a String of the mod id of an itemstack. If a unique identifier can't be found in the registry, returns null. * @param stack * @return */ public static String getModIdFromItemStack(ItemStack stack) { UniqueIdentifier id = GameRegistry.findUniqueIdentifierFor(stack.getItem()); if(id!=null) { return id.modId; } return null; } public static void spillItems(World world, int x, int y, int z, Block block, Random rand) { IInventory tileentityfurnace = (IInventory) world.getTileEntity(x, y, z); if(tileentityfurnace != null) { for(int slot = 0; slot < tileentityfurnace.getSizeInventory(); ++slot) { ItemStack itemstack = tileentityfurnace.getStackInSlot(slot); if(itemstack != null) { float oX = rand.nextFloat() * 0.8F + 0.1F; float oY = rand.nextFloat() * 0.8F + 0.1F; float oZ = rand.nextFloat() * 0.8F + 0.1F; while(itemstack.stackSize > 0) { int j1 = rand.nextInt(21) + 10; if(j1 > itemstack.stackSize) j1 = itemstack.stackSize; itemstack.stackSize -= j1; EntityItem entityitem = new EntityItem(world, x + oX, y + oY, z + oZ, new ItemStack(itemstack.getItem(), j1, itemstack.getItemDamage())); if(itemstack.hasTagCompound()) entityitem.getEntityItem().setTagCompound((NBTTagCompound) itemstack.getTagCompound().copy()); float motion = 0.05F; entityitem.motionX = (float) rand.nextGaussian() * motion; entityitem.motionY = (float) rand.nextGaussian() * motion + 0.2F; entityitem.motionZ = (float) rand.nextGaussian() * motion; world.spawnEntityInWorld(entityitem); } } } world.func_147453_f(x, y, z, block); } } public static boolean areStacksCompatible(ItemStack sta1, ItemStack sta2) { return sta1.getItem() == sta2.getItem() && sta1.getItemDamage() == sta2.getItemDamage() && ItemStack.areItemStackTagsEqual(sta1, sta2); } }