net.minecraft.server.EntitySheep Maven / Gradle / Ivy
package net.minecraft.server;
import com.google.common.collect.Maps;
import org.bukkit.entity.Sheep;
import org.bukkit.event.entity.SheepRegrowWoolEvent;
import org.bukkit.event.player.PlayerShearEntityEvent;
import org.bukkit.inventory.InventoryView;
import org.jetbrains.annotations.NotNull;
import java.util.Map;
import java.util.Random;
// CraftBukkit end
public class EntitySheep extends EntityAnimal {
private static final Map bo = Maps.newEnumMap(EnumColor.class);
static {
EntitySheep.bo.put(EnumColor.WHITE, new float[]{1.0F, 1.0F, 1.0F});
EntitySheep.bo.put(EnumColor.ORANGE, new float[]{0.85F, 0.5F, 0.2F});
EntitySheep.bo.put(EnumColor.MAGENTA, new float[]{0.7F, 0.3F, 0.85F});
EntitySheep.bo.put(EnumColor.LIGHT_BLUE, new float[]{0.4F, 0.6F, 0.85F});
EntitySheep.bo.put(EnumColor.YELLOW, new float[]{0.9F, 0.9F, 0.2F});
EntitySheep.bo.put(EnumColor.LIME, new float[]{0.5F, 0.8F, 0.1F});
EntitySheep.bo.put(EnumColor.PINK, new float[]{0.95F, 0.5F, 0.65F});
EntitySheep.bo.put(EnumColor.GRAY, new float[]{0.3F, 0.3F, 0.3F});
EntitySheep.bo.put(EnumColor.SILVER, new float[]{0.6F, 0.6F, 0.6F});
EntitySheep.bo.put(EnumColor.CYAN, new float[]{0.3F, 0.5F, 0.6F});
EntitySheep.bo.put(EnumColor.PURPLE, new float[]{0.5F, 0.25F, 0.7F});
EntitySheep.bo.put(EnumColor.BLUE, new float[]{0.2F, 0.3F, 0.7F});
EntitySheep.bo.put(EnumColor.BROWN, new float[]{0.4F, 0.3F, 0.2F});
EntitySheep.bo.put(EnumColor.GREEN, new float[]{0.4F, 0.5F, 0.2F});
EntitySheep.bo.put(EnumColor.RED, new float[]{0.6F, 0.2F, 0.2F});
EntitySheep.bo.put(EnumColor.BLACK, new float[]{0.1F, 0.1F, 0.1F});
}
@NotNull
@Override
public Sheep getEntity() {
return (Sheep) super.getEntity();
}
private final InventoryCrafting bm = new InventoryCrafting(new Container() {
public boolean a(EntityHuman entityhuman) {
return false;
}
// CraftBukkit start
@Override
public InventoryView getBukkitView() {
return null; // TODO: O.O
}
// CraftBukkit end
}, 2, 1);
private final PathfinderGoalEatTile bq = new PathfinderGoalEatTile(this);
private int bp;
public EntitySheep(World world) {
super(world);
this.setSize(0.9F, 1.3F);
((Navigation) this.getNavigation()).a(true);
this.goalSelector.a(0, new PathfinderGoalFloat(this));
this.goalSelector.a(1, new PathfinderGoalPanic(this, 1.25D));
this.goalSelector.a(2, new PathfinderGoalBreed(this, 1.0D));
this.goalSelector.a(3, new PathfinderGoalTempt(this, 1.1D, Items.WHEAT, false));
this.goalSelector.a(4, new PathfinderGoalFollowParent(this, 1.1D));
this.goalSelector.a(5, this.bq);
this.goalSelector.a(6, new PathfinderGoalRandomStroll(this, 1.0D));
this.goalSelector.a(7, new PathfinderGoalLookAtPlayer(this, EntityHuman.class, 6.0F));
this.goalSelector.a(8, new PathfinderGoalRandomLookaround(this));
this.bm.setItem(0, new ItemStack(Items.DYE, 1, 0));
this.bm.setItem(1, new ItemStack(Items.DYE, 1, 0));
this.bm.resultInventory = new InventoryCraftResult(); // CraftBukkit - add result slot for event
}
public static float[] a(EnumColor enumcolor) {
return EntitySheep.bo.get(enumcolor);
}
public static EnumColor a(Random random) {
int i = random.nextInt(100);
return i < 5 ? EnumColor.BLACK : (i < 10 ? EnumColor.GRAY : (i < 15 ? EnumColor.SILVER : (i < 18 ? EnumColor.BROWN : (random.nextInt(500) == 0 ? EnumColor.PINK : EnumColor.WHITE))));
}
protected void E() {
this.bp = this.bq.f();
super.E();
}
public void m() {
if (this.world.isClientSide) {
this.bp = Math.max(0, this.bp - 1);
}
super.m();
}
protected void initAttributes() {
super.initAttributes();
this.getAttributeInstance(GenericAttributes.maxHealth).setValue(8.0D);
this.getAttributeInstance(GenericAttributes.MOVEMENT_SPEED).setValue(0.23000000417232513D);
}
protected void h() {
super.h();
this.datawatcher.a(16, new Byte((byte) 0));
}
protected void dropDeathLoot(boolean flag, int i) {
if (!this.isSheared()) {
this.a(new ItemStack(Item.getItemOf(Blocks.WOOL), 1, this.getColor().getColorIndex()), 0.0F);
}
int j = this.random.nextInt(2) + 1 + this.random.nextInt(1 + i);
for (int k = 0; k < j; ++k) {
if (this.isBurning()) {
this.a(Items.COOKED_MUTTON, 1);
} else {
this.a(Items.MUTTON, 1);
}
}
}
protected Item getLoot() {
return Item.getItemOf(Blocks.WOOL);
}
public boolean a(EntityHuman entityhuman) {
ItemStack itemstack = entityhuman.inventory.getItemInHand();
if (itemstack != null && itemstack.getItem() == Items.SHEARS && !this.isSheared() && !this.isBaby()) {
if (!this.world.isClientSide) {
// CraftBukkit start
PlayerShearEntityEvent event = new PlayerShearEntityEvent((org.bukkit.entity.Player) entityhuman.getBukkitEntity(), this.getBukkitEntity());
this.world.getServer().getPluginManager().callEvent(event);
if (event.isCancelled()) {
return false;
}
// CraftBukkit end
this.setSheared(true);
int i = 1 + this.random.nextInt(3);
for (int j = 0; j < i; ++j) {
EntityItem entityitem = this.a(new ItemStack(Item.getItemOf(Blocks.WOOL), 1, this.getColor().getColorIndex()), 1.0F);
entityitem.motY += this.random.nextFloat() * 0.05F;
entityitem.motX += (this.random.nextFloat() - this.random.nextFloat()) * 0.1F;
entityitem.motZ += (this.random.nextFloat() - this.random.nextFloat()) * 0.1F;
}
}
itemstack.damage(1, entityhuman);
this.makeSound("mob.sheep.shear", 1.0F, 1.0F);
}
return super.a(entityhuman);
}
public void b(NBTTagCompound nbttagcompound) {
super.b(nbttagcompound);
nbttagcompound.setBoolean("Sheared", this.isSheared());
nbttagcompound.setByte("Color", (byte) this.getColor().getColorIndex());
}
public void a(NBTTagCompound nbttagcompound) {
super.a(nbttagcompound);
this.setSheared(nbttagcompound.getBoolean("Sheared"));
this.setColor(EnumColor.fromColorIndex(nbttagcompound.getByte("Color")));
}
protected String z() {
return "mob.sheep.say";
}
protected String bo() {
return "mob.sheep.say";
}
protected String bp() {
return "mob.sheep.say";
}
protected void a(BlockPosition pos, Block block) {
this.makeSound("mob.sheep.step", 0.15F, 1.0F);
}
public EnumColor getColor() {
return EnumColor.fromColorIndex(this.datawatcher.getByte(16) & 15);
}
public void setColor(EnumColor enumcolor) {
byte b0 = this.datawatcher.getByte(16);
this.datawatcher.watch(16, Byte.valueOf((byte) (b0 & 240 | enumcolor.getColorIndex() & 15)));
}
public boolean isSheared() {
return (this.datawatcher.getByte(16) & 16) != 0;
}
public void setSheared(boolean flag) {
byte b0 = this.datawatcher.getByte(16);
if (flag) {
this.datawatcher.watch(16, Byte.valueOf((byte) (b0 | 16)));
} else {
this.datawatcher.watch(16, Byte.valueOf((byte) (b0 & -17)));
}
}
public EntitySheep b(EntityAgeable entityageable) {
EntitySheep entitysheep = (EntitySheep) entityageable;
EntitySheep entitysheep1 = new EntitySheep(this.world);
entitysheep1.setColor(this.a(this, entitysheep));
return entitysheep1;
}
public void v() {
// CraftBukkit start
SheepRegrowWoolEvent event = new SheepRegrowWoolEvent((org.bukkit.entity.Sheep) this.getBukkitEntity());
this.world.getServer().getPluginManager().callEvent(event);
if (!event.isCancelled()) {
this.setSheared(false);
}
// CraftBukkit end
if (this.isBaby()) {
this.setAge(60);
}
}
public GroupDataEntity prepare(DifficultyDamageScaler difficultydamagescaler, GroupDataEntity groupdataentity) {
groupdataentity = super.prepare(difficultydamagescaler, groupdataentity);
this.setColor(a(this.world.random));
return groupdataentity;
}
private EnumColor a(EntityAnimal entityanimal, EntityAnimal entityanimal1) {
int i = ((EntitySheep) entityanimal).getColor().getInvColorIndex();
int j = ((EntitySheep) entityanimal1).getColor().getInvColorIndex();
this.bm.getItem(0).setData(i);
this.bm.getItem(1).setData(j);
ItemStack itemstack = CraftingManager.getInstance().craft(this.bm, entityanimal.world);
int k;
if (itemstack != null && itemstack.getItem() == Items.DYE) {
k = itemstack.getData();
} else {
k = this.world.random.nextBoolean() ? i : j;
}
return EnumColor.fromInvColorIndex(k);
}
public float getHeadHeight() {
return 0.95F * this.length;
}
public EntityAgeable createChild(EntityAgeable entityageable) {
return this.b(entityageable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy