2011-01-29 22:50:29 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
import java.util.Iterator;
|
2011-01-29 22:50:29 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
// CraftBukkit start
|
2011-02-22 01:43:12 +01:00
|
|
|
import org.bukkit.craftbukkit.entity.CraftItem;
|
2012-02-29 19:56:35 +01:00
|
|
|
import org.bukkit.entity.HumanEntity;
|
2011-02-11 22:49:51 +01:00
|
|
|
import org.bukkit.entity.Player;
|
2011-11-29 08:10:05 +01:00
|
|
|
import org.bukkit.event.entity.EntityCombustByEntityEvent;
|
2011-04-07 20:26:51 +02:00
|
|
|
import org.bukkit.event.player.PlayerBedEnterEvent;
|
|
|
|
import org.bukkit.event.player.PlayerBedLeaveEvent;
|
2011-02-11 22:49:51 +01:00
|
|
|
import org.bukkit.event.player.PlayerDropItemEvent;
|
2011-01-29 22:50:29 +01:00
|
|
|
// CraftBukkit end
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public abstract class EntityHuman extends EntityLiving implements ICommandListener {
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
public PlayerInventory inventory = new PlayerInventory(this);
|
2012-07-29 09:33:13 +02:00
|
|
|
private InventoryEnderChest enderChest = new InventoryEnderChest();
|
2011-01-29 22:50:29 +01:00
|
|
|
public Container defaultContainer;
|
|
|
|
public Container activeContainer;
|
2011-09-15 18:36:27 +02:00
|
|
|
protected FoodMetaData foodData = new FoodMetaData();
|
2012-07-29 09:33:13 +02:00
|
|
|
protected int bC = 0;
|
|
|
|
public byte bD = 0;
|
|
|
|
public int bE = 0;
|
|
|
|
public float bF;
|
|
|
|
public float bG;
|
|
|
|
public boolean bH = false;
|
|
|
|
public int bI = 0;
|
2011-01-29 22:50:29 +01:00
|
|
|
public String name;
|
|
|
|
public int dimension;
|
2012-07-29 09:33:13 +02:00
|
|
|
public int bL = 0;
|
|
|
|
public double bM;
|
|
|
|
public double bN;
|
|
|
|
public double bO;
|
|
|
|
public double bP;
|
|
|
|
public double bQ;
|
|
|
|
public double bR;
|
2011-04-07 20:26:51 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
public boolean sleeping;
|
2011-04-11 20:48:31 +02:00
|
|
|
public boolean fauxSleeping;
|
2011-06-09 15:44:25 +02:00
|
|
|
public String spawnWorld = "";
|
2012-02-29 22:31:04 +01:00
|
|
|
|
|
|
|
public HumanEntity getBukkitEntity() {
|
|
|
|
return (HumanEntity) super.getBukkitEntity();
|
|
|
|
}
|
2011-04-07 20:26:51 +02:00
|
|
|
// CraftBukkit end
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public ChunkCoordinates bT;
|
2012-01-12 12:02:39 +01:00
|
|
|
public int sleepTicks; // CraftBukkit - private -> public
|
2012-07-29 09:33:13 +02:00
|
|
|
public float bU;
|
|
|
|
public float bV;
|
2011-04-20 22:47:26 +02:00
|
|
|
private ChunkCoordinates c;
|
2012-07-29 09:33:13 +02:00
|
|
|
private ChunkCoordinates d;
|
|
|
|
public int bW = 20;
|
|
|
|
protected boolean bX = false;
|
|
|
|
public float bY;
|
2011-09-15 18:36:27 +02:00
|
|
|
public PlayerAbilities abilities = new PlayerAbilities();
|
2012-01-19 17:06:27 +01:00
|
|
|
public int oldLevel = -1; // CraftBukkit
|
2011-11-30 00:17:43 +01:00
|
|
|
public int expLevel;
|
2011-09-15 02:23:52 +02:00
|
|
|
public int expTotal;
|
2011-11-30 00:17:43 +01:00
|
|
|
public float exp;
|
2012-07-29 09:33:13 +02:00
|
|
|
private ItemStack e;
|
|
|
|
private int f;
|
|
|
|
protected float cd = 0.1F;
|
|
|
|
protected float ce = 0.02F;
|
2011-09-24 23:03:31 +02:00
|
|
|
public EntityFishingHook hookedFish = null;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
public EntityHuman(World world) {
|
|
|
|
super(world);
|
|
|
|
this.defaultContainer = new ContainerPlayer(this.inventory, !world.isStatic);
|
|
|
|
this.activeContainer = this.defaultContainer;
|
|
|
|
this.height = 1.62F;
|
2011-04-20 19:05:14 +02:00
|
|
|
ChunkCoordinates chunkcoordinates = world.getSpawn();
|
2011-02-23 03:37:56 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPositionRotation((double) chunkcoordinates.x + 0.5D, (double) (chunkcoordinates.y + 1), (double) chunkcoordinates.z + 0.5D, 0.0F, 0.0F);
|
2012-07-29 09:33:13 +02:00
|
|
|
this.aC = "humanoid";
|
|
|
|
this.aB = 180.0F;
|
2011-01-29 22:50:29 +01:00
|
|
|
this.maxFireTicks = 20;
|
|
|
|
this.texture = "/mob/char.png";
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
public int getMaxHealth() {
|
|
|
|
return 20;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void a() {
|
|
|
|
super.a();
|
2011-02-23 03:37:56 +01:00
|
|
|
this.datawatcher.a(16, Byte.valueOf((byte) 0));
|
2011-09-15 02:23:52 +02:00
|
|
|
this.datawatcher.a(17, Byte.valueOf((byte) 0));
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public boolean bw() {
|
|
|
|
return this.e != null;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void by() {
|
|
|
|
if (this.e != null) {
|
|
|
|
this.e.b(this.world, this, this.f);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bz();
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void bz() {
|
|
|
|
this.e = null;
|
|
|
|
this.f = 0;
|
2011-09-15 02:23:52 +02:00
|
|
|
if (!this.world.isStatic) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.c(false);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public boolean aY() {
|
|
|
|
return this.bw() && Item.byId[this.e.id].b(this.e) == EnumAnimation.d;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void h_() {
|
|
|
|
if (this.e != null) {
|
2011-09-15 02:23:52 +02:00
|
|
|
ItemStack itemstack = this.inventory.getItemInHand();
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (itemstack == this.e) {
|
|
|
|
if (this.f <= 25 && this.f % 4 == 0) {
|
|
|
|
this.c(itemstack, 5);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (--this.f == 0 && !this.world.isStatic) {
|
|
|
|
this.o();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
} else {
|
|
|
|
this.bz();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.bL > 0) {
|
|
|
|
--this.bL;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.isSleeping()) {
|
2011-02-23 03:37:56 +01:00
|
|
|
++this.sleepTicks;
|
|
|
|
if (this.sleepTicks > 100) {
|
|
|
|
this.sleepTicks = 100;
|
|
|
|
}
|
|
|
|
|
2011-05-31 15:55:45 +02:00
|
|
|
if (!this.world.isStatic) {
|
2012-07-29 09:33:13 +02:00
|
|
|
if (!this.l()) {
|
2011-05-31 15:55:45 +02:00
|
|
|
this.a(true, true, false);
|
2012-08-25 02:51:51 +02:00
|
|
|
} else if (this.world.s()) {
|
2011-05-31 15:55:45 +02:00
|
|
|
this.a(false, true, true);
|
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
} else if (this.sleepTicks > 0) {
|
|
|
|
++this.sleepTicks;
|
|
|
|
if (this.sleepTicks >= 110) {
|
|
|
|
this.sleepTicks = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
super.h_();
|
|
|
|
if (!this.world.isStatic && this.activeContainer != null && !this.activeContainer.c(this)) {
|
2011-09-24 23:03:31 +02:00
|
|
|
this.closeInventory();
|
2011-01-29 22:50:29 +01:00
|
|
|
this.activeContainer = this.defaultContainer;
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
if (this.isBurning() && this.abilities.isInvulnerable) {
|
2011-11-30 00:17:43 +01:00
|
|
|
this.extinguish();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bM = this.bP;
|
|
|
|
this.bN = this.bQ;
|
|
|
|
this.bO = this.bR;
|
|
|
|
double d0 = this.locX - this.bP;
|
|
|
|
double d1 = this.locY - this.bQ;
|
|
|
|
double d2 = this.locZ - this.bR;
|
2011-01-29 22:50:29 +01:00
|
|
|
double d3 = 10.0D;
|
|
|
|
|
|
|
|
if (d0 > d3) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bM = this.bP = this.locX;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (d2 > d3) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bO = this.bR = this.locZ;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (d1 > d3) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bN = this.bQ = this.locY;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (d0 < -d3) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bM = this.bP = this.locX;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (d2 < -d3) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bO = this.bR = this.locZ;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (d1 < -d3) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bN = this.bQ = this.locY;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bP += d0 * 0.25D;
|
|
|
|
this.bR += d2 * 0.25D;
|
|
|
|
this.bQ += d1 * 0.25D;
|
2011-04-20 22:47:26 +02:00
|
|
|
this.a(StatisticList.k, 1);
|
|
|
|
if (this.vehicle == null) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.d = null;
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
|
|
|
if (!this.world.isStatic) {
|
2011-09-15 18:36:27 +02:00
|
|
|
this.foodData.a(this);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void c(ItemStack itemstack, int i) {
|
|
|
|
if (itemstack.n() == EnumAnimation.c) {
|
2011-11-20 09:01:14 +01:00
|
|
|
this.world.makeSound(this, "random.drink", 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (itemstack.n() == EnumAnimation.b) {
|
2011-09-15 02:23:52 +02:00
|
|
|
for (int j = 0; j < i; ++j) {
|
2012-07-29 09:33:13 +02:00
|
|
|
Vec3D vec3d = Vec3D.a().create(((double) this.random.nextFloat() - 0.5D) * 0.1D, Math.random() * 0.1D + 0.1D, 0.0D);
|
2011-09-15 02:23:52 +02:00
|
|
|
|
|
|
|
vec3d.a(-this.pitch * 3.1415927F / 180.0F);
|
|
|
|
vec3d.b(-this.yaw * 3.1415927F / 180.0F);
|
2012-07-29 09:33:13 +02:00
|
|
|
Vec3D vec3d1 = Vec3D.a().create(((double) this.random.nextFloat() - 0.5D) * 0.3D, (double) (-this.random.nextFloat()) * 0.6D - 0.3D, 0.6D);
|
2011-09-15 02:23:52 +02:00
|
|
|
|
|
|
|
vec3d1.a(-this.pitch * 3.1415927F / 180.0F);
|
|
|
|
vec3d1.b(-this.yaw * 3.1415927F / 180.0F);
|
2012-02-29 22:31:04 +01:00
|
|
|
vec3d1 = vec3d1.add(this.locX, this.locY + (double) this.getHeadHeight(), this.locZ);
|
2011-09-15 02:23:52 +02:00
|
|
|
this.world.a("iconcrack_" + itemstack.getItem().id, vec3d1.a, vec3d1.b, vec3d1.c, vec3d.a, vec3d.b + 0.05D, vec3d.c);
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
this.world.makeSound(this, "random.eat", 0.5F + 0.5F * (float) this.random.nextInt(2), (this.random.nextFloat() - this.random.nextFloat()) * 0.2F + 1.0F);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void o() {
|
|
|
|
if (this.e != null) {
|
|
|
|
this.c(this.e, 16);
|
|
|
|
int i = this.e.count;
|
|
|
|
ItemStack itemstack = this.e.b(this.world, this);
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (itemstack != this.e || itemstack != null && itemstack.count != i) {
|
2011-09-15 02:23:52 +02:00
|
|
|
this.inventory.items[this.inventory.itemInHandIndex] = itemstack;
|
|
|
|
if (itemstack.count == 0) {
|
|
|
|
this.inventory.items[this.inventory.itemInHandIndex] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bz();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected boolean aX() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return this.getHealth() <= 0 || this.isSleeping();
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 19:56:35 +01:00
|
|
|
// CraftBukkit - protected -> public
|
|
|
|
public void closeInventory() {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.activeContainer = this.defaultContainer;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void U() {
|
2011-04-20 22:47:26 +02:00
|
|
|
double d0 = this.locX;
|
|
|
|
double d1 = this.locY;
|
|
|
|
double d2 = this.locZ;
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
super.U();
|
|
|
|
this.bF = this.bG;
|
|
|
|
this.bG = 0.0F;
|
|
|
|
this.k(this.locX - d0, this.locY - d1, this.locZ - d2);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
private int k() {
|
2011-09-24 23:03:31 +02:00
|
|
|
return this.hasEffect(MobEffectList.FASTER_DIG) ? 6 - (1 + this.getEffect(MobEffectList.FASTER_DIG).getAmplifier()) * 1 : (this.hasEffect(MobEffectList.SLOWER_DIG) ? 6 + (1 + this.getEffect(MobEffectList.SLOWER_DIG).getAmplifier()) * 2 : 6);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void be() {
|
|
|
|
int i = this.k();
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.bH) {
|
|
|
|
++this.bI;
|
|
|
|
if (this.bI >= i) {
|
|
|
|
this.bI = 0;
|
|
|
|
this.bH = false;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bI = 0;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.aJ = (float) this.bI / (float) i;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void d() {
|
|
|
|
if (this.bC > 0) {
|
|
|
|
--this.bC;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.world.difficulty == 0 && this.getHealth() < this.getMaxHealth() && this.ticksLived % 20 * 12 == 0) {
|
2011-09-20 22:31:43 +02:00
|
|
|
// CraftBukkit - added regain reason of "REGEN" for filtering purposes.
|
2012-03-12 23:55:02 +01:00
|
|
|
this.heal(1, org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason.REGEN);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.inventory.k();
|
|
|
|
this.bF = this.bG;
|
|
|
|
super.d();
|
|
|
|
this.aG = this.abilities.b();
|
|
|
|
this.aH = this.ce;
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.isSprinting()) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.aG = (float) ((double) this.aG + (double) this.abilities.b() * 0.3D);
|
|
|
|
this.aH = (float) ((double) this.aH + (double) this.ce * 0.3D);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
float f = MathHelper.sqrt(this.motX * this.motX + this.motZ * this.motZ);
|
2011-05-14 16:29:42 +02:00
|
|
|
// CraftBukkit - Math -> TrigMath
|
2012-07-22 08:18:00 +02:00
|
|
|
float f1 = (float) org.bukkit.craftbukkit.TrigMath.atan(-this.motY * 0.20000000298023224D) * 15.0F;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (f > 0.1F) {
|
|
|
|
f = 0.1F;
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (!this.onGround || this.getHealth() <= 0) {
|
2011-01-29 22:50:29 +01:00
|
|
|
f = 0.0F;
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.onGround || this.getHealth() <= 0) {
|
2011-01-29 22:50:29 +01:00
|
|
|
f1 = 0.0F;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bG += (f - this.bG) * 0.4F;
|
|
|
|
this.aT += (f1 - this.aT) * 0.8F;
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.getHealth() > 0) {
|
2012-01-12 16:27:39 +01:00
|
|
|
List list = this.world.getEntities(this, this.boundingBox.grow(1.0D, 0.0D, 1.0D));
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (list != null) {
|
2012-07-29 09:33:13 +02:00
|
|
|
Iterator iterator = list.iterator();
|
|
|
|
|
|
|
|
while (iterator.hasNext()) {
|
|
|
|
Entity entity = (Entity) iterator.next();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (!entity.dead) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.o(entity);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
private void o(Entity entity) {
|
|
|
|
entity.b_(this);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public void die(DamageSource damagesource) {
|
|
|
|
super.die(damagesource);
|
2012-07-29 09:33:13 +02:00
|
|
|
this.a(0.2F, 0.2F);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition(this.locX, this.locY, this.locZ);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.motY = 0.10000000149011612D;
|
|
|
|
if (this.name.equals("Notch")) {
|
|
|
|
this.a(new ItemStack(Item.APPLE, 1), true);
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.inventory.m();
|
2011-09-15 02:23:52 +02:00
|
|
|
if (damagesource != null) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.motX = (double) (-MathHelper.cos((this.aP + this.yaw) * 3.1415927F / 180.0F) * 0.1F);
|
|
|
|
this.motZ = (double) (-MathHelper.sin((this.aP + this.yaw) * 3.1415927F / 180.0F) * 0.1F);
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
this.motX = this.motZ = 0.0D;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.height = 0.1F;
|
2011-04-20 22:47:26 +02:00
|
|
|
this.a(StatisticList.y, 1);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void c(Entity entity, int i) {
|
|
|
|
this.bE += i;
|
2011-03-31 22:40:00 +02:00
|
|
|
if (entity instanceof EntityHuman) {
|
2011-04-20 22:47:26 +02:00
|
|
|
this.a(StatisticList.A, 1);
|
2011-03-31 22:40:00 +02:00
|
|
|
} else {
|
2011-04-20 22:47:26 +02:00
|
|
|
this.a(StatisticList.z, 1);
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected int h(int i) {
|
2011-11-30 00:17:43 +01:00
|
|
|
int j = EnchantmentManager.getOxygenEnchantmentLevel(this.inventory);
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
return j > 0 && this.random.nextInt(j + 1) > 0 ? i : super.h(i);
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public EntityItem bB() {
|
2012-03-01 11:49:23 +01:00
|
|
|
return this.a(this.inventory.splitStack(this.inventory.itemInHandIndex, 1), false);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
public EntityItem drop(ItemStack itemstack) {
|
|
|
|
return this.a(itemstack, false);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
public EntityItem a(ItemStack itemstack, boolean flag) {
|
|
|
|
if (itemstack == null) {
|
|
|
|
return null;
|
|
|
|
} else {
|
2012-02-29 22:31:04 +01:00
|
|
|
EntityItem entityitem = new EntityItem(this.world, this.locX, this.locY - 0.30000001192092896D + (double) this.getHeadHeight(), this.locZ, itemstack);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
entityitem.pickupDelay = 40;
|
2011-01-29 22:50:29 +01:00
|
|
|
float f = 0.1F;
|
|
|
|
float f1;
|
|
|
|
|
|
|
|
if (flag) {
|
|
|
|
f1 = this.random.nextFloat() * 0.5F;
|
|
|
|
float f2 = this.random.nextFloat() * 3.1415927F * 2.0F;
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
entityitem.motX = (double) (-MathHelper.sin(f2) * f1);
|
|
|
|
entityitem.motZ = (double) (MathHelper.cos(f2) * f1);
|
2011-01-29 22:50:29 +01:00
|
|
|
entityitem.motY = 0.20000000298023224D;
|
|
|
|
} else {
|
|
|
|
f = 0.3F;
|
2011-04-20 19:05:14 +02:00
|
|
|
entityitem.motX = (double) (-MathHelper.sin(this.yaw / 180.0F * 3.1415927F) * MathHelper.cos(this.pitch / 180.0F * 3.1415927F) * f);
|
|
|
|
entityitem.motZ = (double) (MathHelper.cos(this.yaw / 180.0F * 3.1415927F) * MathHelper.cos(this.pitch / 180.0F * 3.1415927F) * f);
|
|
|
|
entityitem.motY = (double) (-MathHelper.sin(this.pitch / 180.0F * 3.1415927F) * f + 0.1F);
|
2011-01-29 22:50:29 +01:00
|
|
|
f = 0.02F;
|
|
|
|
f1 = this.random.nextFloat() * 3.1415927F * 2.0F;
|
|
|
|
f *= this.random.nextFloat();
|
|
|
|
entityitem.motX += Math.cos((double) f1) * (double) f;
|
|
|
|
entityitem.motY += (double) ((this.random.nextFloat() - this.random.nextFloat()) * 0.1F);
|
|
|
|
entityitem.motZ += Math.sin((double) f1) * (double) f;
|
|
|
|
}
|
|
|
|
|
2011-02-11 22:49:51 +01:00
|
|
|
// CraftBukkit start
|
2011-02-23 13:56:36 +01:00
|
|
|
Player player = (Player) this.getBukkitEntity();
|
2011-06-27 00:25:01 +02:00
|
|
|
CraftItem drop = new CraftItem(this.world.getServer(), entityitem);
|
2011-02-23 13:56:36 +01:00
|
|
|
|
2011-02-11 22:49:51 +01:00
|
|
|
PlayerDropItemEvent event = new PlayerDropItemEvent(player, drop);
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
2011-02-11 22:49:51 +01:00
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
2011-08-23 20:38:49 +02:00
|
|
|
player.getInventory().addItem(drop.getItemStack());
|
2012-03-01 11:49:23 +01:00
|
|
|
return null;
|
2011-02-11 22:49:51 +01:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(entityitem);
|
2011-04-20 22:47:26 +02:00
|
|
|
this.a(StatisticList.v, 1);
|
2012-03-01 11:49:23 +01:00
|
|
|
return entityitem;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void a(EntityItem entityitem) {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.world.addEntity(entityitem);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public float a(Block block) {
|
|
|
|
float f = this.inventory.a(block);
|
2011-11-30 00:17:43 +01:00
|
|
|
int i = EnchantmentManager.getDigSpeedEnchantmentLevel(this.inventory);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (i > 0 && this.inventory.b(block)) {
|
2012-07-29 09:33:13 +02:00
|
|
|
f += (float) (i * i + 1);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.hasEffect(MobEffectList.FASTER_DIG)) {
|
2012-07-29 09:33:13 +02:00
|
|
|
f *= 1.0F + (float) (this.getEffect(MobEffectList.FASTER_DIG).getAmplifier() + 1) * 0.2F;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.hasEffect(MobEffectList.SLOWER_DIG)) {
|
2012-07-29 09:33:13 +02:00
|
|
|
f *= 1.0F - (float) (this.getEffect(MobEffectList.SLOWER_DIG).getAmplifier() + 1) * 0.2F;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
if (this.a(Material.WATER) && !EnchantmentManager.hasWaterWorkerEnchantment(this.inventory)) {
|
2012-07-29 09:33:13 +02:00
|
|
|
f /= 5.0F;
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this.onGround) {
|
2012-07-29 09:33:13 +02:00
|
|
|
f /= 5.0F;
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
return f;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean b(Block block) {
|
|
|
|
return this.inventory.b(block);
|
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
super.a(nbttagcompound);
|
2011-11-30 00:17:43 +01:00
|
|
|
NBTTagList nbttaglist = nbttagcompound.getList("Inventory");
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.inventory.b(nbttaglist);
|
2011-11-30 00:17:43 +01:00
|
|
|
this.dimension = nbttagcompound.getInt("Dimension");
|
|
|
|
this.sleeping = nbttagcompound.getBoolean("Sleeping");
|
|
|
|
this.sleepTicks = nbttagcompound.getShort("SleepTimer");
|
|
|
|
this.exp = nbttagcompound.getFloat("XpP");
|
|
|
|
this.expLevel = nbttagcompound.getInt("XpLevel");
|
|
|
|
this.expTotal = nbttagcompound.getInt("XpTotal");
|
2011-02-23 03:37:56 +01:00
|
|
|
if (this.sleeping) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bT = new ChunkCoordinates(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ));
|
2011-03-31 22:40:00 +02:00
|
|
|
this.a(true, true, false);
|
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
// CraftBukkit start
|
2011-06-16 05:24:31 +02:00
|
|
|
this.spawnWorld = nbttagcompound.getString("SpawnWorld");
|
2011-09-25 02:36:05 +02:00
|
|
|
if ("".equals(spawnWorld)) {
|
2011-06-27 00:25:01 +02:00
|
|
|
this.spawnWorld = this.world.getServer().getWorlds().get(0).getName();
|
2011-06-16 05:24:31 +02:00
|
|
|
}
|
2011-06-27 00:25:01 +02:00
|
|
|
// CraftBukkit end
|
2011-06-08 19:40:40 +02:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (nbttagcompound.hasKey("SpawnX") && nbttagcompound.hasKey("SpawnY") && nbttagcompound.hasKey("SpawnZ")) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.c = new ChunkCoordinates(nbttagcompound.getInt("SpawnX"), nbttagcompound.getInt("SpawnY"), nbttagcompound.getInt("SpawnZ"));
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-09-15 18:36:27 +02:00
|
|
|
this.foodData.a(nbttagcompound);
|
2011-11-20 09:01:14 +01:00
|
|
|
this.abilities.b(nbttagcompound);
|
2012-07-29 09:33:13 +02:00
|
|
|
if (nbttagcompound.hasKey("EnderItems")) {
|
|
|
|
NBTTagList nbttaglist1 = nbttagcompound.getList("EnderItems");
|
|
|
|
|
|
|
|
this.enderChest.a(nbttaglist1);
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
|
|
|
super.b(nbttagcompound);
|
2011-11-30 00:17:43 +01:00
|
|
|
nbttagcompound.set("Inventory", this.inventory.a(new NBTTagList()));
|
|
|
|
nbttagcompound.setInt("Dimension", this.dimension);
|
|
|
|
nbttagcompound.setBoolean("Sleeping", this.sleeping);
|
|
|
|
nbttagcompound.setShort("SleepTimer", (short) this.sleepTicks);
|
|
|
|
nbttagcompound.setFloat("XpP", this.exp);
|
|
|
|
nbttagcompound.setInt("XpLevel", this.expLevel);
|
|
|
|
nbttagcompound.setInt("XpTotal", this.expTotal);
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.c != null) {
|
|
|
|
nbttagcompound.setInt("SpawnX", this.c.x);
|
|
|
|
nbttagcompound.setInt("SpawnY", this.c.y);
|
|
|
|
nbttagcompound.setInt("SpawnZ", this.c.z);
|
2011-10-01 19:37:20 +02:00
|
|
|
nbttagcompound.setString("SpawnWorld", spawnWorld); // CraftBukkit - fixes bed spawns for multiworld worlds
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2011-09-15 18:36:27 +02:00
|
|
|
this.foodData.b(nbttagcompound);
|
2011-11-20 09:01:14 +01:00
|
|
|
this.abilities.a(nbttagcompound);
|
2012-07-29 09:33:13 +02:00
|
|
|
nbttagcompound.set("EnderItems", this.enderChest.g());
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void openContainer(IInventory iinventory) {}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void startEnchanting(int i, int j, int k) {}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void startCrafting(int i, int j, int k) {}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void receive(Entity entity, int i) {}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public float getHeadHeight() {
|
2011-01-29 22:50:29 +01:00
|
|
|
return 0.12F;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void d_() {
|
2011-02-23 03:37:56 +01:00
|
|
|
this.height = 1.62F;
|
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean damageEntity(DamageSource damagesource, int i) {
|
2011-09-15 18:36:27 +02:00
|
|
|
if (this.abilities.isInvulnerable && !damagesource.ignoresInvulnerability()) {
|
2011-01-29 22:50:29 +01:00
|
|
|
return false;
|
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bq = 0;
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.getHealth() <= 0) {
|
2011-09-15 02:23:52 +02:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
if (this.isSleeping() && !this.world.isStatic) {
|
|
|
|
this.a(true, true, false);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 18:36:27 +02:00
|
|
|
Entity entity = damagesource.getEntity();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (damagesource.n()) {
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.world.difficulty == 0) {
|
2012-03-26 22:23:31 +02:00
|
|
|
return false; // CraftBukkit - i = 0 -> return false
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.world.difficulty == 1) {
|
2011-11-20 09:01:14 +01:00
|
|
|
i = i / 2 + 1;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-02-24 13:49:48 +01:00
|
|
|
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.world.difficulty == 3) {
|
2011-09-15 02:23:52 +02:00
|
|
|
i = i * 3 / 2;
|
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
|
2012-07-22 08:18:00 +02:00
|
|
|
if (false && i == 0) { // CraftBukkit - Don't filter out 0 damage
|
2011-09-15 02:23:52 +02:00
|
|
|
return false;
|
2012-07-22 08:18:00 +02:00
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
Entity entity1 = damagesource.getEntity();
|
2011-06-27 00:25:01 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (entity1 instanceof EntityArrow && ((EntityArrow) entity1).shooter != null) {
|
|
|
|
entity1 = ((EntityArrow) entity1).shooter;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (entity1 instanceof EntityLiving) {
|
|
|
|
this.a((EntityLiving) entity1, false);
|
2011-07-19 22:26:00 +02:00
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
this.a(StatisticList.x, i);
|
|
|
|
return super.damageEntity(damagesource, i);
|
2012-07-22 08:18:00 +02:00
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected int c(DamageSource damagesource, int i) {
|
|
|
|
int j = super.c(damagesource, i);
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
if (j <= 0) {
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
int k = EnchantmentManager.a(this.inventory, damagesource);
|
|
|
|
|
|
|
|
if (k > 20) {
|
|
|
|
k = 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (k > 0 && k <= 20) {
|
|
|
|
int l = 25 - k;
|
2012-07-29 09:33:13 +02:00
|
|
|
int i1 = j * l + this.aM;
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
j = i1 / 25;
|
2012-07-29 09:33:13 +02:00
|
|
|
this.aM = i1 % 25;
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected boolean h() {
|
2011-04-20 22:47:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
protected void a(EntityLiving entityliving, boolean flag) {
|
|
|
|
if (!(entityliving instanceof EntityCreeper) && !(entityliving instanceof EntityGhast)) {
|
|
|
|
if (entityliving instanceof EntityWolf) {
|
|
|
|
EntityWolf entitywolf = (EntityWolf) entityliving;
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
if (entitywolf.isTamed() && this.name.equals(entitywolf.getOwnerName())) {
|
2011-03-31 22:40:00 +02:00
|
|
|
return;
|
|
|
|
}
|
2011-02-24 13:49:48 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (!(entityliving instanceof EntityHuman) || this.h()) {
|
|
|
|
List list = this.world.a(EntityWolf.class, AxisAlignedBB.a().a(this.locX, this.locY, this.locZ, this.locX + 1.0D, this.locY + 1.0D, this.locZ + 1.0D).grow(16.0D, 4.0D, 16.0D));
|
2011-04-20 22:47:26 +02:00
|
|
|
Iterator iterator = list.iterator();
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
while (iterator.hasNext()) {
|
2012-07-29 09:33:13 +02:00
|
|
|
EntityWolf entitywolf1 = (EntityWolf) iterator.next();
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (entitywolf1.isTamed() && entitywolf1.m() == null && this.name.equals(entitywolf1.getOwnerName()) && (!flag || !entitywolf1.isSitting())) {
|
2011-06-27 00:25:01 +02:00
|
|
|
entitywolf1.setSitting(false);
|
|
|
|
entitywolf1.setTarget(entityliving);
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void k(int i) {
|
|
|
|
this.inventory.g(i);
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public int aO() {
|
|
|
|
return this.inventory.l();
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void d(DamageSource damagesource, int i) {
|
|
|
|
if (!damagesource.ignoresArmor() && this.aY()) {
|
2011-11-20 09:01:14 +01:00
|
|
|
i = 1 + i >> 1;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
i = this.b(damagesource, i);
|
2012-07-29 09:33:13 +02:00
|
|
|
i = this.c(damagesource, i);
|
|
|
|
this.j(damagesource.d());
|
2012-01-12 23:10:13 +01:00
|
|
|
this.health -= i;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void openFurnace(TileEntityFurnace tileentityfurnace) {}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void openDispenser(TileEntityDispenser tileentitydispenser) {}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
public void a(TileEntitySign tileentitysign) {}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void openBrewingStand(TileEntityBrewingStand tileentitybrewingstand) {}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void openTrade(IMerchant imerchant) {}
|
|
|
|
|
|
|
|
public void c(ItemStack itemstack) {}
|
|
|
|
|
|
|
|
public boolean m(Entity entity) {
|
|
|
|
if (entity.c(this)) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
ItemStack itemstack = this.bC();
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (itemstack != null && entity instanceof EntityLiving) {
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.abilities.canInstantlyBuild) {
|
|
|
|
itemstack = itemstack.cloneItemStack();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (itemstack.a((EntityLiving) entity)) {
|
|
|
|
// CraftBukkit - bypass infinite items; <= 0 -> == 0
|
|
|
|
if (itemstack.count == 0 && !this.abilities.canInstantlyBuild) {
|
|
|
|
this.bD();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
return false;
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public ItemStack bC() {
|
2011-04-20 19:05:14 +02:00
|
|
|
return this.inventory.getItemInHand();
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void bD() {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.inventory.setItem(this.inventory.itemInHandIndex, (ItemStack) null);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-03-22 21:39:39 +01:00
|
|
|
public double W() {
|
2011-01-29 22:50:29 +01:00
|
|
|
return (double) (this.height - 0.5F);
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void i() {
|
|
|
|
if (!this.bH || this.bI >= this.k() / 2 || this.bI < 0) {
|
|
|
|
this.bI = -1;
|
|
|
|
this.bH = true;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
public void attack(Entity entity) {
|
2012-07-29 09:33:13 +02:00
|
|
|
if (entity.an()) {
|
2012-03-01 11:49:23 +01:00
|
|
|
int i = this.inventory.a(entity);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (this.hasEffect(MobEffectList.INCREASE_DAMAGE)) {
|
|
|
|
i += 3 << this.getEffect(MobEffectList.INCREASE_DAMAGE).getAmplifier();
|
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (this.hasEffect(MobEffectList.WEAKNESS)) {
|
|
|
|
i -= 2 << this.getEffect(MobEffectList.WEAKNESS).getAmplifier();
|
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
int j = 0;
|
|
|
|
int k = 0;
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (entity instanceof EntityLiving) {
|
|
|
|
k = EnchantmentManager.a(this.inventory, (EntityLiving) entity);
|
|
|
|
j += EnchantmentManager.getKnockbackEnchantmentLevel(this.inventory, (EntityLiving) entity);
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (this.isSprinting()) {
|
|
|
|
++j;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (i > 0 || k > 0) {
|
2012-07-29 09:33:13 +02:00
|
|
|
boolean flag = this.fallDistance > 0.0F && !this.onGround && !this.f_() && !this.H() && !this.hasEffect(MobEffectList.BLINDNESS) && this.vehicle == null && entity instanceof EntityLiving;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (flag) {
|
|
|
|
i += this.random.nextInt(i / 2 + 2);
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
i += k;
|
|
|
|
boolean flag1 = entity.damageEntity(DamageSource.playerAttack(this), i);
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
// CraftBukkit start - Return when the damage fails so that the item will not lose durability
|
|
|
|
if (!flag1) {
|
|
|
|
return;
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2012-03-01 11:49:23 +01:00
|
|
|
// CraftBukkit end
|
|
|
|
|
|
|
|
if (flag1) {
|
|
|
|
if (j > 0) {
|
2012-07-29 09:33:13 +02:00
|
|
|
entity.g((double) (-MathHelper.sin(this.yaw * 3.1415927F / 180.0F) * (float) j * 0.5F), 0.1D, (double) (MathHelper.cos(this.yaw * 3.1415927F / 180.0F) * (float) j * 0.5F));
|
2012-03-01 11:49:23 +01:00
|
|
|
this.motX *= 0.6D;
|
|
|
|
this.motZ *= 0.6D;
|
|
|
|
this.setSprinting(false);
|
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (flag) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.b(entity);
|
2012-03-01 11:49:23 +01:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (k > 0) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.c(entity);
|
2012-03-01 11:49:23 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (i >= 18) {
|
|
|
|
this.a((Statistic) AchievementList.E);
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.j(entity);
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
ItemStack itemstack = this.bC();
|
2012-03-01 11:49:23 +01:00
|
|
|
|
|
|
|
if (itemstack != null && entity instanceof EntityLiving) {
|
|
|
|
itemstack.a((EntityLiving) entity, this);
|
|
|
|
// CraftBukkit - bypass infinite items; <= 0 -> == 0
|
|
|
|
if (itemstack.count == 0) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bD();
|
2012-03-01 11:49:23 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (entity instanceof EntityLiving) {
|
|
|
|
if (entity.isAlive()) {
|
|
|
|
this.a((EntityLiving) entity, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.a(StatisticList.w, i);
|
|
|
|
int l = EnchantmentManager.getFireAspectEnchantmentLevel(this.inventory, (EntityLiving) entity);
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (l > 0) {
|
|
|
|
// CraftBukkit start - raise a combust event when somebody hits with a fire enchanted item
|
|
|
|
EntityCombustByEntityEvent combustEvent = new EntityCombustByEntityEvent(this.getBukkitEntity(), entity.getBukkitEntity(), l * 4);
|
2012-07-22 08:18:00 +02:00
|
|
|
org.bukkit.Bukkit.getPluginManager().callEvent(combustEvent);
|
2012-01-09 00:46:07 +01:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (!combustEvent.isCancelled()) {
|
|
|
|
entity.setOnFire(combustEvent.getDuration());
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-11-29 08:10:05 +01:00
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.j(0.3F);
|
2012-03-01 11:49:23 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void b(Entity entity) {}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void c(Entity entity) {}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public void die() {
|
|
|
|
super.die();
|
2011-01-29 22:50:29 +01:00
|
|
|
this.defaultContainer.a(this);
|
|
|
|
if (this.activeContainer != null) {
|
|
|
|
this.activeContainer.a(this);
|
|
|
|
}
|
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
public boolean inBlock() {
|
|
|
|
return !this.sleeping && super.inBlock();
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public boolean bF() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
public EnumBedResult a(int i, int j, int k) {
|
2011-05-31 15:55:45 +02:00
|
|
|
if (!this.world.isStatic) {
|
2011-11-30 00:17:43 +01:00
|
|
|
if (this.isSleeping() || !this.isAlive()) {
|
|
|
|
return EnumBedResult.OTHER_PROBLEM;
|
2011-05-31 15:55:45 +02:00
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
if (!this.world.worldProvider.d()) {
|
2011-11-30 00:17:43 +01:00
|
|
|
return EnumBedResult.NOT_POSSIBLE_HERE;
|
2011-05-31 15:55:45 +02:00
|
|
|
}
|
|
|
|
|
2012-08-25 02:51:51 +02:00
|
|
|
if (this.world.s()) {
|
2011-11-30 00:17:43 +01:00
|
|
|
return EnumBedResult.NOT_POSSIBLE_NOW;
|
2011-05-31 15:55:45 +02:00
|
|
|
}
|
2011-04-20 19:05:14 +02:00
|
|
|
|
2011-05-31 15:55:45 +02:00
|
|
|
if (Math.abs(this.locX - (double) i) > 3.0D || Math.abs(this.locY - (double) j) > 2.0D || Math.abs(this.locZ - (double) k) > 3.0D) {
|
2011-11-30 00:17:43 +01:00
|
|
|
return EnumBedResult.TOO_FAR_AWAY;
|
2011-05-31 15:55:45 +02:00
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
double d0 = 8.0D;
|
|
|
|
double d1 = 5.0D;
|
2012-07-29 09:33:13 +02:00
|
|
|
List list = this.world.a(EntityMonster.class, AxisAlignedBB.a().a((double) i - d0, (double) j - d1, (double) k - d0, (double) i + d0, (double) j + d1, (double) k + d0));
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
if (!list.isEmpty()) {
|
2011-11-30 00:17:43 +01:00
|
|
|
return EnumBedResult.NOT_SAFE;
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2011-05-31 15:55:45 +02:00
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
|
2011-05-31 15:55:45 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
if (this.getBukkitEntity() instanceof Player) {
|
|
|
|
Player player = (Player) this.getBukkitEntity();
|
2011-06-27 00:25:01 +02:00
|
|
|
org.bukkit.block.Block bed = this.world.getWorld().getBlockAt(i, j, k);
|
2011-06-12 00:02:58 +02:00
|
|
|
|
2011-05-31 15:55:45 +02:00
|
|
|
PlayerBedEnterEvent event = new PlayerBedEnterEvent(player, bed);
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
2011-02-23 03:37:56 +01:00
|
|
|
|
2011-05-31 15:55:45 +02:00
|
|
|
if (event.isCancelled()) {
|
2011-11-30 00:17:43 +01:00
|
|
|
return EnumBedResult.OTHER_PROBLEM;
|
2011-05-31 15:55:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-02-23 03:37:56 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.a(0.2F, 0.2F);
|
2011-05-31 15:55:45 +02:00
|
|
|
this.height = 0.2F;
|
|
|
|
if (this.world.isLoaded(i, j, k)) {
|
|
|
|
int l = this.world.getData(i, j, k);
|
2012-07-29 09:33:13 +02:00
|
|
|
int i1 = BlockBed.d(l);
|
2011-05-31 15:55:45 +02:00
|
|
|
float f = 0.5F;
|
|
|
|
float f1 = 0.5F;
|
|
|
|
|
|
|
|
switch (i1) {
|
|
|
|
case 0:
|
|
|
|
f1 = 0.9F;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
f = 0.1F;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
f1 = 0.1F;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
f = 0.9F;
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
2011-05-31 15:55:45 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.b(i1);
|
2011-05-31 15:55:45 +02:00
|
|
|
this.setPosition((double) ((float) i + f), (double) ((float) j + 0.9375F), (double) ((float) k + f1));
|
2011-02-23 03:37:56 +01:00
|
|
|
} else {
|
2011-05-31 15:55:45 +02:00
|
|
|
this.setPosition((double) ((float) i + 0.5F), (double) ((float) j + 0.9375F), (double) ((float) k + 0.5F));
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
2011-05-31 15:55:45 +02:00
|
|
|
|
|
|
|
this.sleeping = true;
|
|
|
|
this.sleepTicks = 0;
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bT = new ChunkCoordinates(i, j, k);
|
2011-05-31 15:55:45 +02:00
|
|
|
this.motX = this.motZ = this.motY = 0.0D;
|
|
|
|
if (!this.world.isStatic) {
|
|
|
|
this.world.everyoneSleeping();
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
return EnumBedResult.OK;
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
private void b(int i) {
|
|
|
|
this.bU = 0.0F;
|
|
|
|
this.bV = 0.0F;
|
2011-02-23 03:37:56 +01:00
|
|
|
switch (i) {
|
|
|
|
case 0:
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bV = -1.8F;
|
2011-02-23 03:37:56 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bU = 1.8F;
|
2011-02-23 03:37:56 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bV = 1.8F;
|
2011-02-23 03:37:56 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bU = -1.8F;
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
public void a(boolean flag, boolean flag1, boolean flag2) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.a(0.6F, 1.8F);
|
|
|
|
this.d_();
|
|
|
|
ChunkCoordinates chunkcoordinates = this.bT;
|
|
|
|
ChunkCoordinates chunkcoordinates1 = this.bT;
|
2011-02-23 03:37:56 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (chunkcoordinates != null && this.world.getTypeId(chunkcoordinates.x, chunkcoordinates.y, chunkcoordinates.z) == Block.BED.id) {
|
|
|
|
BlockBed.a(this.world, chunkcoordinates.x, chunkcoordinates.y, chunkcoordinates.z, false);
|
2012-07-29 09:33:13 +02:00
|
|
|
chunkcoordinates1 = BlockBed.b(this.world, chunkcoordinates.x, chunkcoordinates.y, chunkcoordinates.z, 0);
|
2011-03-31 22:40:00 +02:00
|
|
|
if (chunkcoordinates1 == null) {
|
2011-04-20 19:05:14 +02:00
|
|
|
chunkcoordinates1 = new ChunkCoordinates(chunkcoordinates.x, chunkcoordinates.y + 1, chunkcoordinates.z);
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition((double) ((float) chunkcoordinates1.x + 0.5F), (double) ((float) chunkcoordinates1.y + this.height + 0.1F), (double) ((float) chunkcoordinates1.z + 0.5F));
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
this.sleeping = false;
|
|
|
|
if (!this.world.isStatic && flag1) {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.world.everyoneSleeping();
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2011-04-07 20:26:51 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
if (this.getBukkitEntity() instanceof Player) {
|
|
|
|
Player player = (Player) this.getBukkitEntity();
|
2011-05-14 16:29:42 +02:00
|
|
|
|
2011-04-12 02:07:20 +02:00
|
|
|
org.bukkit.block.Block bed;
|
|
|
|
if (chunkcoordinates != null) {
|
2011-06-27 00:25:01 +02:00
|
|
|
bed = this.world.getWorld().getBlockAt(chunkcoordinates.x, chunkcoordinates.y, chunkcoordinates.z);
|
2011-04-12 02:07:20 +02:00
|
|
|
} else {
|
2011-06-27 00:25:01 +02:00
|
|
|
bed = this.world.getWorld().getBlockAt(player.getLocation());
|
2011-04-12 02:07:20 +02:00
|
|
|
}
|
2011-05-14 16:29:42 +02:00
|
|
|
|
2011-04-07 20:26:51 +02:00
|
|
|
PlayerBedLeaveEvent event = new PlayerBedLeaveEvent(player, bed);
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
2011-04-07 20:26:51 +02:00
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-02-23 03:37:56 +01:00
|
|
|
if (flag) {
|
|
|
|
this.sleepTicks = 0;
|
|
|
|
} else {
|
|
|
|
this.sleepTicks = 100;
|
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
|
|
|
|
if (flag2) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.setRespawnPosition(this.bT);
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
private boolean l() {
|
|
|
|
return this.world.getTypeId(this.bT.x, this.bT.y, this.bT.z) == Block.BED.id;
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public static ChunkCoordinates getBed(World world, ChunkCoordinates chunkcoordinates) {
|
2012-07-29 09:33:13 +02:00
|
|
|
IChunkProvider ichunkprovider = world.F();
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
ichunkprovider.getChunkAt(chunkcoordinates.x - 3 >> 4, chunkcoordinates.z - 3 >> 4);
|
|
|
|
ichunkprovider.getChunkAt(chunkcoordinates.x + 3 >> 4, chunkcoordinates.z - 3 >> 4);
|
|
|
|
ichunkprovider.getChunkAt(chunkcoordinates.x - 3 >> 4, chunkcoordinates.z + 3 >> 4);
|
|
|
|
ichunkprovider.getChunkAt(chunkcoordinates.x + 3 >> 4, chunkcoordinates.z + 3 >> 4);
|
|
|
|
if (world.getTypeId(chunkcoordinates.x, chunkcoordinates.y, chunkcoordinates.z) != Block.BED.id) {
|
2011-03-31 22:40:00 +02:00
|
|
|
return null;
|
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
ChunkCoordinates chunkcoordinates1 = BlockBed.b(world, chunkcoordinates.x, chunkcoordinates.y, chunkcoordinates.z, 0);
|
2011-03-31 22:40:00 +02:00
|
|
|
|
|
|
|
return chunkcoordinates1;
|
|
|
|
}
|
2011-02-23 03:37:56 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public boolean isSleeping() {
|
2011-03-31 22:40:00 +02:00
|
|
|
return this.sleeping;
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public boolean isDeeplySleeping() {
|
2011-02-23 03:37:56 +01:00
|
|
|
return this.sleeping && this.sleepTicks >= 100;
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void c(String s) {}
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
public ChunkCoordinates getBed() {
|
2012-07-29 09:33:13 +02:00
|
|
|
return this.c;
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void setRespawnPosition(ChunkCoordinates chunkcoordinates) {
|
2011-03-31 22:40:00 +02:00
|
|
|
if (chunkcoordinates != null) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.c = new ChunkCoordinates(chunkcoordinates);
|
|
|
|
this.spawnWorld = this.world.worldData.getName();
|
2011-03-31 22:40:00 +02:00
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.c = null;
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void a(Statistic statistic) {
|
|
|
|
this.a(statistic, 1);
|
|
|
|
}
|
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
public void a(Statistic statistic, int i) {}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected void aZ() {
|
|
|
|
super.aZ();
|
2011-04-20 22:47:26 +02:00
|
|
|
this.a(StatisticList.u, 1);
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.isSprinting()) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.j(0.8F);
|
2011-09-15 02:23:52 +02:00
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.j(0.2F);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void e(float f, float f1) {
|
2011-03-31 22:40:00 +02:00
|
|
|
double d0 = this.locX;
|
|
|
|
double d1 = this.locY;
|
|
|
|
double d2 = this.locZ;
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.abilities.isFlying && this.vehicle == null) {
|
2011-09-15 02:23:52 +02:00
|
|
|
double d3 = this.motY;
|
2012-07-29 09:33:13 +02:00
|
|
|
float f2 = this.aH;
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
this.aH = this.abilities.a();
|
|
|
|
super.e(f, f1);
|
2011-09-15 02:23:52 +02:00
|
|
|
this.motY = d3 * 0.6D;
|
2012-07-29 09:33:13 +02:00
|
|
|
this.aH = f2;
|
2011-09-15 02:23:52 +02:00
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
super.e(f, f1);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
this.checkMovement(this.locX - d0, this.locY - d1, this.locZ - d2);
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
|
2012-02-29 22:31:04 +01:00
|
|
|
public void checkMovement(double d0, double d1, double d2) {
|
2011-04-20 22:47:26 +02:00
|
|
|
if (this.vehicle == null) {
|
|
|
|
int i;
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
if (this.a(Material.WATER)) {
|
2012-01-14 21:03:48 +01:00
|
|
|
i = Math.round(MathHelper.sqrt(d0 * d0 + d1 * d1 + d2 * d2) * 100.0F);
|
2011-04-20 22:47:26 +02:00
|
|
|
if (i > 0) {
|
|
|
|
this.a(StatisticList.q, i);
|
2012-07-29 09:33:13 +02:00
|
|
|
this.j(0.015F * (float) i * 0.01F);
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
} else if (this.H()) {
|
2012-01-14 21:03:48 +01:00
|
|
|
i = Math.round(MathHelper.sqrt(d0 * d0 + d2 * d2) * 100.0F);
|
2011-04-20 22:47:26 +02:00
|
|
|
if (i > 0) {
|
|
|
|
this.a(StatisticList.m, i);
|
2012-07-29 09:33:13 +02:00
|
|
|
this.j(0.015F * (float) i * 0.01F);
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
2012-07-29 09:33:13 +02:00
|
|
|
} else if (this.f_()) {
|
2011-04-20 22:47:26 +02:00
|
|
|
if (d1 > 0.0D) {
|
|
|
|
this.a(StatisticList.o, (int) Math.round(d1 * 100.0D));
|
|
|
|
}
|
|
|
|
} else if (this.onGround) {
|
2012-01-14 21:03:48 +01:00
|
|
|
i = Math.round(MathHelper.sqrt(d0 * d0 + d2 * d2) * 100.0F);
|
2011-04-20 22:47:26 +02:00
|
|
|
if (i > 0) {
|
|
|
|
this.a(StatisticList.l, i);
|
2011-09-24 23:03:31 +02:00
|
|
|
if (this.isSprinting()) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.j(0.099999994F * (float) i * 0.01F);
|
2011-09-15 02:23:52 +02:00
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.j(0.01F * (float) i * 0.01F);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
} else {
|
2012-01-14 21:03:48 +01:00
|
|
|
i = Math.round(MathHelper.sqrt(d0 * d0 + d2 * d2) * 100.0F);
|
2011-04-20 22:47:26 +02:00
|
|
|
if (i > 25) {
|
|
|
|
this.a(StatisticList.p, i);
|
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
private void k(double d0, double d1, double d2) {
|
2011-04-20 22:47:26 +02:00
|
|
|
if (this.vehicle != null) {
|
2012-01-14 21:03:48 +01:00
|
|
|
int i = Math.round(MathHelper.sqrt(d0 * d0 + d1 * d1 + d2 * d2) * 100.0F);
|
2011-04-20 22:47:26 +02:00
|
|
|
|
2011-03-31 22:40:00 +02:00
|
|
|
if (i > 0) {
|
2011-04-20 22:47:26 +02:00
|
|
|
if (this.vehicle instanceof EntityMinecart) {
|
|
|
|
this.a(StatisticList.r, i);
|
2012-07-29 09:33:13 +02:00
|
|
|
if (this.d == null) {
|
|
|
|
this.d = new ChunkCoordinates(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ));
|
|
|
|
} else if ((double) this.d.e(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ)) >= 1000000.0D) {
|
2011-09-15 02:23:52 +02:00
|
|
|
this.a((Statistic) AchievementList.q, 1);
|
2011-04-20 22:47:26 +02:00
|
|
|
}
|
|
|
|
} else if (this.vehicle instanceof EntityBoat) {
|
|
|
|
this.a(StatisticList.s, i);
|
|
|
|
} else if (this.vehicle instanceof EntityPig) {
|
|
|
|
this.a(StatisticList.t, i);
|
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
protected void a(float f) {
|
2011-09-15 18:36:27 +02:00
|
|
|
if (!this.abilities.canFly) {
|
2011-09-15 02:23:52 +02:00
|
|
|
if (f >= 2.0F) {
|
|
|
|
this.a(StatisticList.n, (int) Math.round((double) f * 100.0D));
|
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
super.a(f);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void a(EntityLiving entityliving) {
|
2011-04-20 22:47:26 +02:00
|
|
|
if (entityliving instanceof EntityMonster) {
|
|
|
|
this.a((Statistic) AchievementList.s);
|
|
|
|
}
|
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void aa() {
|
|
|
|
if (this.bW > 0) {
|
|
|
|
this.bW = 10;
|
2011-05-26 14:48:22 +02:00
|
|
|
} else {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bX = true;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
public void giveExp(int i) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.bE += i;
|
2012-01-12 23:10:13 +01:00
|
|
|
int j = Integer.MAX_VALUE - this.expTotal;
|
|
|
|
|
|
|
|
if (i > j) {
|
|
|
|
i = j;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.exp += (float) i / (float) this.getExpToLevel();
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-01-12 23:10:13 +01:00
|
|
|
for (this.expTotal += i; this.exp >= 1.0F; this.exp /= (float) this.getExpToLevel()) {
|
|
|
|
this.exp = (this.exp - 1.0F) * (float) this.getExpToLevel();
|
2011-11-30 00:17:43 +01:00
|
|
|
this.levelUp();
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
public void levelDown(int i) {
|
|
|
|
this.expLevel -= i;
|
|
|
|
if (this.expLevel < 0) {
|
|
|
|
this.expLevel = 0;
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-01-12 23:10:13 +01:00
|
|
|
public int getExpToLevel() {
|
2012-07-29 09:33:13 +02:00
|
|
|
return this.expLevel >= 30 ? 62 + (this.expLevel - 30) * 7 : (this.expLevel >= 15 ? 17 + (this.expLevel - 15) * 3 : 17);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2011-11-30 00:17:43 +01:00
|
|
|
private void levelUp() {
|
|
|
|
++this.expLevel;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void j(float f) {
|
2011-09-15 18:36:27 +02:00
|
|
|
if (!this.abilities.isInvulnerable) {
|
2011-09-15 02:23:52 +02:00
|
|
|
if (!this.world.isStatic) {
|
2011-09-15 18:36:27 +02:00
|
|
|
this.foodData.a(f);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-15 18:36:27 +02:00
|
|
|
public FoodMetaData getFoodData() {
|
|
|
|
return this.foodData;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public boolean e(boolean flag) {
|
|
|
|
return (flag || this.foodData.c()) && !this.abilities.isInvulnerable;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public boolean bM() {
|
2011-11-20 09:01:14 +01:00
|
|
|
return this.getHealth() > 0 && this.getHealth() < this.getMaxHealth();
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void a(ItemStack itemstack, int i) {
|
2012-07-29 09:33:13 +02:00
|
|
|
if (itemstack != this.e) {
|
|
|
|
this.e = itemstack;
|
|
|
|
this.f = i;
|
2011-09-15 02:23:52 +02:00
|
|
|
if (!this.world.isStatic) {
|
2012-07-29 09:33:13 +02:00
|
|
|
this.c(true);
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public boolean e(int i, int j, int k) {
|
|
|
|
return this.abilities.mayBuild;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
protected int getExpValue(EntityHuman entityhuman) {
|
2011-11-30 00:17:43 +01:00
|
|
|
int i = this.expLevel * 7;
|
2011-11-20 09:01:14 +01:00
|
|
|
|
|
|
|
return i > 100 ? 100 : i;
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
protected boolean alwaysGivesExp() {
|
2011-09-15 02:23:52 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
public String getLocalizedName() {
|
2011-09-15 02:23:52 +02:00
|
|
|
return this.name;
|
|
|
|
}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void c(int i) {}
|
2011-11-20 09:01:14 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
public void copyTo(EntityHuman entityhuman, boolean flag) {
|
|
|
|
if (flag) {
|
|
|
|
this.inventory.b(entityhuman.inventory);
|
|
|
|
this.health = entityhuman.health;
|
|
|
|
this.foodData = entityhuman.foodData;
|
|
|
|
this.expLevel = entityhuman.expLevel;
|
|
|
|
this.expTotal = entityhuman.expTotal;
|
|
|
|
this.exp = entityhuman.exp;
|
|
|
|
this.bE = entityhuman.bE;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.enderChest = entityhuman.enderChest;
|
2011-11-20 09:01:14 +01:00
|
|
|
}
|
2012-03-01 11:49:23 +01:00
|
|
|
|
2012-07-29 09:33:13 +02:00
|
|
|
protected boolean e_() {
|
2012-03-01 11:49:23 +01:00
|
|
|
return !this.abilities.isFlying;
|
|
|
|
}
|
2012-03-22 21:39:39 +01:00
|
|
|
|
|
|
|
public void updateAbilities() {}
|
2012-07-29 09:33:13 +02:00
|
|
|
|
|
|
|
public void a(EnumGamemode enumgamemode) {}
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
return this.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public LocaleLanguage getLocale() {
|
|
|
|
return LocaleLanguage.a();
|
|
|
|
}
|
|
|
|
|
|
|
|
public String a(String s, Object... aobject) {
|
|
|
|
return this.getLocale().a(s, aobject);
|
|
|
|
}
|
|
|
|
|
|
|
|
public InventoryEnderChest getEnderChest() {
|
|
|
|
return this.enderChest;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|