/* * 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_7_R4.entity.types; import de.Keyle.MyPet.api.Configuration; import de.Keyle.MyPet.api.entity.EntitySize; import de.Keyle.MyPet.api.entity.MyPet; import de.Keyle.MyPet.api.entity.types.MyVillager; import de.Keyle.MyPet.compat.v1_7_R4.entity.EntityMyPet; import net.minecraft.server.v1_7_R4.EntityHuman; import net.minecraft.server.v1_7_R4.ItemStack; import net.minecraft.server.v1_7_R4.World; @EntitySize(width = 0.6F, height = 1.9F) public class EntityMyVillager extends EntityMyPet { public EntityMyVillager(World world, MyPet myPet) { super(world, myPet); } protected String getDeathSound() { return "mob.villager.defaultdeath"; } protected String getHurtSound() { return "mob.villager.defaulthurt"; } protected String getLivingSound() { return "mob.villager.default"; } public boolean handlePlayerInteraction(EntityHuman entityhuman) { if (super.handlePlayerInteraction(entityhuman)) { return true; } ItemStack itemStack = entityhuman.inventory.getItemInHand(); if (getOwner().equals(entityhuman) && itemStack != null && canUseItem()) { if (Configuration.MyPet.Villager.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(); this.datawatcher.a(12, new Integer(0)); // age this.datawatcher.a(16, new Integer(0)); // profession } @Override public void updateVisuals() { if (getMyPet().isBaby()) { this.datawatcher.watch(12, Integer.valueOf(Integer.MIN_VALUE)); } else { this.datawatcher.watch(12, new Integer(0)); } this.datawatcher.watch(16, getMyPet().getProfession()); } public MyVillager getMyPet() { return (MyVillager) myPet; } }