/* * This file is part of MyPet * * Copyright © 2011-2016 Keyle * MyPet is licensed under the GNU Lesser General Public License. * * MyPet is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * MyPet is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package de.Keyle.MyPet.compat.v1_11_R1.entity.types; import de.Keyle.MyPet.MyPetApi; import de.Keyle.MyPet.api.Util; import de.Keyle.MyPet.api.entity.EntitySize; import de.Keyle.MyPet.api.entity.EquipmentSlot; import de.Keyle.MyPet.api.entity.MyPet; import de.Keyle.MyPet.api.entity.MyPet.PetState; import de.Keyle.MyPet.api.entity.types.MyWitherSkeleton; import de.Keyle.MyPet.compat.v1_11_R1.entity.EntityMyPet; import net.minecraft.server.v1_11_R1.*; import org.bukkit.Bukkit; import org.bukkit.craftbukkit.v1_11_R1.inventory.CraftItemStack; @EntitySize(width = 0.6F, height = 1.9F) public class EntityMyWitherSkeleton extends EntityMyPet { public EntityMyWitherSkeleton(World world, MyPet myPet) { super(world, myPet); } protected String getDeathSound() { return "entity.wither_skeleton.death"; } protected String getHurtSound() { return "entity.wither_skeleton.hurt"; } protected String getLivingSound() { return "entity.wither_skeleton.ambient"; } public boolean handlePlayerInteraction(EntityHuman entityhuman, EnumHand enumhand, ItemStack itemStack) { if (super.handlePlayerInteraction(entityhuman, enumhand, itemStack)) { return true; } if (getOwner().equals(entityhuman) && itemStack != null && canUseItem()) { if (itemStack.getItem() == Items.SHEARS && getOwner().getPlayer().isSneaking() && canEquip()) { boolean hadEquipment = false; for (EquipmentSlot slot : EquipmentSlot.values()) { ItemStack itemInSlot = CraftItemStack.asNMSCopy(getMyPet().getEquipment(slot)); if (itemInSlot != null) { EntityItem entityitem = new EntityItem(this.world, this.locX, this.locY + 1, this.locZ, itemInSlot); entityitem.pickupDelay = 10; entityitem.motY += (double) (this.random.nextFloat() * 0.05F); this.world.addEntity(entityitem); getMyPet().setEquipment(slot, null); hadEquipment = true; } } if (hadEquipment) { if (!entityhuman.abilities.canInstantlyBuild) { itemStack.damage(1, entityhuman); } } return true; } else if (MyPetApi.getPlatformHelper().isEquipment(CraftItemStack.asBukkitCopy(itemStack)) && getOwner().getPlayer().isSneaking() && canEquip()) { EquipmentSlot slot = EquipmentSlot.getSlotById(d(itemStack).c()); ItemStack itemInSlot = CraftItemStack.asNMSCopy(getMyPet().getEquipment(slot)); if (itemInSlot != null && !entityhuman.abilities.canInstantlyBuild) { EntityItem entityitem = new EntityItem(this.world, this.locX, this.locY + 1, this.locZ, itemInSlot); entityitem.pickupDelay = 10; entityitem.motY += (double) (this.random.nextFloat() * 0.05F); this.world.addEntity(entityitem); } getMyPet().setEquipment(slot, CraftItemStack.asBukkitCopy(itemStack)); if (!entityhuman.abilities.canInstantlyBuild) { itemStack.subtract(1); if (itemStack.getCount() <= 0) { entityhuman.inventory.setItem(entityhuman.inventory.itemInHandIndex, ItemStack.a); } } return true; } } return false; } public void playPetStepSound() { makeSound("entity.wither_skeleton.step", 0.15F, 1.0F); } @Override public void updateVisuals() { Bukkit.getScheduler().runTaskLater(MyPetApi.getPlugin(), new Runnable() { public void run() { if (getMyPet().getStatus() == PetState.Here) { for (EquipmentSlot slot : EquipmentSlot.values()) { setPetEquipment(slot, CraftItemStack.asNMSCopy(getMyPet().getEquipment(slot))); } } } }, 5L); } public MyWitherSkeleton getMyPet() { return (MyWitherSkeleton) myPet; } public void setPetEquipment(EquipmentSlot slot, ItemStack itemStack) { ((WorldServer) this.world).getTracker().a(this, new PacketPlayOutEntityEquipment(getId(), EnumItemSlot.values()[slot.get19Slot()], itemStack)); } public ItemStack getEquipment(EnumItemSlot vanillaSlot) { if (Util.findClassInStackTrace(Thread.currentThread().getStackTrace(), "net.minecraft.server." + MyPetApi.getCompatUtil().getInternalVersion() + ".EntityTrackerEntry", 2)) { EquipmentSlot slot = EquipmentSlot.getSlotById(vanillaSlot.c()); if (getMyPet().getEquipment(slot) != null) { return CraftItemStack.asNMSCopy(getMyPet().getEquipment(slot)); } } return super.getEquipment(vanillaSlot); } }