2011-01-11 09:25:49 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.List;
|
2011-01-12 06:48:19 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2011-03-07 17:32:41 +01:00
|
|
|
import org.bukkit.entity.CreatureType;
|
2011-06-18 17:10:31 +02:00
|
|
|
import org.bukkit.entity.Projectile;
|
2011-06-27 00:25:01 +02:00
|
|
|
import org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason;
|
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-01-11 09:44:39 +01:00
|
|
|
import org.bukkit.event.player.PlayerEggThrowEvent;
|
2011-01-12 06:48:19 +01:00
|
|
|
// CraftBukkit end
|
2011-01-11 09:25:49 +01:00
|
|
|
|
|
|
|
public class EntityEgg extends Entity {
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
private int b = -1;
|
|
|
|
private int c = -1;
|
|
|
|
private int d = -1;
|
|
|
|
private int e = 0;
|
|
|
|
private boolean f = false;
|
|
|
|
public int a = 0;
|
2011-06-27 00:25:01 +02:00
|
|
|
public EntityLiving thrower; // CraftBukkit - private -> public
|
2011-02-23 03:37:56 +01:00
|
|
|
private int h;
|
|
|
|
private int i = 0;
|
2011-01-11 09:25:49 +01:00
|
|
|
|
|
|
|
public EntityEgg(World world) {
|
|
|
|
super(world);
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.25F, 0.25F);
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
protected void b() {}
|
2011-01-14 14:31:10 +01:00
|
|
|
|
2011-01-11 09:25:49 +01:00
|
|
|
public EntityEgg(World world, EntityLiving entityliving) {
|
2011-01-30 16:15:17 +01:00
|
|
|
super(world);
|
2011-04-20 19:05:14 +02:00
|
|
|
this.thrower = entityliving;
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.25F, 0.25F);
|
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;
|
|
|
|
float f = 0.4F;
|
|
|
|
|
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) * f);
|
|
|
|
this.motZ = (double) (MathHelper.cos(this.yaw / 180.0F * 3.1415927F) * MathHelper.cos(this.pitch / 180.0F * 3.1415927F) * f);
|
|
|
|
this.motY = (double) (-MathHelper.sin(this.pitch / 180.0F * 3.1415927F) * f);
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a(this.motX, this.motY, this.motZ, 1.5F, 1.0F);
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
public EntityEgg(World world, double d0, double d1, double d2) {
|
2011-01-30 16:15:17 +01:00
|
|
|
super(world);
|
2011-02-23 03:37:56 +01:00
|
|
|
this.h = 0;
|
2011-03-31 22:40:00 +02:00
|
|
|
this.b(0.25F, 0.25F);
|
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-14 14:31:10 +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-02-23 03:37:56 +01:00
|
|
|
this.h = 0;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public void s_() {
|
|
|
|
this.bE = this.locX;
|
|
|
|
this.bF = this.locY;
|
|
|
|
this.bG = this.locZ;
|
|
|
|
super.s_();
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.a > 0) {
|
|
|
|
--this.a;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (this.f) {
|
|
|
|
int i = this.world.getTypeId(this.b, this.c, this.d);
|
|
|
|
|
|
|
|
if (i == this.e) {
|
2011-02-23 03:37:56 +01:00
|
|
|
++this.h;
|
|
|
|
if (this.h == 1200) {
|
2011-04-20 19:05:14 +02:00
|
|
|
this.die();
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-11 09:25:49 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.f = false;
|
|
|
|
this.motX *= (double) (this.random.nextFloat() * 0.2F);
|
|
|
|
this.motY *= (double) (this.random.nextFloat() * 0.2F);
|
|
|
|
this.motZ *= (double) (this.random.nextFloat() * 0.2F);
|
2011-02-23 03:37:56 +01:00
|
|
|
this.h = 0;
|
|
|
|
this.i = 0;
|
2011-01-11 09:25:49 +01:00
|
|
|
} else {
|
2011-02-23 03:37:56 +01:00
|
|
|
++this.i;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +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);
|
2011-01-29 22:50:29 +01:00
|
|
|
MovingObjectPosition movingobjectposition = this.world.a(vec3d, vec3d1);
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
vec3d = Vec3D.create(this.locX, this.locY, this.locZ);
|
|
|
|
vec3d1 = Vec3D.create(this.locX + this.motX, this.locY + this.motY, this.locZ + this.motZ);
|
2011-01-11 09:25:49 +01:00
|
|
|
if (movingobjectposition != null) {
|
2011-04-20 19:05:14 +02:00
|
|
|
vec3d1 = Vec3D.create(movingobjectposition.f.a, movingobjectposition.f.b, movingobjectposition.f.c);
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (!this.world.isStatic) {
|
2011-01-11 09:25:49 +01:00
|
|
|
Entity entity = null;
|
2011-01-29 22:50:29 +01:00
|
|
|
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-11 09:25:49 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
for (int j = 0; j < list.size(); ++j) {
|
|
|
|
Entity entity1 = (Entity) list.get(j);
|
2011-01-11 09:25:49 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (entity1.r_() && (entity1 != this.thrower || this.i >= 5)) {
|
2011-01-29 22:50:29 +01:00
|
|
|
float f = 0.3F;
|
|
|
|
AxisAlignedBB axisalignedbb = entity1.boundingBox.b((double) f, (double) f, (double) f);
|
|
|
|
MovingObjectPosition movingobjectposition1 = axisalignedbb.a(vec3d, vec3d1);
|
2011-01-11 09:25:49 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (movingobjectposition1 != null) {
|
2011-09-15 02:23:52 +02:00
|
|
|
double d1 = vec3d.b(movingobjectposition1.f);
|
2011-01-11 09:25:49 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (d1 < d0 || d0 == 0.0D) {
|
|
|
|
entity = entity1;
|
|
|
|
d0 = d1;
|
|
|
|
}
|
|
|
|
}
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entity != null) {
|
|
|
|
movingobjectposition = new MovingObjectPosition(entity);
|
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-01-11 09:25:49 +01:00
|
|
|
if (movingobjectposition != null) {
|
2011-01-29 22:50:29 +01:00
|
|
|
// CraftBukkit start
|
2011-07-14 19:46:02 +02:00
|
|
|
ProjectileHitEvent phe = new ProjectileHitEvent((Projectile) this.getBukkitEntity());
|
|
|
|
this.world.getServer().getPluginManager().callEvent(phe);
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (movingobjectposition.entity != null) {
|
2011-01-29 22:50:29 +01:00
|
|
|
boolean stick;
|
2011-04-20 19:05:14 +02:00
|
|
|
if (movingobjectposition.entity instanceof EntityLiving) {
|
|
|
|
org.bukkit.entity.Entity damagee = movingobjectposition.entity.getBukkitEntity();
|
2011-06-18 17:10:31 +02:00
|
|
|
Projectile projectile = (Projectile) this.getBukkitEntity();
|
2011-01-12 06:48:19 +01:00
|
|
|
|
2011-01-21 06:54:30 +01:00
|
|
|
// TODO @see EntityArrow#162
|
2011-07-19 22:26:00 +02:00
|
|
|
EntityDamageByEntityEvent event = new EntityDamageByEntityEvent(projectile, damagee, EntityDamageEvent.DamageCause.PROJECTILE, 0);
|
2011-06-27 00:25:01 +02:00
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
2011-01-20 10:26:19 +01:00
|
|
|
|
2011-06-18 17:10:31 +02:00
|
|
|
if (event.isCancelled()) {
|
2011-07-19 22:26:00 +02:00
|
|
|
stick = !projectile.doesBounce();
|
2011-06-18 17:10:31 +02:00
|
|
|
} else {
|
|
|
|
// this function returns if the egg should stick in or not, i.e. !bounce
|
2011-09-15 18:36:27 +02:00
|
|
|
stick = movingobjectposition.entity.damageEntity(DamageSource.projectile(this, this.thrower), event.getDamage());
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
|
|
|
} else {
|
2011-09-15 18:36:27 +02:00
|
|
|
stick = movingobjectposition.entity.damageEntity(DamageSource.projectile(this, this.thrower), 0);
|
2011-01-12 06:48:19 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (stick) {
|
|
|
|
; // Original code does nothing *yet*
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
boolean hatching = !this.world.isStatic && this.random.nextInt(8) == 0;
|
2011-02-23 13:56:36 +01:00
|
|
|
int numHatching = (this.random.nextInt(32) == 0) ? 4 : 1;
|
2011-01-11 09:44:39 +01:00
|
|
|
if (!hatching) {
|
|
|
|
numHatching = 0;
|
|
|
|
}
|
2011-03-07 17:32:41 +01:00
|
|
|
|
|
|
|
CreatureType hatchingType = CreatureType.CHICKEN;
|
2011-01-11 09:25:49 +01:00
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
if (this.thrower instanceof EntityPlayer) {
|
2011-06-27 00:25:01 +02:00
|
|
|
org.bukkit.entity.Player player = (this.thrower == null) ? null : (org.bukkit.entity.Player) this.thrower.getBukkitEntity();
|
2011-01-20 10:26:19 +01:00
|
|
|
|
2011-06-27 00:25:01 +02:00
|
|
|
PlayerEggThrowEvent event = new PlayerEggThrowEvent(player, (org.bukkit.entity.Egg) this.getBukkitEntity(), hatching, (byte) numHatching, hatchingType);
|
|
|
|
this.world.getServer().getPluginManager().callEvent(event);
|
2011-02-23 13:56:36 +01:00
|
|
|
|
2011-01-11 09:44:39 +01:00
|
|
|
hatching = event.isHatching();
|
|
|
|
numHatching = event.getNumHatches();
|
2011-01-20 10:26:19 +01:00
|
|
|
hatchingType = event.getHatchType();
|
2011-01-11 09:44:39 +01:00
|
|
|
}
|
2011-01-11 09:25:49 +01:00
|
|
|
|
2011-01-11 09:44:39 +01:00
|
|
|
if (hatching) {
|
|
|
|
for (int k = 0; k < numHatching; k++) {
|
|
|
|
Entity entity = null;
|
2011-01-20 10:26:19 +01:00
|
|
|
switch (hatchingType) {
|
2011-01-11 09:44:39 +01:00
|
|
|
case CHICKEN:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntityChicken(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
case COW:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntityCow(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
case CREEPER:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntityCreeper(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
case GHAST:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntityGhast(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
2011-03-29 22:56:36 +02:00
|
|
|
case GIANT:
|
|
|
|
entity = new EntityGiantZombie(this.world);
|
|
|
|
break;
|
2011-01-11 09:44:39 +01:00
|
|
|
case PIG:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntityPig(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
case PIG_ZOMBIE:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntityPigZombie(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
case SHEEP:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntitySheep(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
case SKELETON:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntitySkeleton(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
case SPIDER:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntitySpider(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
case ZOMBIE:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntityZombie(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
2011-01-23 23:03:25 +01:00
|
|
|
case SQUID:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntitySquid(this.world);
|
2011-01-23 23:03:25 +01:00
|
|
|
break;
|
2011-04-05 18:19:24 +02:00
|
|
|
case SLIME:
|
|
|
|
entity = new EntitySlime(this.world);
|
|
|
|
break;
|
|
|
|
case WOLF:
|
|
|
|
entity = new EntityWolf(this.world);
|
|
|
|
break;
|
2011-01-11 09:44:39 +01:00
|
|
|
default:
|
2011-01-29 22:50:29 +01:00
|
|
|
entity = new EntityChicken(this.world);
|
2011-01-11 09:44:39 +01:00
|
|
|
break;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
2011-02-13 01:21:50 +01:00
|
|
|
// The world we're spawning in accepts this creature
|
|
|
|
boolean isAnimal = entity instanceof EntityAnimal || entity instanceof EntityWaterAnimal;
|
2011-04-20 19:05:14 +02:00
|
|
|
if ((isAnimal && this.world.allowAnimals) || (!isAnimal && this.world.allowMonsters)) {
|
|
|
|
entity.setPositionRotation(this.locX, this.locY, this.locZ, this.yaw, 0.0F);
|
2011-06-21 22:20:11 +02:00
|
|
|
this.world.addEntity(entity, SpawnReason.EGG);
|
2011-02-13 01:21:50 +01:00
|
|
|
}
|
2011-05-14 16:29:42 +02:00
|
|
|
// CraftBukkit end
|
2011-01-11 09:44:39 +01:00
|
|
|
}
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
2011-01-11 09:44:39 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
for (int l = 0; l < 8; ++l) {
|
|
|
|
this.world.a("snowballpoof", this.locX, this.locY, this.locZ, 0.0D, 0.0D, 0.0D);
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 19:05:14 +02:00
|
|
|
this.die();
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.locX += this.motX;
|
|
|
|
this.locY += this.motY;
|
|
|
|
this.locZ += this.motZ;
|
|
|
|
float f1 = MathHelper.a(this.motX * this.motX + this.motZ * this.motZ);
|
|
|
|
|
|
|
|
this.yaw = (float) (Math.atan2(this.motX, this.motZ) * 180.0D / 3.1415927410125732D);
|
|
|
|
|
|
|
|
for (this.pitch = (float) (Math.atan2(this.motY, (double) f1) * 180.0D / 3.1415927410125732D); this.pitch - this.lastPitch < -180.0F; this.lastPitch -= 360.0F) {
|
2011-01-11 09:25:49 +01:00
|
|
|
;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
while (this.pitch - this.lastPitch >= 180.0F) {
|
|
|
|
this.lastPitch += 360.0F;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
while (this.yaw - this.lastYaw < -180.0F) {
|
|
|
|
this.lastYaw -= 360.0F;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
while (this.yaw - this.lastYaw >= 180.0F) {
|
|
|
|
this.lastYaw += 360.0F;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.pitch = this.lastPitch + (this.pitch - this.lastPitch) * 0.2F;
|
|
|
|
this.yaw = this.lastYaw + (this.yaw - this.lastYaw) * 0.2F;
|
2011-01-11 09:25:49 +01:00
|
|
|
float f2 = 0.99F;
|
2011-01-29 22:50:29 +01:00
|
|
|
float f3 = 0.03F;
|
2011-01-11 09:25:49 +01:00
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
if (this.ao()) {
|
2011-01-29 22:50:29 +01:00
|
|
|
for (int i1 = 0; i1 < 4; ++i1) {
|
|
|
|
float f4 = 0.25F;
|
2011-01-11 09:25:49 +01:00
|
|
|
|
2011-01-29 22:50:29 +01: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);
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
f2 = 0.8F;
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.motX *= (double) f2;
|
|
|
|
this.motY *= (double) f2;
|
|
|
|
this.motZ *= (double) f2;
|
|
|
|
this.motY -= (double) f3;
|
2011-04-20 19:05:14 +02:00
|
|
|
this.setPosition(this.locX, this.locY, this.locZ);
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
2011-01-29 22:50:29 +01:00
|
|
|
nbttagcompound.a("xTile", (short) this.b);
|
|
|
|
nbttagcompound.a("yTile", (short) this.c);
|
|
|
|
nbttagcompound.a("zTile", (short) this.d);
|
|
|
|
nbttagcompound.a("inTile", (byte) this.e);
|
|
|
|
nbttagcompound.a("shake", (byte) this.a);
|
|
|
|
nbttagcompound.a("inGround", (byte) (this.f ? 1 : 0));
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-04-20 22:47:26 +02:00
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
2011-02-23 03:37:56 +01:00
|
|
|
this.b = nbttagcompound.d("xTile");
|
|
|
|
this.c = nbttagcompound.d("yTile");
|
|
|
|
this.d = nbttagcompound.d("zTile");
|
|
|
|
this.e = nbttagcompound.c("inTile") & 255;
|
|
|
|
this.a = nbttagcompound.c("shake") & 255;
|
|
|
|
this.f = nbttagcompound.c("inGround") == 1;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-09-15 02:23:52 +02:00
|
|
|
public void a_(EntityHuman entityhuman) {
|
2011-06-27 00:25:01 +02:00
|
|
|
if (this.f && this.thrower == entityhuman && this.a <= 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-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|