2011-01-17 04:03:19 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2011-01-21 06:54:30 +01:00
|
|
|
// CraftBukkit start
|
2011-01-29 22:50:29 +01:00
|
|
|
import org.bukkit.craftbukkit.entity.CraftMonster;
|
2011-01-17 09:17:16 +01:00
|
|
|
import org.bukkit.craftbukkit.CraftServer;
|
2011-01-26 20:26:24 +01:00
|
|
|
import org.bukkit.craftbukkit.entity.CraftEntity;
|
2011-01-29 22:50:29 +01:00
|
|
|
import org.bukkit.event.entity.EntityDamageByEntityEvent;
|
|
|
|
import org.bukkit.event.entity.EntityDamageEvent;
|
|
|
|
import org.bukkit.event.entity.EntityDamageEvent.DamageCause;
|
2011-01-26 20:26:24 +01:00
|
|
|
import org.bukkit.event.entity.EntityTargetEvent;
|
|
|
|
import org.bukkit.event.entity.EntityTargetEvent.TargetReason;
|
2011-01-21 06:54:30 +01:00
|
|
|
// CraftBukkit end
|
2011-01-17 09:17:16 +01:00
|
|
|
|
2011-01-17 04:03:19 +01:00
|
|
|
public class EntityCreature extends EntityLiving {
|
|
|
|
|
2011-02-04 00:17:53 +01:00
|
|
|
public PathEntity a; // Craftbukkit - public
|
|
|
|
public Entity d; // Craftbukkit - public
|
2011-01-29 22:50:29 +01:00
|
|
|
protected boolean e = false;
|
2011-01-17 04:03:19 +01:00
|
|
|
|
|
|
|
public EntityCreature(World world) {
|
|
|
|
super(world);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void d() {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.e = false;
|
|
|
|
float f = 16.0F;
|
2011-01-17 04:03:19 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.d == null) {
|
2011-01-26 20:26:24 +01:00
|
|
|
// CraftBukkit start
|
2011-01-29 22:50:29 +01:00
|
|
|
Entity target = this.l();
|
|
|
|
if (target != null) {
|
2011-01-26 20:26:24 +01:00
|
|
|
EntityTargetEvent event = new EntityTargetEvent(this.getBukkitEntity(), target.getBukkitEntity(), TargetReason.CLOSEST_PLAYER);
|
2011-01-29 22:50:29 +01:00
|
|
|
CraftServer server = ((WorldServer) this.world).getServer();
|
2011-01-26 20:26:24 +01:00
|
|
|
server.getPluginManager().callEvent(event);
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!event.isCancelled()) {
|
|
|
|
if (event.getTarget() == null) {
|
|
|
|
this.d = null;
|
2011-01-26 20:26:24 +01:00
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.d = ((CraftEntity) event.getTarget()).getHandle();
|
2011-01-26 20:26:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.d != null) {
|
|
|
|
this.a = this.world.a(this, this.d, f);
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
} else if (!this.d.B()) {
|
2011-01-26 20:26:24 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
EntityTargetEvent event = new EntityTargetEvent(this.getBukkitEntity(), null, TargetReason.TARGET_DIED);
|
2011-01-29 22:50:29 +01:00
|
|
|
CraftServer server = ((WorldServer) this.world).getServer();
|
2011-01-26 20:26:24 +01:00
|
|
|
server.getPluginManager().callEvent(event);
|
2011-01-29 22:50:29 +01:00
|
|
|
if (!event.isCancelled()) {
|
|
|
|
if (event.getTarget() == null) {
|
|
|
|
this.d = null;
|
2011-01-26 20:26:24 +01:00
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.d = ((CraftEntity) event.getTarget()).getHandle();
|
2011-01-26 20:26:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
2011-01-17 04:03:19 +01:00
|
|
|
} else {
|
2011-01-29 22:50:29 +01:00
|
|
|
float f1 = this.d.a((Entity) this);
|
2011-01-17 04:03:19 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.i(this.d)) {
|
|
|
|
this.a(this.d, f1);
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (!this.e && this.d != null && (this.a == null || this.random.nextInt(20) == 0)) {
|
|
|
|
this.a = this.world.a(this, this.d, f);
|
|
|
|
} else if (this.a == null && this.random.nextInt(80) == 0 || this.random.nextInt(80) == 0) {
|
2011-01-17 04:03:19 +01:00
|
|
|
boolean flag = false;
|
2011-01-29 22:50:29 +01:00
|
|
|
int i = -1;
|
2011-01-17 04:03:19 +01:00
|
|
|
int j = -1;
|
|
|
|
int k = -1;
|
2011-01-29 22:50:29 +01:00
|
|
|
float f2 = -99999.0F;
|
2011-01-17 04:03:19 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
for (int l = 0; l < 10; ++l) {
|
|
|
|
int i1 = MathHelper.b(this.locX + (double) this.random.nextInt(13) - 6.0D);
|
|
|
|
int j1 = MathHelper.b(this.locY + (double) this.random.nextInt(7) - 3.0D);
|
|
|
|
int k1 = MathHelper.b(this.locZ + (double) this.random.nextInt(13) - 6.0D);
|
|
|
|
float f3 = this.a(i1, j1, k1);
|
2011-01-17 04:03:19 +01:00
|
|
|
|
|
|
|
if (f3 > f2) {
|
|
|
|
f2 = f3;
|
2011-01-29 22:50:29 +01:00
|
|
|
i = i1;
|
|
|
|
j = j1;
|
|
|
|
k = k1;
|
2011-01-17 04:03:19 +01:00
|
|
|
flag = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flag) {
|
2011-01-29 22:50:29 +01:00
|
|
|
this.a = this.world.a(this, i, j, k, 10.0F);
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
int l1 = MathHelper.b(this.boundingBox.b);
|
|
|
|
boolean flag1 = this.v();
|
|
|
|
boolean flag2 = this.x();
|
2011-01-17 04:03:19 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
this.pitch = 0.0F;
|
|
|
|
if (this.a != null && this.random.nextInt(100) != 0) {
|
|
|
|
Vec3D vec3d = this.a.a(this);
|
|
|
|
double d0 = (double) (this.length * 2.0F);
|
|
|
|
|
|
|
|
while (vec3d != null && vec3d.d(this.locX, vec3d.b, this.locZ) < d0 * d0) {
|
|
|
|
this.a.a();
|
|
|
|
if (this.a.b()) {
|
|
|
|
vec3d = null;
|
|
|
|
this.a = null;
|
|
|
|
} else {
|
|
|
|
vec3d = this.a.a(this);
|
|
|
|
}
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
this.bA = false;
|
|
|
|
if (vec3d != null) {
|
|
|
|
double d1 = vec3d.a - this.locX;
|
|
|
|
double d2 = vec3d.c - this.locZ;
|
|
|
|
double d3 = vec3d.b - (double) l1;
|
|
|
|
float f4 = (float) (Math.atan2(d2, d1) * 180.0D / 3.1415927410125732D) - 90.0F;
|
|
|
|
float f5 = f4 - this.yaw;
|
|
|
|
|
|
|
|
for (this.by = this.bC; f5 < -180.0F; f5 += 360.0F) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (f5 >= 180.0F) {
|
|
|
|
f5 -= 360.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (f5 > 30.0F) {
|
|
|
|
f5 = 30.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (f5 < -30.0F) {
|
|
|
|
f5 = -30.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.yaw += f5;
|
|
|
|
if (this.e && this.d != null) {
|
|
|
|
double d4 = this.d.locX - this.locX;
|
|
|
|
double d5 = this.d.locZ - this.locZ;
|
|
|
|
float f6 = this.yaw;
|
|
|
|
|
|
|
|
this.yaw = (float) (Math.atan2(d5, d4) * 180.0D / 3.1415927410125732D) - 90.0F;
|
|
|
|
f5 = (f6 - this.yaw + 90.0F) * 3.1415927F / 180.0F;
|
|
|
|
this.bx = -MathHelper.a(f5) * this.by * 1.0F;
|
|
|
|
this.by = MathHelper.b(f5) * this.by * 1.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (d3 > 0.0D) {
|
|
|
|
this.bA = true;
|
|
|
|
}
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.d != null) {
|
|
|
|
this.b(this.d, 30.0F);
|
|
|
|
}
|
2011-01-17 04:03:19 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
if (this.B) {
|
|
|
|
this.bA = true;
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
|
|
|
|
if (this.random.nextFloat() < 0.8F && (flag1 || flag2)) {
|
|
|
|
this.bA = true;
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
2011-01-29 22:50:29 +01:00
|
|
|
} else {
|
|
|
|
super.d();
|
|
|
|
this.a = null;
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void a(Entity entity, float f) {}
|
|
|
|
|
|
|
|
protected float a(int i, int j, int k) {
|
|
|
|
return 0.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected Entity l() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean b() {
|
2011-01-29 22:50:29 +01:00
|
|
|
int i = MathHelper.b(this.locX);
|
|
|
|
int j = MathHelper.b(this.boundingBox.b);
|
|
|
|
int k = MathHelper.b(this.locZ);
|
2011-01-17 04:03:19 +01:00
|
|
|
|
2011-01-29 22:50:29 +01:00
|
|
|
return super.b() && this.a(i, j, k) >= 0.0F;
|
2011-01-17 04:03:19 +01:00
|
|
|
}
|
|
|
|
}
|