All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minecraft.server.ItemStack Maven / Gradle / Ivy

package net.minecraft.server;

import com.google.common.collect.HashMultimap;
import com.google.common.collect.Multimap;
import org.bukkit.Location;
import org.bukkit.TreeType;
import org.bukkit.block.BlockState;
import org.bukkit.craftbukkit.block.CraftBlockState;
import org.bukkit.craftbukkit.util.CraftMagicNumbers;
import org.bukkit.entity.Player;
import org.bukkit.event.world.StructureGrowEvent;

import java.text.DecimalFormat;
import java.util.List;
import java.util.Map;
import java.util.Random;
// CraftBukkit end

public final class ItemStack {

   public static final DecimalFormat a = new DecimalFormat("#.###");
   public int count;
   public int c;
   private Item item;
   private NBTTagCompound tag;
   private int damage;
   private EntityItemFrame g;
   private Block h;
   private boolean i;
   private Block j;
   private boolean k;

   public ItemStack(Block block) {
      this(block, 1);
   }

   public ItemStack(Block block, int i) {
      this(block, i, 0);
   }

   public ItemStack(Block block, int i, int j) {
      this(Item.getItemOf(block), i, j);
   }

   public ItemStack(Item item) {
      this(item, 1);
   }

   public ItemStack(Item item, int i) {
      this(item, i, 0);
   }

   public ItemStack(Item item, int i, int j) {
      this.h = null;
      this.i = false;
      this.j = null;
      this.k = false;
      this.item = item;
      this.count = i;

      // CraftBukkit start - Pass to setData to do filtering
      this.setData(j);
      //this.damage = j;
      //if (this.damage < 0) {
      //    this.damage = 0;
      //}
      // CraftBukkit end

   }

   private ItemStack() {
      this.h = null;
      this.i = false;
      this.j = null;
      this.k = false;
   }

   public static ItemStack createStack(NBTTagCompound nbttagcompound) {
      ItemStack itemstack = new ItemStack();

      itemstack.c(nbttagcompound);
      return itemstack.getItem() != null ? itemstack : null;
   }

   public static boolean equals(ItemStack itemstack, ItemStack itemstack1) {
      return itemstack == null && itemstack1 == null || (itemstack != null && itemstack1 != null && ((itemstack.tag != null || itemstack1.tag == null) && (itemstack.tag == null || itemstack.tag.equals(itemstack1.tag))));
   }

   // Spigot Start
   public static boolean fastMatches(ItemStack itemstack, ItemStack itemstack1) {
      if (itemstack == null && itemstack1 == null) {
         return true;
      }
      if (itemstack != null && itemstack1 != null) {
         return itemstack.count == itemstack1.count && itemstack.item == itemstack1.item && itemstack.damage == itemstack1.damage;
      }
      return false;
   }

   public static boolean matches(ItemStack itemstack, ItemStack itemstack1) {
      return itemstack == null && itemstack1 == null || (itemstack != null && itemstack1 != null && itemstack.d(itemstack1));
   }

   public static boolean c(ItemStack itemstack, ItemStack itemstack1) {
      return itemstack == null && itemstack1 == null || (itemstack != null && itemstack1 != null && itemstack.doMaterialsMatch(itemstack1));
   }

   public static ItemStack b(ItemStack itemstack) {
      return itemstack == null ? null : itemstack.cloneItemStack();
   }

   public ItemStack cloneAndSubtract(int i) {
      ItemStack itemstack = new ItemStack(this.item, i, this.damage);

      if (this.tag != null) {
         itemstack.tag = (NBTTagCompound) this.tag.clone();
      }

      this.count -= i;
      return itemstack;
   }

   public Item getItem() {
      return this.item;
   }

   public void setItem(Item item) {
      this.item = item;
      this.setData(this.getData()); // CraftBukkit - Set data again to ensure it is filtered properly
   }

