2011-01-12 06:48:19 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2011-01-21 06:54:30 +01:00
|
|
|
// CraftBukkit start
|
2011-06-18 17:10:31 +02:00
|
|
|
import org.bukkit.craftbukkit.entity.CraftLivingEntity;
|
|
|
|
import org.bukkit.entity.Projectile;
|
2011-07-19 22:26:00 +02:00
|
|
|
import org.bukkit.event.entity.EntityDamageByEntityEvent;
|
2011-01-12 06:48:19 +01:00
|
|
|
import org.bukkit.event.entity.EntityDamageEvent;
|
2011-07-14 19:46:02 +02:00
|
|
|
import org.bukkit.event.entity.ProjectileHitEvent;
|
2011-06-26 17:02:47 +02:00
|
|
|
import org.bukkit.event.player.PlayerPickupItemEvent;
|
2011-01-21 06:54:30 +01:00
|
|
|
// CraftBukkit end
|
2011-01-12 06:48:19 +01:00
|
|
|
|
|
|
|
public class EntityArrow extends Entity {
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
private int e = -1;
|
2011-05-26 14:48:22 +02:00
|
|
|
private int f = -1;
|
2011-09-15 02:23:52 +02:00
|
|
|
private int g = -1;
|
2011-05-26 14:48:22 +02:00
|
|
|
private int h = 0;
|
2011-09-15 02:23:52 +02:00
|
|
|
private int i = 0;
|
2011-06-27 00:25:01 +02:00
|
|
|
private boolean inGround = false;
|
|
|
|
public boolean fromPlayer = false;
|
|
|
|
public int shake = 0;
|
2011-09-15 02:23:52 +02:00
|
|
|
public Entity shooter;
|
|
|
|
private int k;
|
|
|
|
private int l = 0;
|
|
|
|
public boolean d = false;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-12 06:48:19 +01:00
|
|
|
public EntityArrow(World world) {
|
|
|
|
super(world);
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.5F, 0.5F);
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public EntityArrow(World world, double d0, double d1, double d2) {
|
2011-01-30 16:15:17 +01:00
|
|
|
super(world);
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.5F, 0.5F);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition(d0, d1, d2);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.height = 0.0F;
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public EntityArrow(World world, EntityLiving entityliving, float f) {
|
2011-01-30 16:15:17 +01:00
|
|
|
super(world);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.shooter = entityliving;
|
2011-06-27 00:25:01 +02:00
|
|
|
this.fromPlayer = entityliving instanceof EntityHuman;
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.5F, 0.5F);
|
2011-06-30 00:02:25 +02:00
|
|
|
this.setPositionRotation(entityliving.locX, entityliving.locY + (double) entityliving.t(), entityliving.locZ, entityliving.yaw, entityliving.pitch);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.locX -= (double) (MathHelper.cos(this.yaw / 180.0F * 3.1415927F) * 0.16F);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.locY -= 0.10000000149011612D;
|
2011-04-20 19:05:14 +02:00
|
|
|
this.locZ -= (double) (MathHelper.sin(this.yaw / 180.0F * 3.1415927F) * 0.16F);
|
|
|
|
this.setPosition(this.locX, this.locY, this.locZ);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.height = 0.0F;
|
2011-04-20 19:05:14 +02:00
|
|
|
this.motX = (double) (-MathHelper.sin(this.yaw / 180.0F * 3.1415927F) * MathHelper.cos(this.pitch / 180.0F * 3.1415927F));
|
|
|
|
this.motZ = (double) (MathHelper.cos(this.yaw / 180.0F * 3.1415927F) * MathHelper.cos(this.pitch / 180.0F * 3.1415927F));
|
|
|
|
this.motY = (double) (-MathHelper.sin(this.pitch / 180.0F * 3.1415927F));
|
2011-09-15 02:23:52 +02:00
|
|
|
this.a(this.motX, this.motY, this.motZ, f * 1.5F, 1.0F);
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
protected void b() {}
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public void a(double d0, double d1, double d2, float f, float f1) {
|
|
|
|
float f2 = MathHelper.a(d0 * d0 + d1 * d1 + d2 * d2);
|
|
|
|
|
|
|
|
d0 /= (double) f2;
|
|
|
|
d1 /= (double) f2;
|
|
|
|
d2 /= (double) f2;
|
|
|
|
d0 += this.random.nextGaussian() * 0.007499999832361937D * (double) f1;
|
|
|
|
d1 += this.random.nextGaussian() * 0.007499999832361937D * (double) f1;
|
|
|
|
d2 += this.random.nextGaussian() * 0.007499999832361937D * (double) f1;
|
|
|
|
d0 *= (double) f;
|
|
|
|
d1 *= (double) f;
|
|
|
|
d2 *= (double) f;
|
|
|
|
this.motX = d0;
|
|
|
|
this.motY = d1;
|
|
|
|
this.motZ = d2;
|
|
|
|
float f3 = MathHelper.a(d0 * d0 + d2 * d2);
|
|
|
|
|
|
|
|
this.lastYaw = this.yaw = (float) (Math.atan2(d0, d2) * 180.0D / 3.1415927410125732D);
|
|
|
|
this.lastPitch = this.pitch = (float) (Math.atan2(d1, (double) f3) * 180.0D / 3.1415927410125732D);
|
2011-09-15 02:23:52 +02:00
|
|
|
this.k = 0;
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public void s_() {
|
|
|
|
super.s_();
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.lastPitch == 0.0F && this.lastYaw == 0.0F) {
|
|
|
|
float f = MathHelper.a(this.motX * this.motX + this.motZ * this.motZ);
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.lastYaw = this.yaw = (float) (Math.atan2(this.motX, this.motZ) * 180.0D / 3.1415927410125732D);
|
|
|
|
this.lastPitch = this.pitch = (float) (Math.atan2(this.motY, (double) f) * 180.0D / 3.1415927410125732D);
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
int i = this.world.getTypeId(this.e, this.f, this.g);
|
2011-05-26 14:48:22 +02:00
|
|
|
|
|
|
|
if (i > 0) {
|
2011-09-15 02:23:52 +02:00
|
|
|
Block.byId[i].a((IBlockAccess) this.world, this.e, this.f, this.g);
|
|
|
|
AxisAlignedBB axisalignedbb = Block.byId[i].e(this.world, this.e, this.f, this.g);
|
2011-05-31 15:55:45 +02:00
|
|
|
|
|
|
|
if (axisalignedbb != null && axisalignedbb.a(Vec3D.create(this.locX, this.locY, this.locZ))) {
|
2011-06-27 00:25:01 +02:00
|
|
|
this.inGround = true;
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
if (this.shake > 0) {
|
|
|
|
--this.shake;
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
if (this.inGround) {
|
2011-09-15 02:23:52 +02:00
|
|
|
i = this.world.getTypeId(this.e, this.f, this.g);
|
|
|
|
int j = this.world.getData(this.e, this.f, this.g);
|
2011-05-26 14:48:22 +02:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (i == this.h && j == this.i) {
|
|
|
|
++this.k;
|
|
|
|
if (this.k == 1200) {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.die();
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
2011-05-26 14:48:22 +02:00
|
|
|
} else {
|
2011-06-27 00:25:01 +02:00
|
|
|
this.inGround = false;
|
2011-05-26 14:48:22 +02:00
|
|
|
this.motX *= (double) (this.random.nextFloat() * 0.2F);
|
|
|
|
this.motY *= (double) (this.random.nextFloat() * 0.2F);
|
|
|
|
this.motZ *= (double) (this.random.nextFloat() * 0.2F);
|
|
|
|
this.k = 0;
|
2011-09-15 02:23:52 +02:00
|
|
|
this.l = 0;
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
} else {
|
2011-09-15 02:23:52 +02:00
|
|
|
++this.l;
|
2011-05-26 14:48:22 +02:00
|
|
|
Vec3D vec3d = Vec3D.create(this.locX, this.locY, this.locZ);
|
|
|
|
Vec3D vec3d1 = Vec3D.create(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
|
|
|
|
MovingObjectPosition movingobjectposition = this.world.rayTrace(vec3d, vec3d1, false, true);
|
|
|
|
|
|
|
|
vec3d = Vec3D.create(this.locX, this.locY, this.locZ);
|
|
|
|
vec3d1 = Vec3D.create(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
|
|
|
|
if (movingobjectposition != null) {
|
|
|
|
vec3d1 = Vec3D.create(movingobjectposition.f.a, movingobjectposition.f.b, movingobjectposition.f.c);
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
Entity entity = null;
|
|
|
|
List list = this.world.b((Entity) this, this.boundingBox.a(this.motX, this.motY, this.motZ).b(1.0D, 1.0D, 1.0D));
|
|
|
|
double d0 = 0.0D;
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
int k;
|
2011-05-26 14:48:22 +02:00
|
|
|
float f1;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
for (k = 0; k < list.size(); ++k) {
|
2011-05-26 14:48:22 +02:00
|
|
|
Entity entity1 = (Entity) list.get(k);
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (entity1.r_() && (entity1 != this.shooter || this.l >= 5)) {
|
2011-05-26 14:48:22 +02:00
|
|
|
f1 = 0.3F;
|
2011-05-31 15:55:45 +02:00
|
|
|
AxisAlignedBB axisalignedbb1 = entity1.boundingBox.b((double) f1, (double) f1, (double) f1);
|
|
|
|
MovingObjectPosition movingobjectposition1 = axisalignedbb1.a(vec3d, vec3d1);
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
if (movingobjectposition1 != null) {
|
2011-09-15 02:23:52 +02:00
|
|
|
double d1 = vec3d.b(movingobjectposition1.f);
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
if (d1 < d0 || d0 == 0.0D) {
|
|
|
|
entity = entity1;
|
|
|
|
d0 = d1;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
if (entity != null) {
|
|
|
|
movingobjectposition = new MovingObjectPosition(entity);
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
float f2;
|
|
|
|
|
|
|
|
if (movingobjectposition != null) {
|
2011-07-14 19:46:02 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
ProjectileHitEvent phe = new ProjectileHitEvent((Projectile) this.getBukkitEntity());
|
|
|
|
this.world.getServer().getPluginManager().callEvent(phe);
|
|
|
|
// CraftBukkit end
|
2011-05-26 14:48:22 +02:00
|
|
|
if (movingobjectposition.entity != null) {
|
2011-09-15 02:23:52 +02:00
|
|
|
f2 = MathHelper.a(this.motX * this.motX + this.motY * this.motY + this.motZ * this.motZ);
|
|
|
|
int l = (int) Math.ceil((double) f2 * 2.0D);
|
|
|
|
|
|
|
|
if (this.d) {
|
|
|
|
l = l * 3 / 2 + 1;
|
|
|
|
}
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
boolean stick;
|
|
|
|
if (entity instanceof EntityLiving) {
|
2011-06-27 00:25:01 +02:00
|
|
|
org.bukkit.Server server = this.world.getServer();
|
2011-05-26 14:48:22 +02:00
|
|
|
|
|
|
|
// TODO decide if we should create DamageCause.ARROW, DamageCause.PROJECTILE
|
|
|
|
// or leave as DamageCause.ENTITY_ATTACK
|
|
|
|
org.bukkit.entity.Entity damagee = movingobjectposition.entity.getBukkitEntity();
|
2011-06-18 17:10:31 +02:00
|
|
|
Projectile projectile = (Projectile) this.getBukkitEntity();
|
2011-05-26 14:48:22 +02:00
|
|
|
// TODO deal with arrows being fired from a non-entity
|
|
|
|
|
2011-09-16 12:52:53 +02:00
|
|
|
EntityDamageByEntityEvent event = new EntityDamageByEntityEvent(projectile, damagee, EntityDamageEvent.DamageCause.PROJECTILE, l);
|
2011-05-26 14:48:22 +02:00
|
|
|
server.getPluginManager().callEvent(event);
|
2011-06-18 17:10:31 +02:00
|
|
|
this.shooter = (projectile.getShooter() == null) ? null : ((CraftLivingEntity) projectile.getShooter()).getHandle();
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
2011-07-19 22:26:00 +02:00
|
|
|
stick = !projectile.doesBounce();
|
2011-06-18 17:10:31 +02:00
|
|
|
} else {
|
2011-05-26 14:48:22 +02:00
|
|
|
// this function returns if the arrow should stick in or not, i.e. !bounce
|
2011-09-15 18:36:27 +02:00
|
|
|
stick = movingobjectposition.entity.damageEntity(DamageSource.arrow(this, this.shooter), event.getDamage());
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
|
|
|
} else {
|
2011-09-16 12:52:53 +02:00
|
|
|
stick = movingobjectposition.entity.damageEntity(DamageSource.arrow(this, this.shooter), l);
|
2011-05-26 14:48:22 +02:00
|
|
|
}
|
|
|
|
if (stick) {
|
2011-06-12 00:02:58 +02:00
|
|
|
// CraftBukkit end
|
2011-05-26 14:48:22 +02:00
|
|
|
this.world.makeSound(this, "random.drr", 1.0F, 1.2F / (this.random.nextFloat() * 0.2F + 0.9F));
|
|
|
|
this.die();
|
2011-01-12 06:48:19 +01:00
|
|
|
} else {
|
2011-05-26 14:48:22 +02:00
|
|
|
this.motX *= -0.10000000149011612D;
|
|
|
|
this.motY *= -0.10000000149011612D;
|
|
|
|
this.motZ *= -0.10000000149011612D;
|
|
|
|
this.yaw += 180.0F;
|
|
|
|
this.lastYaw += 180.0F;
|
2011-09-15 02:23:52 +02:00
|
|
|
this.l = 0;
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
} else {
|
2011-09-15 02:23:52 +02:00
|
|
|
this.e = movingobjectposition.b;
|
|
|
|
this.f = movingobjectposition.c;
|
|
|
|
this.g = movingobjectposition.d;
|
|
|
|
this.h = this.world.getTypeId(this.e, this.f, this.g);
|
|
|
|
this.i = this.world.getData(this.e, this.f, this.g);
|
2011-05-26 14:48:22 +02:00
|
|
|
this.motX = (double) ((float) (movingobjectposition.f.a - this.locX));
|
|
|
|
this.motY = (double) ((float) (movingobjectposition.f.b - this.locY));
|
|
|
|
this.motZ = (double) ((float) (movingobjectposition.f.c - this.locZ));
|
|
|
|
f2 = MathHelper.a(this.motX * this.motX + this.motY * this.motY + this.motZ * this.motZ);
|
|
|
|
this.locX -= this.motX / (double) f2 * 0.05000000074505806D;
|
|
|
|
this.locY -= this.motY / (double) f2 * 0.05000000074505806D;
|
|
|
|
this.locZ -= this.motZ / (double) f2 * 0.05000000074505806D;
|
2011-04-20 19:05:14 +02:00
|
|
|
this.world.makeSound(this, "random.drr", 1.0F, 1.2F / (this.random.nextFloat() * 0.2F + 0.9F));
|
2011-06-27 00:25:01 +02:00
|
|
|
this.inGround = true;
|
|
|
|
this.shake = 7;
|
2011-09-15 02:23:52 +02:00
|
|
|
this.d = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.d) {
|
|
|
|
for (k = 0; k < 4; ++k) {
|
|
|
|
this.world.a("crit", this.locX + this.motX * (double) k / 4.0D, this.locY + this.motY * (double) k / 4.0D, this.locZ + this.motZ * (double) k / 4.0D, -this.motX, -this.motY + 0.2D, -this.motZ);
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
this.locX += this.motX;
|
|
|
|
this.locY += this.motY;
|
|
|
|
this.locZ += this.motZ;
|
|
|
|
f2 = MathHelper.a(this.motX * this.motX + this.motZ * this.motZ);
|
|
|
|
this.yaw = (float) (Math.atan2(this.motX, this.motZ) * 180.0D / 3.1415927410125732D);
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
for (this.pitch = (float) (Math.atan2(this.motY, (double) f2) * 180.0D / 3.1415927410125732D); this.pitch - this.lastPitch < -180.0F; this.lastPitch -= 360.0F) {
|
|
|
|
;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
while (this.pitch - this.lastPitch >= 180.0F) {
|
|
|
|
this.lastPitch += 360.0F;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
while (this.yaw - this.lastYaw < -180.0F) {
|
|
|
|
this.lastYaw -= 360.0F;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
while (this.yaw - this.lastYaw >= 180.0F) {
|
|
|
|
this.lastYaw += 360.0F;
|
|
|
|
}
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
this.pitch = this.lastPitch + (this.pitch - this.lastPitch) * 0.2F;
|
|
|
|
this.yaw = this.lastYaw + (this.yaw - this.lastYaw) * 0.2F;
|
|
|
|
float f3 = 0.99F;
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
f1 = 0.05F;
|
|
|
|
if (this.ao()) {
|
|
|
|
for (int i1 = 0; i1 < 4; ++i1) {
|
2011-05-26 14:48:22 +02:00
|
|
|
float f4 = 0.25F;
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
this.world.a("bubble", this.locX - this.motX * (double) f4, this.locY - this.motY * (double) f4, this.locZ - this.motZ * (double) f4, this.motX, this.motY, this.motZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
f3 = 0.8F;
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
|
2011-05-26 14:48:22 +02:00
|
|
|
this.motX *= (double) f3;
|
|
|
|
this.motY *= (double) f3;
|
|
|
|
this.motZ *= (double) f3;
|
|
|
|
this.motY -= (double) f1;
|
|
|
|
this.setPosition(this.locX, this.locY, this.locZ);
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
2011-09-15 02:23:52 +02:00
|
|
|
nbttagcompound.a("xTile", (short) this.e);
|
|
|
|
nbttagcompound.a("yTile", (short) this.f);
|
|
|
|
nbttagcompound.a("zTile", (short) this.g);
|
|
|
|
nbttagcompound.a("inTile", (byte) this.h);
|
|
|
|
nbttagcompound.a("inData", (byte) this.i);
|
2011-06-27 00:25:01 +02:00
|
|
|
nbttagcompound.a("shake", (byte) this.shake);
|
|
|
|
nbttagcompound.a("inGround", (byte) (this.inGround ? 1 : 0));
|
|
|
|
nbttagcompound.a("player", this.fromPlayer);
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
2011-09-15 02:23:52 +02:00
|
|
|
this.e = nbttagcompound.d("xTile");
|
|
|
|
this.f = nbttagcompound.d("yTile");
|
|
|
|
this.g = nbttagcompound.d("zTile");
|
|
|
|
this.h = nbttagcompound.c("inTile") & 255;
|
|
|
|
this.i = nbttagcompound.c("inData") & 255;
|
2011-06-27 00:25:01 +02:00
|
|
|
this.shake = nbttagcompound.c("shake") & 255;
|
|
|
|
this.inGround = nbttagcompound.c("inGround") == 1;
|
|
|
|
this.fromPlayer = nbttagcompound.m("player");
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public void a_(EntityHuman entityhuman) {
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!this.world.isStatic) {
|
2011-06-26 17:02:47 +02:00
|
|
|
// CraftBukkit start
|
|
|
|
ItemStack itemstack = new ItemStack(Item.ARROW, 1);
|
2011-06-27 00:25:01 +02:00
|
|
|
if (this.inGround && this.fromPlayer && this.shake <= 0 && entityhuman.inventory.canHold(itemstack) > 0) {
|
2011-06-26 17:02:47 +02:00
|
|
|
net.minecraft.server.EntityItem item = new net.minecraft.server.EntityItem(this.world, this.locX, this.locY, this.locZ, itemstack);
|
|
|
|
|
2011-07-02 20:05:31 +02:00
|
|
|
PlayerPickupItemEvent event = new PlayerPickupItemEvent((org.bukkit.entity.Player) entityhuman.getBukkitEntity(), new org.bukkit.craftbukkit.entity.CraftItem(this.world.getServer(), item), 0);
|
2011-06-26 17:02:47 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
|
|
|
|
|
|
|
if (event.isCancelled()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2011-06-27 00:25:01 +02:00
|
|
|
// CraftBukkit end
|
2011-06-26 17:02:47 +02:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
if (this.inGround && this.fromPlayer && this.shake <= 0 && entityhuman.inventory.pickup(new ItemStack(Item.ARROW, 1))) {
|
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, 1);
|
|
|
|
this.die();
|
2011-01-29 22:50:29 +01:00
|
|
|
}
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|