2011-01-11 09:25:49 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Random;
|
2011-01-12 06:48:19 +01:00
|
|
|
|
|
|
|
// CraftBukkit start
|
2011-01-15 22:21:05 +01:00
|
|
|
import org.bukkit.entity.MobType;
|
2011-01-17 01:53:42 +01:00
|
|
|
import org.bukkit.entity.Player;
|
2011-01-12 06:48:19 +01:00
|
|
|
import org.bukkit.craftbukkit.entity.CraftEgg;
|
2011-01-11 09:44:39 +01:00
|
|
|
import org.bukkit.craftbukkit.CraftServer;
|
|
|
|
import org.bukkit.event.Event.Type;
|
2011-01-12 06:48:19 +01:00
|
|
|
import org.bukkit.event.entity.EntityDamageByProjectileEvent;
|
|
|
|
import org.bukkit.event.entity.EntityDamageEvent;
|
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 {
|
|
|
|
|
|
|
|
private int b;
|
|
|
|
private int c;
|
|
|
|
private int d;
|
|
|
|
private int e;
|
|
|
|
private boolean f;
|
|
|
|
public int a;
|
2011-01-14 14:31:10 +01:00
|
|
|
private EntityLiving ak;
|
2011-01-11 09:25:49 +01:00
|
|
|
private int al;
|
2011-01-14 14:31:10 +01:00
|
|
|
private int am;
|
2011-01-11 09:25:49 +01:00
|
|
|
|
|
|
|
public EntityEgg(World world) {
|
|
|
|
super(world);
|
|
|
|
b = -1;
|
|
|
|
c = -1;
|
|
|
|
d = -1;
|
|
|
|
e = 0;
|
|
|
|
f = false;
|
|
|
|
a = 0;
|
2011-01-14 14:31:10 +01:00
|
|
|
am = 0;
|
2011-01-11 09:25:49 +01:00
|
|
|
a(0.25F, 0.25F);
|
2011-01-17 00:03:15 +01:00
|
|
|
//CraftBukkit start
|
|
|
|
CraftServer server = ((WorldServer) this.l).getServer();
|
|
|
|
this.bukkitEntity = new CraftEgg(server, this);
|
|
|
|
//CraftBukkit end
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
2011-01-14 14:31:10 +01:00
|
|
|
protected void a() {}
|
|
|
|
|
2011-01-11 09:25:49 +01:00
|
|
|
public EntityEgg(World world, EntityLiving entityliving) {
|
|
|
|
super(world);
|
|
|
|
b = -1;
|
|
|
|
c = -1;
|
|
|
|
d = -1;
|
|
|
|
e = 0;
|
|
|
|
f = false;
|
|
|
|
a = 0;
|
2011-01-14 14:31:10 +01:00
|
|
|
am = 0;
|
|
|
|
ak = entityliving;
|
2011-01-11 09:25:49 +01:00
|
|
|
a(0.25F, 0.25F);
|
2011-01-14 14:31:10 +01:00
|
|
|
c(entityliving.p, entityliving.q + (double) entityliving.w(), entityliving.r, entityliving.v, entityliving.w);
|
2011-01-11 09:25:49 +01:00
|
|
|
p -= MathHelper.b((v / 180F) * 3.141593F) * 0.16F;
|
|
|
|
q -= 0.10000000149011612D;
|
|
|
|
r -= MathHelper.a((v / 180F) * 3.141593F) * 0.16F;
|
|
|
|
a(p, q, r);
|
|
|
|
H = 0.0F;
|
|
|
|
float f1 = 0.4F;
|
|
|
|
|
|
|
|
s = -MathHelper.a((v / 180F) * 3.141593F) * MathHelper.b((w / 180F) * 3.141593F) * f1;
|
|
|
|
u = MathHelper.b((v / 180F) * 3.141593F) * MathHelper.b((w / 180F) * 3.141593F) * f1;
|
|
|
|
t = -MathHelper.a((w / 180F) * 3.141593F) * f1;
|
|
|
|
a(s, t, u, 1.5F, 1.0F);
|
|
|
|
}
|
|
|
|
|
2011-01-14 14:31:10 +01:00
|
|
|
public EntityEgg(World world, double d1, double d2, double d3) {
|
|
|
|
super(world);
|
|
|
|
b = -1;
|
|
|
|
c = -1;
|
|
|
|
d = -1;
|
|
|
|
e = 0;
|
|
|
|
f = false;
|
|
|
|
a = 0;
|
|
|
|
am = 0;
|
|
|
|
al = 0;
|
|
|
|
a(0.25F, 0.25F);
|
|
|
|
a(d1, d2, d3);
|
|
|
|
H = 0.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(double d1, double d2, double d3, float f1, float f2) {
|
2011-01-11 09:25:49 +01:00
|
|
|
float f3 = MathHelper.a(d1 * d1 + d2 * d2 + d3 * d3);
|
|
|
|
|
|
|
|
d1 /= f3;
|
|
|
|
d2 /= f3;
|
|
|
|
d3 /= f3;
|
|
|
|
d1 += W.nextGaussian() * 0.0074999998323619366D * (double) f2;
|
|
|
|
d2 += W.nextGaussian() * 0.0074999998323619366D * (double) f2;
|
|
|
|
d3 += W.nextGaussian() * 0.0074999998323619366D * (double) f2;
|
|
|
|
d1 *= f1;
|
|
|
|
d2 *= f1;
|
|
|
|
d3 *= f1;
|
|
|
|
s = d1;
|
|
|
|
t = d2;
|
|
|
|
u = d3;
|
|
|
|
float f4 = MathHelper.a(d1 * d1 + d3 * d3);
|
|
|
|
|
|
|
|
x = v = (float) ((Math.atan2(d1, d3) * 180D) / 3.1415927410125732D);
|
|
|
|
y = w = (float) ((Math.atan2(d2, f4) * 180D) / 3.1415927410125732D);
|
2011-01-14 14:31:10 +01:00
|
|
|
al = 0;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public void b_() {
|
|
|
|
O = p;
|
|
|
|
P = q;
|
|
|
|
Q = r;
|
|
|
|
super.b_();
|
|
|
|
if (a > 0) {
|
|
|
|
a--;
|
|
|
|
}
|
|
|
|
if (f) {
|
|
|
|
int i = this.l.a(b, c, d);
|
|
|
|
|
|
|
|
if (i != e) {
|
|
|
|
f = false;
|
|
|
|
s *= W.nextFloat() * 0.2F;
|
|
|
|
t *= W.nextFloat() * 0.2F;
|
|
|
|
u *= W.nextFloat() * 0.2F;
|
|
|
|
al = 0;
|
2011-01-14 14:31:10 +01:00
|
|
|
am = 0;
|
2011-01-11 09:25:49 +01:00
|
|
|
} else {
|
2011-01-14 14:31:10 +01:00
|
|
|
al++;
|
|
|
|
if (al == 1200) {
|
|
|
|
q();
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2011-01-14 14:31:10 +01:00
|
|
|
am++;
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
Vec3D vec3d = Vec3D.b(p, q, r);
|
|
|
|
Vec3D vec3d1 = Vec3D.b(p + s, q + t, r + u);
|
|
|
|
MovingObjectPosition movingobjectposition = this.l.a(vec3d, vec3d1);
|
|
|
|
|
|
|
|
vec3d = Vec3D.b(p, q, r);
|
|
|
|
vec3d1 = Vec3D.b(p + s, q + t, r + u);
|
|
|
|
if (movingobjectposition != null) {
|
|
|
|
vec3d1 = Vec3D.b(movingobjectposition.f.a, movingobjectposition.f.b, movingobjectposition.f.c);
|
|
|
|
}
|
|
|
|
if (!this.l.z) {
|
|
|
|
Entity entity = null;
|
2011-01-14 14:31:10 +01:00
|
|
|
List list = this.l.b(((Entity) (this)), z.a(s, t, u).b(1.0D, 1.0D, 1.0D));
|
2011-01-11 09:25:49 +01:00
|
|
|
double d1 = 0.0D;
|
|
|
|
|
|
|
|
for (int l = 0; l < list.size(); l++) {
|
|
|
|
Entity entity1 = (Entity) list.get(l);
|
|
|
|
|
2011-01-14 14:31:10 +01:00
|
|
|
if (!entity1.c_() || entity1 == ak && am < 5) {
|
2011-01-11 09:25:49 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
float f4 = 0.3F;
|
|
|
|
AxisAlignedBB axisalignedbb = entity1.z.b(f4, f4, f4);
|
|
|
|
MovingObjectPosition movingobjectposition1 = axisalignedbb.a(vec3d, vec3d1);
|
|
|
|
|
|
|
|
if (movingobjectposition1 == null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
double d2 = vec3d.a(movingobjectposition1.f);
|
|
|
|
|
|
|
|
if (d2 < d1 || d1 == 0.0D) {
|
|
|
|
entity = entity1;
|
|
|
|
d1 = d2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entity != null) {
|
|
|
|
movingobjectposition = new MovingObjectPosition(entity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (movingobjectposition != null) {
|
|
|
|
if (movingobjectposition.g != null) {
|
2011-01-12 06:48:19 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
boolean bounce;
|
|
|
|
if (movingobjectposition.g instanceof EntityLiving) {
|
|
|
|
CraftServer server = ((WorldServer) this.l).getServer();
|
|
|
|
|
|
|
|
//TODO @see EntityArrow#162
|
2011-01-17 01:53:42 +01:00
|
|
|
EntityDamageByProjectileEvent edbpe = new EntityDamageByProjectileEvent( ak.getBukkitEntity(), movingobjectposition.g.getBukkitEntity(), this.getBukkitEntity(), EntityDamageEvent.DamageCause.ENTITY_ATTACK, 0);
|
2011-01-12 06:48:19 +01:00
|
|
|
|
|
|
|
server.getPluginManager().callEvent(edbpe);
|
|
|
|
if(!edbpe.isCancelled()) {
|
|
|
|
// this function returns if the egg should stick or not, i.e. !bounce
|
|
|
|
bounce = !movingobjectposition.g.a(((Entity) (ak)), edbpe.getDamage());
|
|
|
|
} else {
|
|
|
|
// event was cancelled, get if the egg should bounce or not
|
|
|
|
bounce = edbpe.getBounce();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bounce = !movingobjectposition.g.a(((Entity) (ak)), 0);
|
|
|
|
}
|
|
|
|
if (!bounce) {
|
|
|
|
// CraftBukkit end
|
2011-01-11 09:25:49 +01:00
|
|
|
;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-11 09:44:39 +01:00
|
|
|
// Craftbukkit start
|
|
|
|
boolean hatching = !this.l.z && W.nextInt(8) == 0;
|
|
|
|
byte numHatching = (hatching && W.nextInt(32) == 0) ? (byte) 4 : (byte) 1;
|
|
|
|
if (!hatching) {
|
|
|
|
numHatching = 0;
|
|
|
|
}
|
|
|
|
MobType type = MobType.CHICKEN;
|
2011-01-11 09:25:49 +01:00
|
|
|
|
2011-01-14 14:31:10 +01:00
|
|
|
if (ak instanceof EntityPlayerMP) {
|
2011-01-11 09:44:39 +01:00
|
|
|
CraftServer server = ((WorldServer) l).getServer();
|
2011-01-17 01:53:42 +01:00
|
|
|
PlayerEggThrowEvent event = new PlayerEggThrowEvent(Type.PLAYER_EGG_THROW, (Player) ak.getBukkitEntity(), hatching, numHatching, type);
|
2011-01-11 09:44:39 +01:00
|
|
|
server.getPluginManager().callEvent(event);
|
|
|
|
hatching = event.isHatching();
|
|
|
|
numHatching = event.getNumHatches();
|
|
|
|
type = event.getHatchType();
|
|
|
|
}
|
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;
|
|
|
|
switch (type) {
|
|
|
|
case CHICKEN:
|
|
|
|
entity = new EntityChicken(this.l);
|
|
|
|
break;
|
|
|
|
case COW:
|
|
|
|
entity = new EntityCow(this.l);
|
|
|
|
break;
|
|
|
|
case CREEPER:
|
|
|
|
entity = new EntityCreeper(this.l);
|
|
|
|
break;
|
|
|
|
case GHAST:
|
|
|
|
entity = new EntityGhast(this.l);
|
|
|
|
break;
|
|
|
|
case PIG:
|
|
|
|
entity = new EntityPig(this.l);
|
|
|
|
break;
|
|
|
|
case PIG_ZOMBIE:
|
|
|
|
entity = new EntityPigZombie(this.l);
|
|
|
|
break;
|
|
|
|
case SHEEP:
|
|
|
|
entity = new EntitySheep(this.l);
|
|
|
|
break;
|
|
|
|
case SKELETON:
|
|
|
|
entity = new EntitySkeleton(this.l);
|
|
|
|
break;
|
|
|
|
case SPIDER:
|
|
|
|
entity = new EntitySpider(this.l);
|
|
|
|
break;
|
|
|
|
case ZOMBIE:
|
|
|
|
entity = new EntityZombie(this.l);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
entity = new EntityChicken(this.l);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
entity.c(p, q, r, v, 0.0F);
|
|
|
|
this.l.a(entity);
|
|
|
|
}
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
2011-01-12 06:48:19 +01:00
|
|
|
// CraftBukkit end
|
2011-01-11 09:44:39 +01:00
|
|
|
|
2011-01-11 09:25:49 +01:00
|
|
|
for (int j = 0; j < 8; j++) {
|
|
|
|
this.l.a("snowballpoof", p, q, r, 0.0D, 0.0D, 0.0D);
|
|
|
|
}
|
|
|
|
|
2011-01-14 14:31:10 +01:00
|
|
|
q();
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
p += s;
|
|
|
|
q += t;
|
|
|
|
r += u;
|
|
|
|
float f1 = MathHelper.a(s * s + u * u);
|
|
|
|
|
|
|
|
v = (float) ((Math.atan2(s, u) * 180D) / 3.1415927410125732D);
|
|
|
|
for (w = (float) ((Math.atan2(t, f1) * 180D) / 3.1415927410125732D); w - y < -180F; y -= 360F) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
for (; w - y >= 180F; y += 360F) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
for (; v - x < -180F; x -= 360F) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
for (; v - x >= 180F; x += 360F) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
w = y + (w - y) * 0.2F;
|
|
|
|
v = x + (v - x) * 0.2F;
|
|
|
|
float f2 = 0.99F;
|
|
|
|
float f5 = 0.03F;
|
|
|
|
|
2011-01-14 14:31:10 +01:00
|
|
|
if (v()) {
|
2011-01-11 09:25:49 +01:00
|
|
|
for (int i1 = 0; i1 < 4; i1++) {
|
|
|
|
float f3 = 0.25F;
|
|
|
|
|
|
|
|
this.l.a("bubble", p - s * (double) f3, q - t * (double) f3, r - u * (double) f3, s, t, u);
|
|
|
|
}
|
|
|
|
|
|
|
|
f2 = 0.8F;
|
|
|
|
}
|
|
|
|
s *= f2;
|
|
|
|
t *= f2;
|
|
|
|
u *= f2;
|
|
|
|
t -= f5;
|
|
|
|
a(p, q, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void a(NBTTagCompound nbttagcompound) {
|
|
|
|
nbttagcompound.a("xTile", (short) b);
|
|
|
|
nbttagcompound.a("yTile", (short) c);
|
|
|
|
nbttagcompound.a("zTile", (short) d);
|
|
|
|
nbttagcompound.a("inTile", (byte) e);
|
|
|
|
nbttagcompound.a("shake", (byte) a);
|
|
|
|
nbttagcompound.a("inGround", (byte) (f ? 1 : 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(NBTTagCompound nbttagcompound) {
|
2011-01-14 14:31:10 +01:00
|
|
|
b = ((int) (nbttagcompound.c("xTile")));
|
|
|
|
c = ((int) (nbttagcompound.c("yTile")));
|
|
|
|
d = ((int) (nbttagcompound.c("zTile")));
|
2011-01-11 09:25:49 +01:00
|
|
|
e = nbttagcompound.b("inTile") & 0xff;
|
|
|
|
a = nbttagcompound.b("shake") & 0xff;
|
|
|
|
f = nbttagcompound.b("inGround") == 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(EntityPlayer entityplayer) {
|
2011-01-14 14:31:10 +01:00
|
|
|
if (f && ak == entityplayer && a <= 0 && entityplayer.an.a(new ItemStack(Item.j, 1))) {
|
|
|
|
l.a(((Entity) (this)), "random.pop", 0.2F, ((W.nextFloat() - W.nextFloat()) * 0.7F + 1.0F) * 2.0F);
|
|
|
|
entityplayer.c(((Entity) (this)), 1);
|
|
|
|
q();
|
2011-01-11 09:25:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|