   public boolean placeItem(EntityHuman entityhuman, World world, BlockPosition pos, EnumDirection enumdirection, float f, float f1, float f2) {
      // CraftBukkit start - handle all block place event logic here
      int data = this.getData();
      int count = this.count;

      if (!(this.getItem() instanceof ItemBucket)) { // if not bucket
         world.captureBlockStates = true;
         // special case bonemeal
         if (this.getItem() instanceof ItemDye && this.getData() == 15) {
            Block block = world.getType(pos).getBlock();
            if (block == Blocks.SAPLING || block instanceof BlockMushroom) {
               world.captureTreeGeneration = true;
            }
         }
      }
      boolean flag = this.getItem().interactWith(this, entityhuman, world, pos, enumdirection, f, f1, f2);
      int newData = this.getData();
      int newCount = this.count;
      this.count = count;
      this.setData(data);
      world.captureBlockStates = false;
      if (flag && world.captureTreeGeneration && world.capturedBlockStates.size() > 0) {
         world.captureTreeGeneration = false;
         Location location = new Location(world.getWorld(), pos.getX(), pos.getY(), pos.getZ());
         TreeType treeType = BlockSapling.treeType;
         BlockSapling.treeType = null;
         List blocks = (List) world.capturedBlockStates.clone();
         world.capturedBlockStates.clear();
         StructureGrowEvent event = null;
         if (treeType != null) {
            boolean isBonemeal = getItem() == Items.DYE && data == 15;
            event = new StructureGrowEvent(location, treeType, isBonemeal, (Player) entityhuman.getBukkitEntity(), blocks);
            org.bukkit.Bukkit.getPluginManager().callEvent(event);
         }
         if (event == null || !event.isCancelled()) {
            // Change the stack to its new contents if it hasn't been tampered with.
            if (this.count == count && this.getData() == data) {
               this.setData(newData);
               this.count = newCount;
            }
            for (BlockState blockstate : blocks) {
               blockstate.update(true);
            }
         }

         return flag;
      }
      world.captureTreeGeneration = false;

      if (flag) {
         org.bukkit.event.block.BlockPlaceEvent placeEvent = null;
         List blocks = (List) world.capturedBlockStates.clone();
         world.capturedBlockStates.clear();
         if (blocks.size() > 1) {
            placeEvent = org.bukkit.craftbukkit.event.CraftEventFactory.callBlockMultiPlaceEvent(world, entityhuman, blocks, pos.getX(), pos.getY(), pos.getZ());
         } else if (blocks.size() == 1) {
            placeEvent = org.bukkit.craftbukkit.event.CraftEventFactory.callBlockPlaceEvent(world, entityhuman, blocks.get(0), pos.getX(), pos.getY(), pos.getZ());
         }
   
         if (placeEvent != null && (placeEvent.isCancelled() || !placeEvent.canBuild())) {
            flag = false; // cancel placement
            // revert back all captured blocks

            for (BlockState blockstate : blocks) {
               blockstate.update(true, false);
            }
         } else {
            // Change the stack to its new contents if it hasn't been tampered with.
            if (this.count == count && this.getData() == data) {
               this.setData(newData);
               this.count = newCount;
            }
            for (BlockState blockstate : blocks) {
               int x = blockstate.getX();
               int y = blockstate.getY();
               int z = blockstate.getZ();
               int updateFlag = ((CraftBlockState) blockstate).getFlag();
               org.bukkit.Material mat = blockstate.getType();
               Block oldBlock = CraftMagicNumbers.getBlock(mat);
               BlockPosition newblockposition = new BlockPosition(x, y, z);
               IBlockData block = world.getType(newblockposition);

               if (!(block instanceof BlockContainer)) { // Containers get placed automatically
                  block.getBlock().onPlace(world, newblockposition, block);
               }

               world.notifyAndUpdatePhysics(newblockposition, null, oldBlock, block.getBlock(), updateFlag); // send null chunk as chunk.k() returns false by this point
            }

            for (Map.Entry e : world.capturedTileEntities.entrySet()) {
               world.setTileEntity(e.getKey(), e.getValue());
            }

            // Special case juke boxes as they update their tile entity. Copied from ItemRecord.
            if (this.getItem() instanceof ItemRecord) {
               ((BlockJukeBox) Blocks.JUKEBOX).a(world, pos, world.getType(pos), this);
               world.a(null, 1005, pos, Item.getId(this.getItem()));
               --this.count;
               entityhuman.b(StatisticList.X);
            }

            if (this.getItem() == Items.SKULL) { // Special case skulls to allow wither spawns to be cancelled
               BlockPosition bp = pos;
               if (!world.getType(pos).getBlock().a(world, pos)) {
                  if (!world.getType(pos).getBlock().getMaterial().isBuildable()) {
                     bp = null;
                  } else {
                     bp = bp.shift(enumdirection);
                  }
               }
               if (bp != null) {
                  TileEntity te = world.getTileEntity(bp);
                  if (te instanceof TileEntitySkull) {
                     Blocks.SKULL.a(world, bp, (TileEntitySkull) te);
                  }
               }
            }

            entityhuman.b(StatisticList.USE_ITEM_COUNT[Item.getId(this.item)]);
         }
      }
      world.capturedTileEntities.clear();
      world.capturedBlockStates.clear();
      // CraftBukkit end

      return flag;
   }

