2011-07-03 03:28:45 +02:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.Random;
|
2012-01-22 03:28:32 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2012-07-22 08:18:00 +02:00
|
|
|
import org.bukkit.event.entity.SheepRegrowWoolEvent;
|
|
|
|
import org.bukkit.event.player.PlayerShearEntityEvent;
|
2012-01-22 03:28:32 +01:00
|
|
|
// CraftBukkit end
|
2011-07-03 03:28:45 +02:00
|
|
|
|
|
|
|
public class EntitySheep extends EntityAnimal {
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
private final InventoryCrafting e = new InventoryCrafting(new ContainerSheepBreed(this), 2, 1);
|
|
|
|
public static final float[][] d = new float[][] { { 1.0F, 1.0F, 1.0F}, { 0.85F, 0.5F, 0.2F}, { 0.7F, 0.3F, 0.85F}, { 0.4F, 0.6F, 0.85F}, { 0.9F, 0.9F, 0.2F}, { 0.5F, 0.8F, 0.1F}, { 0.95F, 0.5F, 0.65F}, { 0.3F, 0.3F, 0.3F}, { 0.6F, 0.6F, 0.6F}, { 0.3F, 0.5F, 0.6F}, { 0.5F, 0.25F, 0.7F}, { 0.2F, 0.3F, 0.7F}, { 0.4F, 0.3F, 0.2F}, { 0.4F, 0.5F, 0.2F}, { 0.6F, 0.2F, 0.2F}, { 0.1F, 0.1F, 0.1F}};
|
|
|
|
private int f;
|
|
|
|
private PathfinderGoalEatTile g = new PathfinderGoalEatTile(this);
|
2011-07-03 03:28:45 +02:00
|
|
|
|
|
|
|
public EntitySheep(World world) {
|
|
|
|
super(world);
|
|
|
|
this.texture = "/mob/sheep.png";
|
2012-07-29 09:33:13 +02:00
|
|
|
this.a(0.9F, 1.3F);
|
2012-03-01 11:49:23 +01:00
|
|
|
float f = 0.23F;
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.getNavigation().a(true);
|
2012-03-01 11:49:23 +01:00
|
|
|
this.goalSelector.a(0, new PathfinderGoalFloat(this));
|
|
|
|
this.goalSelector.a(1, new PathfinderGoalPanic(this, 0.38F));
|
|
|
|
this.goalSelector.a(2, new PathfinderGoalBreed(this, f));
|
|
|
|
this.goalSelector.a(3, new PathfinderGoalTempt(this, 0.25F, Item.WHEAT.id, false));
|
|
|
|
this.goalSelector.a(4, new PathfinderGoalFollowParent(this, 0.25F));
|
2012-11-06 13:05:28 +01:00
|
|
|
this.goalSelector.a(5, this.g);
|
2012-03-01 11:49:23 +01:00
|
|
|
this.goalSelector.a(6, new PathfinderGoalRandomStroll(this, f));
|
|
|
|
this.goalSelector.a(7, new PathfinderGoalLookAtPlayer(this, EntityHuman.class, 6.0F));
|
|
|
|
this.goalSelector.a(8, new PathfinderGoalRandomLookaround(this));
|
2012-11-06 13:05:28 +01:00
|
|
|
this.e.setItem(0, new ItemStack(Item.INK_SACK, 1, 0));
|
|
|
|
this.e.setItem(1, new ItemStack(Item.INK_SACK, 1, 0));
|
2012-11-14 20:27:45 +01:00
|
|
|
this.e.resultInventory = new InventoryCraftResult(); // CraftBukkit - add result slot for event
|
2012-03-01 11:49:23 +01:00
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
protected boolean be() {
|
2012-03-01 11:49:23 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
protected void bl() {
|
|
|
|
this.f = this.g.f();
|
|
|
|
super.bl();
|
2012-03-01 11:49:23 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
public void c() {
|
2012-03-01 11:49:23 +01:00
|
|
|
if (this.world.isStatic) {
|
2012-11-06 13:05:28 +01:00
|
|
|
this.f = Math.max(0, this.f - 1);
|
2012-03-01 11:49:23 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
super.c();
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public int getMaxHealth() {
|
|
|
|
return 8;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void a() {
|
|
|
|
super.a();
|
2011-07-03 03:28:45 +02:00
|
|
|
this.datawatcher.a(16, new Byte((byte) 0));
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
protected void dropDeathLoot(boolean flag, int i) {
|
2011-07-03 03:28:45 +02:00
|
|
|
// CraftBukkit start - whole method
|
|
|
|
java.util.List<org.bukkit.inventory.ItemStack> loot = new java.util.ArrayList<org.bukkit.inventory.ItemStack>();
|
|
|
|
|
|
|
|
if (!this.isSheared()) {
|
|
|
|
loot.add(new org.bukkit.inventory.ItemStack(org.bukkit.Material.WOOL, 1, (short) 0, (byte) this.getColor()));
|
|
|
|
}
|
|
|
|
|
2012-07-22 08:18:00 +02:00
|
|
|
org.bukkit.craftbukkit.event.CraftEventFactory.callEntityDeathEvent(this, loot);
|
2011-07-03 03:28:45 +02:00
|
|
|
// CraftBukkit end
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
protected int getLootId() {
|
2011-07-03 03:28:45 +02:00
|
|
|
return Block.WOOL.id;
|
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
public boolean a(EntityHuman entityhuman) {
|
2011-07-03 03:28:45 +02:00
|
|
|
ItemStack itemstack = entityhuman.inventory.getItemInHand();
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
if (itemstack != null && itemstack.id == Item.SHEARS.id && !this.isSheared() && !this.isBaby()) {
|
2011-07-03 03:28:45 +02:00
|
|
|
if (!this.world.isStatic) {
|
2012-01-22 03:28:32 +01:00
|
|
|
// CraftBukkit start
|
2012-07-22 08:18:00 +02:00
|
|
|
PlayerShearEntityEvent event = new PlayerShearEntityEvent((org.bukkit.entity.Player) entityhuman.getBukkitEntity(), this.getBukkitEntity());
|
2012-01-22 03:28:32 +01:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-07-03 03:28:45 +02:00
|
|
|
this.setSheared(true);
|
2012-01-12 23:10:13 +01:00
|
|
|
int i = 1 + this.random.nextInt(3);
|
2012-03-27 17:37:00 +02:00
|
|
|
|
2011-07-03 03:28:45 +02:00
|
|
|
for (int j = 0; j < i; ++j) {
|
|
|
|
EntityItem entityitem = this.a(new ItemStack(Block.WOOL.id, 1, this.getColor()), 1.0F);
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2011-07-03 03:28:45 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
itemstack.damage(1, entityhuman);
|
2012-11-06 13:05:28 +01:00
|
|
|
this.makeSound("mob.sheep.shear", 1.0F, 1.0F);
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
return super.a(entityhuman);
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound.setBoolean("Sheared", this.isSheared());
|
|
|
|
nbttagcompound.setByte("Color", (byte) this.getColor());
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2011-11-30 00:17:43 +01:00
|
|
|
this.setSheared(nbttagcompound.getBoolean("Sheared"));
|
|
|
|
this.setColor(nbttagcompound.getByte("Color"));
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
protected String aY() {
|
2012-10-25 05:53:23 +02:00
|
|
|
return "mob.sheep.say";
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
protected String aZ() {
|
2012-10-25 05:53:23 +02:00
|
|
|
return "mob.sheep.say";
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
protected String ba() {
|
2012-10-25 05:53:23 +02:00
|
|
|
return "mob.sheep.say";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void a(int i, int j, int k, int l) {
|
2012-11-06 13:05:28 +01:00
|
|
|
this.makeSound("mob.sheep.step", 0.15F, 1.0F);
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getColor() {
|
2011-09-24 23:03:31 +02:00
|
|
|
return this.datawatcher.getByte(16) & 15;
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setColor(int i) {
|
2011-09-24 23:03:31 +02:00
|
|
|
byte b0 = this.datawatcher.getByte(16);
|
2011-07-03 03:28:45 +02:00
|
|
|
|
|
|
|
this.datawatcher.watch(16, Byte.valueOf((byte) (b0 & 240 | i & 15)));
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isSheared() {
|
2011-09-24 23:03:31 +02:00
|
|
|
return (this.datawatcher.getByte(16) & 16) != 0;
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setSheared(boolean flag) {
|
2011-09-24 23:03:31 +02:00
|
|
|
byte b0 = this.datawatcher.getByte(16);
|
2011-07-03 03:28:45 +02:00
|
|
|
|
|
|
|
if (flag) {
|
|
|
|
this.datawatcher.watch(16, Byte.valueOf((byte) (b0 | 16)));
|
|
|
|
} else {
|
|
|
|
this.datawatcher.watch(16, Byte.valueOf((byte) (b0 & -17)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static int a(Random random) {
|
|
|
|
int i = random.nextInt(100);
|
|
|
|
|
|
|
|
return i < 5 ? 15 : (i < 10 ? 7 : (i < 15 ? 8 : (i < 18 ? 12 : (random.nextInt(500) == 0 ? 6 : 0))));
|
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
public EntitySheep b(EntityAgeable entityageable) {
|
|
|
|
EntitySheep entitysheep = (EntitySheep) entityageable;
|
2011-11-20 09:01:14 +01:00
|
|
|
EntitySheep entitysheep1 = new EntitySheep(this.world);
|
2012-11-06 13:05:28 +01:00
|
|
|
int i = this.a(this, entitysheep);
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
entitysheep1.setColor(15 - i);
|
2011-11-20 09:01:14 +01:00
|
|
|
return entitysheep1;
|
|
|
|
}
|
2012-03-01 11:49:23 +01:00
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
public void aH() {
|
2012-03-01 11:49:23 +01:00
|
|
|
// CraftBukkit start
|
2012-07-22 08:18:00 +02:00
|
|
|
SheepRegrowWoolEvent event = new SheepRegrowWoolEvent((org.bukkit.entity.Sheep) this.getBukkitEntity());
|
2012-03-01 11:49:23 +01:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (!event.isCancelled()) {
|
|
|
|
this.setSheared(false);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
if (this.isBaby()) {
|
|
|
|
int i = this.getAge() + 1200;
|
|
|
|
|
|
|
|
if (i > 0) {
|
|
|
|
i = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setAge(i);
|
|
|
|
}
|
|
|
|
}
|
2012-10-25 05:53:23 +02:00
|
|
|
|
2012-11-06 13:05:28 +01:00
|
|
|
public void bG() {
|
2012-10-25 05:53:23 +02:00
|
|
|
this.setColor(a(this.world.random));
|
|
|
|
}
|
2012-11-06 13:05:28 +01:00
|
|
|
|
|
|
|
private int a(EntityAnimal entityanimal, EntityAnimal entityanimal1) {
|
|
|
|
int i = this.b(entityanimal);
|
|
|
|
int j = this.b(entityanimal1);
|
|
|
|
|
|
|
|
this.e.getItem(0).setData(i);
|
|
|
|
this.e.getItem(1).setData(j);
|
|
|
|
ItemStack itemstack = CraftingManager.getInstance().craft(this.e, ((EntitySheep) entityanimal).world);
|
|
|
|
int k;
|
|
|
|
|
|
|
|
if (itemstack != null && itemstack.getItem().id == Item.INK_SACK.id) {
|
|
|
|
k = itemstack.getData();
|
|
|
|
} else {
|
|
|
|
k = this.world.random.nextBoolean() ? i : j;
|
|
|
|
}
|
|
|
|
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
|
|
|
|
private int b(EntityAnimal entityanimal) {
|
|
|
|
return 15 - ((EntitySheep) entityanimal).getColor();
|
|
|
|
}
|
|
|
|
|
|
|
|
public EntityAgeable createChild(EntityAgeable entityageable) {
|
|
|
|
return this.b(entityageable);
|
|
|
|
}
|
2011-07-03 03:28:45 +02:00
|
|
|
}
|