/* * 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_8_R1.entity.types; import de.Keyle.MyPet.MyPetApi; import de.Keyle.MyPet.api.Configuration; 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.MyPigZombie; import de.Keyle.MyPet.compat.v1_8_R1.entity.EntityMyPet; import net.minecraft.server.v1_8_R1.*; import org.bukkit.Bukkit; import org.bukkit.craftbukkit.v1_8_R1.inventory.CraftItemStack; @EntitySize(width = 0.6F, height = 1.9F) public class EntityMyPigZombie extends EntityMyPet { public EntityMyPigZombie(World world, MyPet myPet) { super(world, myPet); } @Override protected String getDeathSound() { return "mob.zombiepig.zpigdeath"; } @Override protected String getHurtSound() { return "mob.zombiepig.zpighurt"; } protected String getLivingSound() { return "mob.zombiepig.zpig"; } public boolean handlePlayerInteraction(EntityHuman entityhuman) { if (super.handlePlayerInteraction(entityhuman)) { return true; } ItemStack itemStack = entityhuman.inventory.getItemInHand(); 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 = this.a(itemInSlot.cloneItemStack(), 1.0F); entityitem.motY += (double) (this.random.nextFloat() * 0.05F); entityitem.motX += (double) ((this.random.nextFloat() - this.random.nextFloat()) * 0.1F); entityitem.motZ += (double) ((this.random.nextFloat() - this.random.nextFloat()) * 0.1F); 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(c(itemStack)); ItemStack itemInSlot = CraftItemStack.asNMSCopy(getMyPet().getEquipment(slot)); if (itemInSlot != null && !entityhuman.abilities.canInstantlyBuild) { EntityItem entityitem = this.a(itemInSlot.cloneItemStack(), 1.0F); entityitem.motY += (double) (this.random.nextFloat() * 0.05F); entityitem.motX += (double) ((this.random.nextFloat() - this.random.nextFloat()) * 0.1F); entityitem.motZ += (double) ((this.random.nextFloat() - this.random.nextFloat()) * 0.1F); } getMyPet().setEquipment(slot, CraftItemStack.asBukkitCopy(itemStack)); if (!entityhuman.abilities.canInstantlyBuild) { if (--itemStack.count <= 0) { entityhuman.inventory.setItem(entityhuman.inventory.itemInHandIndex, null); } } return true; } else if (Configuration.MyPet.PigZombie.GROW_UP_ITEM.compare(itemStack) && getMyPet().isBaby() && getOwner().getPlayer().isSneaking()) { if (!entityhuman.abilities.canInstantlyBuild) { if (--itemStack.count <= 0) { entityhuman.inventory.setItem(entityhuman.inventory.itemInHandIndex, null); } } getMyPet().setBaby(false); return true; } } return false; } protected void initDatawatcher() { super.initDatawatcher(); getDataWatcher().a(12, (byte) 0); // is baby } /** * Returns the speed of played sounds * The faster the higher the sound will be */ public float getSoundSpeed() { return super.getSoundSpeed() + 0.4F; } @Override public void updateVisuals() { this.datawatcher.watch(12, (byte) (getMyPet().isBaby() ? 1 : 0)); Bukkit.getScheduler().runTaskLater(MyPetApi.getPlugin(), new Runnable() { public void run() { if (getMyPet().getStatus() == PetState.Here) { for (EquipmentSlot slot : EquipmentSlot.values()) { if (slot == EquipmentSlot.OffHand) { continue; } setPetEquipment(slot.getSlotId(), CraftItemStack.asNMSCopy(getMyPet().getEquipment(slot))); } } } }, 5L); } public MyPigZombie getMyPet() { return (MyPigZombie) myPet; } public void setPetEquipment(int slot, ItemStack itemStack) { ((WorldServer) this.world).getTracker().a(this, new PacketPlayOutEntityEquipment(getId(), slot, itemStack)); } public ItemStack getEquipment(int i) { if (Util.findClassInStackTrace(Thread.currentThread().getStackTrace(), "net.minecraft.server." + MyPetApi.getCompatUtil().getInternalVersion() + ".EntityTrackerEntry", 2)) { EquipmentSlot slot = EquipmentSlot.getSlotById(i); if (getMyPet().getEquipment(slot) != null) { return CraftItemStack.asNMSCopy(getMyPet().getEquipment(slot)); } } return super.getEquipment(i); } }