   public float a(Block block) {
      return this.getItem().getDestroySpeed(this, block);
   }

   public ItemStack a(World world, EntityHuman entityhuman) {
      return this.getItem().a(this, world, entityhuman);
   }

   public ItemStack b(World world, EntityHuman entityhuman) {
      return this.getItem().b(this, world, entityhuman);
   }

   public NBTTagCompound save(NBTTagCompound nbttagcompound) {
      MinecraftKey minecraftkey = Item.REGISTRY.c(this.item);

      nbttagcompound.setString("id", minecraftkey == null ? "minecraft:air" : minecraftkey.toString());
      nbttagcompound.setByte("Count", (byte) this.count);
      nbttagcompound.setShort("Damage", (short) this.damage);
      if (this.tag != null) {
         nbttagcompound.set("tag", this.tag.clone()); // CraftBukkit - make defensive copy, data is going to another thread
      }

      return nbttagcompound;
   }

   public void c(NBTTagCompound nbttagcompound) {
      if (nbttagcompound.hasKeyOfType("id", 8)) {
         this.item = Item.d(nbttagcompound.getString("id"));
      } else {
         this.item = Item.getById(nbttagcompound.getShort("id"));
      }

      this.count = nbttagcompound.getByte("Count");
        /* CraftBukkit start - Route through setData for filtering
        this.damage = nbttagcompound.getShort("Damage");
        if (this.damage < 0) {
            this.damage = 0;
        }
        */
      this.setData(nbttagcompound.getShort("Damage"));
      // CraftBukkit end

      if (nbttagcompound.hasKeyOfType("tag", 10)) {
         // CraftBukkit - make defensive copy as this data may be coming from the save thread
         this.tag = (NBTTagCompound) nbttagcompound.getCompound("tag").clone();
         if (this.item != null) {
            this.item.a(this.tag);
         }
      }

   }

   public int getMaxStackSize() {
      return this.getItem().getMaxStackSize();
   }

   public boolean isStackable() {
      return this.getMaxStackSize() > 1 && (!this.e() || !this.g());
   }

   public boolean e() {
      // Spigot Start
      if (this.item.getMaxDurability() <= 0) {
         return false;
      }
      return (!hasTag()) || (!getTag().getBoolean("Unbreakable"));
      // Spigot End
   }

   public boolean usesData() {
      return this.item.k();
   }

   public boolean g() {
      return this.e() && this.damage > 0;
   }

   public int h() {
      return this.damage;
   }

   public int getData() {
      return this.damage;
   }

