2011-02-11 23:09:26 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-10-17 14:38:03 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
import org.bukkit.event.player.PlayerPickupItemEvent;
|
2012-01-14 23:02:10 +01:00
|
|
|
// CraftBukkit end
|
2011-02-11 23:09:26 +01:00
|
|
|
|
|
|
|
public class EntityItem extends Entity {
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
public ItemStack itemStack;
|
2012-01-14 21:03:48 +01:00
|
|
|
public int age = 0;
|
2011-04-20 19:05:14 +02:00
|
|
|
public int pickupDelay;
|
2012-03-01 11:49:23 +01:00
|
|
|
private int e = 5;
|
2011-02-11 23:09:26 +01:00
|
|
|
public float d = (float) (Math.random() * 3.141592653589793D * 2.0D);
|
2011-04-30 22:51:47 +02:00
|
|
|
private int lastTick = (int) (System.currentTimeMillis() / 50); // CraftBukkit
|
2011-02-11 23:09:26 +01:00
|
|
|
|
|
|
|
public EntityItem(World world, double d0, double d1, double d2, ItemStack itemstack) {
|
|
|
|
super(world);
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.25F, 0.25F);
|
2011-11-30 00:17:43 +01:00
|
|
|
this.height = this.length / 2.0F;
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition(d0, d1, d2);
|
|
|
|
this.itemStack = itemstack;
|
2012-01-20 17:40:27 +01:00
|
|
|
// CraftBukkit start - infinite item fix & nullcheck
|
|
|
|
if (this.itemStack == null) {
|
|
|
|
throw new IllegalArgumentException("Can't create an EntityItem for a null item");
|
|
|
|
}
|
2011-06-17 07:12:49 +02:00
|
|
|
if (this.itemStack.count <= -1) {
|
|
|
|
this.itemStack.count = 1;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-02-11 23:09:26 +01:00
|
|
|
this.yaw = (float) (Math.random() * 360.0D);
|
|
|
|
this.motX = (double) ((float) (Math.random() * 0.20000000298023224D - 0.10000000149011612D));
|
|
|
|
this.motY = 0.20000000298023224D;
|
|
|
|
this.motZ = (double) ((float) (Math.random() * 0.20000000298023224D - 0.10000000149011612D));
|
2011-03-31 22:40:00 +02:00
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
protected boolean g_() {
|
2011-03-31 22:40:00 +02:00
|
|
|
return false;
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public EntityItem(World world) {
|
|
|
|
super(world);
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.25F, 0.25F);
|
2011-11-30 00:17:43 +01:00
|
|
|
this.height = this.length / 2.0F;
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
protected void b() {}
|
2011-02-11 23:09:26 +01:00
|
|
|
|
2012-03-22 21:39:39 +01:00
|
|
|
public void F_() {
|
|
|
|
super.F_();
|
2011-04-30 22:51:47 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
int currentTick = (int) (System.currentTimeMillis() / 50);
|
|
|
|
this.pickupDelay -= (currentTick - this.lastTick);
|
|
|
|
this.lastTick = currentTick;
|
|
|
|
// CraftBukkit end
|
2011-02-11 23:09:26 +01:00
|
|
|
|
|
|
|
this.lastX = this.locX;
|
|
|
|
this.lastY = this.locY;
|
|
|
|
this.lastZ = this.locZ;
|
|
|
|
this.motY -= 0.03999999910593033D;
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.world.getMaterial(MathHelper.floor(this.locX), MathHelper.floor(this.locY), MathHelper.floor(this.locZ)) == Material.LAVA) {
|
2011-02-11 23:09:26 +01:00
|
|
|
this.motY = 0.20000000298023224D;
|
|
|
|
this.motX = (double) ((this.random.nextFloat() - this.random.nextFloat()) * 0.2F);
|
|
|
|
this.motZ = (double) ((this.random.nextFloat() - this.random.nextFloat()) * 0.2F);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.world.makeSound(this, "random.fizz", 0.4F, 2.0F + this.random.nextFloat() * 0.4F);
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
|
2011-05-28 22:50:08 +02:00
|
|
|
this.g(this.locX, (this.boundingBox.b + this.boundingBox.e) / 2.0D, this.locZ);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.move(this.motX, this.motY, this.motZ);
|
2011-02-11 23:09:26 +01:00
|
|
|
float f = 0.98F;
|
|
|
|
|
|
|
|
if (this.onGround) {
|
|
|
|
f = 0.58800006F;
|
2011-04-20 19:05:14 +02:00
|
|
|
int i = this.world.getTypeId(MathHelper.floor(this.locX), MathHelper.floor(this.boundingBox.b) - 1, MathHelper.floor(this.locZ));
|
2011-02-11 23:09:26 +01:00
|
|
|
|
|
|
|
if (i > 0) {
|
|
|
|
f = Block.byId[i].frictionFactor * 0.98F;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.motX *= (double) f;
|
|
|
|
this.motY *= 0.9800000190734863D;
|
|
|
|
this.motZ *= (double) f;
|
|
|
|
if (this.onGround) {
|
|
|
|
this.motY *= -0.5D;
|
|
|
|
}
|
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
++this.age;
|
|
|
|
if (this.age >= 6000) {
|
2011-10-17 14:38:03 +02:00
|
|
|
// CraftBukkit start
|
2012-01-14 21:03:48 +01:00
|
|
|
if (CraftEventFactory.callItemDespawnEvent(this).isCancelled()) {
|
|
|
|
this.age = 0;
|
2011-10-17 14:38:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-04-20 19:05:14 +02:00
|
|
|
this.die();
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-01 11:49:23 +01:00
|
|
|
public void k() {
|
|
|
|
this.age = 4800;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean h_() {
|
2011-02-11 23:09:26 +01:00
|
|
|
return this.world.a(this.boundingBox, Material.WATER, this);
|
|
|
|
}
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
protected void burn(int i) {
|
2011-09-15 18:36:27 +02:00
|
|
|
this.damageEntity(DamageSource.FIRE, i);
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public boolean damageEntity(DamageSource damagesource, int i) {
|
2012-03-22 21:39:39 +01:00
|
|
|
this.aW();
|
2012-03-01 11:49:23 +01:00
|
|
|
this.e -= i;
|
|
|
|
if (this.e <= 0) {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.die();
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
2012-03-01 11:49:23 +01:00
|
|
|
nbttagcompound.setShort("Health", (short) ((byte) this.e));
|
2012-01-14 21:03:48 +01:00
|
|
|
nbttagcompound.setShort("Age", (short) this.age);
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.itemStack != null) // CraftBukkit - Nullchex!
|
|
|
|
nbttagcompound.setCompound("Item", this.itemStack.save(new NBTTagCompound()));
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
2012-03-01 11:49:23 +01:00
|
|
|
this.e = nbttagcompound.getShort("Health") & 255;
|
2012-01-14 21:03:48 +01:00
|
|
|
this.age = nbttagcompound.getShort("Age");
|
2011-11-30 00:17:43 +01:00
|
|
|
NBTTagCompound nbttagcompound1 = nbttagcompound.getCompound("Item");
|
2011-02-11 23:09:26 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
this.itemStack = ItemStack.a(nbttagcompound1);
|
|
|
|
if (this.itemStack == null) {
|
|
|
|
this.die();
|
|
|
|
}
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public void a_(EntityHuman entityhuman) {
|
2012-01-20 17:40:27 +01:00
|
|
|
if ((!this.world.isStatic) && (this.itemStack != null)) { // CraftBukkit - nullcheck
|
2011-04-20 19:05:14 +02:00
|
|
|
int i = this.itemStack.count;
|
2011-02-11 23:09:26 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2011-07-02 20:05:31 +02:00
|
|
|
int canHold = entityhuman.inventory.canHold(this.itemStack);
|
|
|
|
int remaining = this.itemStack.count - canHold;
|
|
|
|
if (this.pickupDelay <= 0 && canHold > 0) {
|
|
|
|
this.itemStack.count = canHold;
|
|
|
|
PlayerPickupItemEvent event = new PlayerPickupItemEvent((org.bukkit.entity.Player) entityhuman.getBukkitEntity(), (org.bukkit.entity.Item) this.getBukkitEntity(), remaining);
|
2011-06-26 10:53:45 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
2011-07-02 20:05:31 +02:00
|
|
|
this.itemStack.count = canHold + remaining;
|
2011-02-11 23:09:26 +01:00
|
|
|
|
2011-06-23 07:08:56 +02:00
|
|
|
if (event.isCancelled()) {
|
2011-04-20 19:05:14 +02:00
|
|
|
return;
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
2011-04-20 22:47:26 +02:00
|
|
|
|
2011-06-26 10:53:45 +02:00
|
|
|
// Possibly < 0; fix here so we do not have to modify code below
|
|
|
|
this.pickupDelay = 0;
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
if (this.pickupDelay == 0 && entityhuman.inventory.pickup(this.itemStack)) {
|
2011-04-20 22:47:26 +02:00
|
|
|
if (this.itemStack.id == Block.LOG.id) {
|
|
|
|
entityhuman.a((Statistic) AchievementList.g);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.itemStack.id == Item.LEATHER.id) {
|
|
|
|
entityhuman.a((Statistic) AchievementList.t);
|
|
|
|
}
|
|
|
|
|
2011-11-20 09:01:14 +01:00
|
|
|
if (this.itemStack.id == Item.DIAMOND.id) {
|
|
|
|
entityhuman.a((Statistic) AchievementList.w);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.itemStack.id == Item.BLAZE_ROD.id) {
|
|
|
|
entityhuman.a((Statistic) AchievementList.z);
|
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.world.makeSound(this, "random.pop", 0.2F, ((this.random.nextFloat() - this.random.nextFloat()) * 0.7F + 1.0F) * 2.0F);
|
|
|
|
entityhuman.receive(this, i);
|
2011-05-26 14:48:22 +02:00
|
|
|
if (this.itemStack.count <= 0) {
|
|
|
|
this.die();
|
|
|
|
}
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-09-15 02:23:52 +02:00
|
|
|
|
2012-01-14 21:03:48 +01:00
|
|
|
public String getLocalizedName() {
|
2012-02-29 22:31:04 +01:00
|
|
|
if (this.itemStack == null) return LocaleI18n.get("item.unknown"); // CraftBukkit - nullcheck
|
|
|
|
return LocaleI18n.get("item." + this.itemStack.k());
|
2011-09-15 02:23:52 +02:00
|
|
|
}
|
2012-03-01 11:49:23 +01:00
|
|
|
|
|
|
|
public boolean k_() {
|
|
|
|
return false;
|
|
|
|
}
|
2011-02-11 23:09:26 +01:00
|
|
|
}
|