   public void setData(int i) {
      // CraftBukkit start - Filter out data for items that shouldn't have it
      // The crafting system uses this value for a special purpose so we have to allow it
      if (i == 32767) {
         this.damage = i;
         return;
      }

      // Is this a block?
      if (CraftMagicNumbers.getBlock(CraftMagicNumbers.getId(this.getItem())) != Blocks.AIR) {
         // If vanilla doesn't use data on it don't allow any
         if (!(this.usesData() || this.getItem().usesDurability())) {
            i = 0;
         }
      }

      // Filter invalid plant data
      if (CraftMagicNumbers.getBlock(CraftMagicNumbers.getId(this.getItem())) == Blocks.DOUBLE_PLANT && (i > 5 || i < 0)) {
         i = 0;
      }
      // CraftBukkit end
      this.damage = i;
      if (this.damage < -1) { // CraftBukkit
         this.damage = 0;
      }

   }

   public int j() {
      return this.item.getMaxDurability();
   }

   public boolean isDamaged(int i, Random random) {
      return isDamaged(i, random, null);
   }

   public boolean isDamaged(int i, Random random, EntityLiving entityliving) {
      // Spigot end
      if (!this.e()) {
         return false;
      } else {
         if (i > 0) {
            int j = EnchantmentManager.getEnchantmentLevel(Enchantment.DURABILITY.id, this);
            int k = 0;

            for (int l = 0; j > 0 && l < i; ++l) {
               if (EnchantmentDurability.a(this, j, random)) {
                  ++k;
               }
            }

            i -= k;
            // Spigot start
            if (entityliving instanceof EntityPlayer) {
               org.bukkit.craftbukkit.inventory.CraftItemStack item = org.bukkit.craftbukkit.inventory.CraftItemStack.asCraftMirror(this);
               org.bukkit.event.player.PlayerItemDamageEvent event = new org.bukkit.event.player.PlayerItemDamageEvent((org.bukkit.entity.Player) entityliving.getBukkitEntity(), item, i);
               org.bukkit.Bukkit.getServer().getPluginManager().callEvent(event);
               if (event.isCancelled()) return false;
               i = event.getDamage();
            }
            // Spigot end
            if (i <= 0) {
               return false;
            }
         }

         this.damage += i;
         return this.damage > this.j();
      }
   }

   public void damage(int i, EntityLiving entityliving) {
      if (!(entityliving instanceof EntityHuman) || !((EntityHuman) entityliving).abilities.canInstantlyBuild) {
         if (this.e()) {
            if (this.isDamaged(i, entityliving.bc(), entityliving)) { // Spigot
               entityliving.b(this);
               --this.count;
               if (entityliving instanceof EntityHuman) {
                  EntityHuman entityhuman = (EntityHuman) entityliving;

                  entityhuman.b(StatisticList.BREAK_ITEM_COUNT[Item.getId(this.item)]);
                  if (this.count == 0 && this.getItem() instanceof ItemBow) {
                     entityhuman.ca();
                  }
               }

               if (this.count < 0) {
                  this.count = 0;
               }

               // CraftBukkit start - Check for item breaking
               if (this.count == 0 && entityliving instanceof EntityHuman) {
                  org.bukkit.craftbukkit.event.CraftEventFactory.callPlayerItemBreakEvent((EntityHuman) entityliving, this);
               }
               // CraftBukkit end

               this.damage = 0;
            }

         }
      }
   }

   public void a(EntityLiving entityliving, EntityHuman entityhuman) {
      boolean flag = this.item.a(this, entityliving, entityhuman);

      if (flag) {
         entityhuman.b(StatisticList.USE_ITEM_COUNT[Item.getId(this.item)]);
      }

   }
   // Spigot End

   public void a(World world, Block block, BlockPosition blockposition, EntityHuman entityhuman) {
      boolean flag = this.item.a(this, world, block, blockposition, entityhuman);

      if (flag) {
         entityhuman.b(StatisticList.USE_ITEM_COUNT[Item.getId(this.item)]);
      }

   }

   public boolean b(Block block) {
      return this.item.canDestroySpecialBlock(block);
   }

   public boolean a(EntityHuman entityhuman, EntityLiving entityliving) {
      return this.item.a(this, entityhuman, entityliving);
   }

   public ItemStack cloneItemStack() {
      ItemStack itemstack = new ItemStack(this.item, this.count, this.damage);

      if (this.tag != null) {
         itemstack.tag = (NBTTagCompound) this.tag.clone();
      }

      return itemstack;
   }

   private boolean d(ItemStack itemstack) {
      return this.count == itemstack.count && (this.item == itemstack.item && (this.damage == itemstack.damage && ((this.tag != null || itemstack.tag == null) && (this.tag == null || this.tag.equals(itemstack.tag)))));
   }

   public boolean doMaterialsMatch(ItemStack itemstack) {
      return itemstack != null && this.item == itemstack.item && this.damage == itemstack.damage;
   }

   public String a() {
      return this.item.e_(this);
   }

   public String toString() {
      return this.count + "x" + this.item.getName() + "@" + this.damage;
   }

   public void a(World world, Entity entity, int i, boolean flag) {
      if (this.c > 0) {
         --this.c;
      }

      this.item.a(this, world, entity, i, flag);
   }

   public void a(World world, EntityHuman entityhuman, int i) {
      entityhuman.a(StatisticList.CRAFT_BLOCK_COUNT[Item.getId(this.item)], i);
      this.item.d(this, world, entityhuman);
   }

   public int l() {
      return this.getItem().d(this);
   }

   public EnumAnimation m() {
      return this.getItem().e(this);
   }

   public void b(World world, EntityHuman entityhuman, int i) {
      this.getItem().a(this, world, entityhuman, i);
   }

   public boolean hasTag() {
      return this.tag != null;
   }

   public NBTTagCompound getTag() {
      return this.tag;
   }

   public void setTag(NBTTagCompound nbttagcompound) {
      this.tag = nbttagcompound;
   }

   public NBTTagCompound a(String s, boolean flag) {
      if (this.tag != null && this.tag.hasKeyOfType(s, 10)) {
         return this.tag.getCompound(s);
      } else if (flag) {
         NBTTagCompound nbttagcompound = new NBTTagCompound();

         this.a(s, nbttagcompound);
         return nbttagcompound;
      } else {
         return null;
      }
   }

   public NBTTagList getEnchantments() {
      return this.tag == null ? null : this.tag.getList("ench", 10);
   }

   public String getName() {
      String s = this.getItem().a(this);

      if (this.tag != null && this.tag.hasKeyOfType("display", 10)) {
         NBTTagCompound nbttagcompound = this.tag.getCompound("display");

         if (nbttagcompound.hasKeyOfType("Name", 8)) {
            s = nbttagcompound.getString("Name");
         }
      }

      return s;
   }

   public ItemStack c(String s) {
      if (this.tag == null) {
         this.tag = new NBTTagCompound();
      }

      if (!this.tag.hasKeyOfType("display", 10)) {
         this.tag.set("display", new NBTTagCompound());
      }

      this.tag.getCompound("display").setString("Name", s);
      return this;
   }

   public void r() {
      if (this.tag != null) {
         if (this.tag.hasKeyOfType("display", 10)) {
            NBTTagCompound nbttagcompound = this.tag.getCompound("display");

            nbttagcompound.remove("Name");
            if (nbttagcompound.isEmpty()) {
               this.tag.remove("display");
               if (this.tag.isEmpty()) {
                  this.setTag(null);
               }
            }

         }
      }
   }

   public boolean hasName() {
      return this.tag != null && (this.tag.hasKeyOfType("display", 10) && this.tag.getCompound("display").hasKeyOfType("Name", 8));
   }

   public EnumItemRarity u() {
      return this.getItem().g(this);
   }

   public boolean v() {
      return this.getItem().f_(this) && !this.hasEnchantments();
   }

   public void addEnchantment(Enchantment enchantment, int i) {
      if (this.tag == null) {
         this.setTag(new NBTTagCompound());
      }

      if (!this.tag.hasKeyOfType("ench", 9)) {
         this.tag.set("ench", new NBTTagList());
      }

      NBTTagList nbttaglist = this.tag.getList("ench", 10);
      NBTTagCompound nbttagcompound = new NBTTagCompound();

      nbttagcompound.setShort("id", (short) enchantment.id);

      // nbttagcompound.setShort("lvl", (byte) i);
      nbttagcompound.setInt("lvl", i);

      nbttaglist.add(nbttagcompound);
   }

   public boolean hasEnchantments() {
      return this.tag != null && this.tag.hasKeyOfType("ench", 9);
   }

   public void a(String s, NBTBase nbtbase) {
      if (this.tag == null) {
         this.setTag(new NBTTagCompound());
      }

      this.tag.set(s, nbtbase);
   }

   public boolean x() {
      return this.getItem().s();
   }

   public boolean y() {
      return this.g != null;
   }

   public void a(EntityItemFrame entityitemframe) {
      this.g = entityitemframe;
   }

   public EntityItemFrame z() {
      return this.g;
   }

   public int getRepairCost() {
      return this.hasTag() && this.tag.hasKeyOfType("RepairCost", 3) ? this.tag.getInt("RepairCost") : 0;
   }

   public void setRepairCost(int i) {
      if (!this.hasTag()) {
         this.tag = new NBTTagCompound();
      }

      this.tag.setInt("RepairCost", i);
   }

   public Multimap B() {
      Object object;

      if (this.hasTag() && this.tag.hasKeyOfType("AttributeModifiers", 9)) {
         object = HashMultimap.create();
         NBTTagList nbttaglist = this.tag.getList("AttributeModifiers", 10);

         for (int i = 0; i < nbttaglist.size(); ++i) {
            NBTTagCompound nbttagcompound = nbttaglist.get(i);
            AttributeModifier attributemodifier = GenericAttributes.a(nbttagcompound);

            if (attributemodifier != null && attributemodifier.a().getLeastSignificantBits() != 0L && attributemodifier.a().getMostSignificantBits() != 0L) {
               ((Multimap) object).put(nbttagcompound.getString("AttributeName"), attributemodifier);
            }
         }
      } else {
         object = this.getItem().i();
      }

      return (Multimap) object;
   }

   public IChatBaseComponent C() {
      ChatComponentText chatcomponenttext = new ChatComponentText(this.getName());

      if (this.hasName()) {
         chatcomponenttext.getChatModifier().setItalic(Boolean.TRUE);
      }

      IChatBaseComponent ichatbasecomponent = (new ChatComponentText("[")).addSibling(chatcomponenttext).a("]");

      if (this.item != null) {
         NBTTagCompound nbttagcompound = new NBTTagCompound();

         this.save(nbttagcompound);
         ichatbasecomponent.getChatModifier().setChatHoverable(new ChatHoverable(ChatHoverable.EnumHoverAction.SHOW_ITEM, new ChatComponentText(nbttagcompound.toString())));
         ichatbasecomponent.getChatModifier().setColor(this.u().e);
      }

      return ichatbasecomponent;
   }

   public boolean c(Block block) {
      if (block == this.h) {
         return this.i;
      } else {
         this.h = block;
         if (this.hasTag() && this.tag.hasKeyOfType("CanDestroy", 9)) {
            NBTTagList nbttaglist = this.tag.getList("CanDestroy", 8);

            for (int i = 0; i < nbttaglist.size(); ++i) {
               Block block1 = Block.getByName(nbttaglist.getString(i));

               if (block1 == block) {
                  this.i = true;
                  return true;
               }
            }
         }

         this.i = false;
         return false;
      }
   }

   public boolean d(Block block) {
      if (block == this.j) {
         return this.k;
      } else {
         this.j = block;
         if (this.hasTag() && this.tag.hasKeyOfType("CanPlaceOn", 9)) {
            NBTTagList nbttaglist = this.tag.getList("CanPlaceOn", 8);

            for (int i = 0; i < nbttaglist.size(); ++i) {
               Block block1 = Block.getByName(nbttaglist.getString(i));

               if (block1 == block) {
                  this.k = true;
                  return true;
               }
            }
         }

         this.k = false;
         return false;
      }
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy