3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-18 05:50:04 +01:00
Paper/src/main/java/net/minecraft/server/EntityCreature.java

212 Zeilen
6.7 KiB
Java

package net.minecraft.server;
// CraftBukkit start
import org.bukkit.craftbukkit.CraftServer;
2011-01-26 20:26:24 +01:00
import org.bukkit.craftbukkit.entity.CraftEntity;
import org.bukkit.craftbukkit.TrigMath;
2011-01-26 20:26:24 +01:00
import org.bukkit.event.entity.EntityTargetEvent;
import org.bukkit.event.entity.EntityTargetEvent.TargetReason;
// CraftBukkit end
public class EntityCreature extends EntityLiving {
public PathEntity pathEntity; // CraftBukkit - public
public Entity target; // CraftBukkit - public
2011-01-29 22:50:29 +01:00
protected boolean e = false;
public EntityCreature(World world) {
super(world);
}
2011-03-31 22:40:00 +02:00
protected boolean u() {
return false;
}
2011-02-23 03:37:56 +01:00
protected void c_() {
2011-03-31 22:40:00 +02:00
this.e = this.u();
2011-01-29 22:50:29 +01:00
float f = 16.0F;
if (this.target == null) {
2011-01-26 20:26:24 +01:00
// CraftBukkit start
Entity target = this.findTarget();
2011-01-29 22:50:29 +01:00
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-02-23 13:56:36 +01:00
2011-01-29 22:50:29 +01:00
if (!event.isCancelled()) {
if (event.getTarget() == null) {
this.target = null;
2011-01-26 20:26:24 +01:00
} else {
this.target = ((CraftEntity) event.getTarget()).getHandle();
2011-01-26 20:26:24 +01:00
}
}
}
// CraftBukkit end
if (this.target != null) {
this.pathEntity = this.world.findPath(this, this.target, f);
}
} else if (!this.target.N()) {
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-02-23 13:56:36 +01:00
2011-01-29 22:50:29 +01:00
if (!event.isCancelled()) {
if (event.getTarget() == null) {
this.target = null;
2011-01-26 20:26:24 +01:00
} else {
this.target = ((CraftEntity) event.getTarget()).getHandle();
2011-01-26 20:26:24 +01:00
}
}
// CraftBukkit end
} else {
float f1 = this.target.f(this);
if (this.e(this.target)) {
this.a(this.target, f1);
}
}
2011-01-29 22:50:29 +01:00
if (!this.e && this.target != null && (this.pathEntity == null || this.random.nextInt(20) == 0)) {
this.pathEntity = this.world.findPath(this, this.target, f);
} else if (!this.e && (this.pathEntity == null && this.random.nextInt(80) == 0 || this.random.nextInt(80) == 0)) {
boolean flag = false;
2011-01-29 22:50:29 +01:00
int i = -1;
int j = -1;
int k = -1;
2011-01-29 22:50:29 +01:00
float f2 = -99999.0F;
2011-01-29 22:50:29 +01:00
for (int l = 0; l < 10; ++l) {
int i1 = MathHelper.floor(this.locX + (double) this.random.nextInt(13) - 6.0D);
int j1 = MathHelper.floor(this.locY + (double) this.random.nextInt(7) - 3.0D);
int k1 = MathHelper.floor(this.locZ + (double) this.random.nextInt(13) - 6.0D);
2011-01-29 22:50:29 +01:00
float f3 = this.a(i1, j1, k1);
if (f3 > f2) {
f2 = f3;
2011-01-29 22:50:29 +01:00
i = i1;
j = j1;
k = k1;
flag = true;
}
}
if (flag) {
this.pathEntity = this.world.a(this, i, j, k, 10.0F);
}
}
int l1 = MathHelper.floor(this.boundingBox.b);
2011-02-23 03:37:56 +01:00
boolean flag1 = this.g_();
2011-03-31 22:40:00 +02:00
boolean flag2 = this.V();
2011-01-29 22:50:29 +01:00
this.pitch = 0.0F;
if (this.pathEntity != null && this.random.nextInt(100) != 0) {
Vec3D vec3d = this.pathEntity.a(this);
2011-01-29 22:50:29 +01:00
double d0 = (double) (this.length * 2.0F);
while (vec3d != null && vec3d.d(this.locX, vec3d.b, this.locZ) < d0 * d0) {
this.pathEntity.a();
if (this.pathEntity.b()) {
2011-01-29 22:50:29 +01:00
vec3d = null;
this.pathEntity = null;
2011-01-29 22:50:29 +01:00
} else {
vec3d = this.pathEntity.a(this);
2011-01-29 22:50:29 +01:00
}
}
2011-01-29 22:50:29 +01:00
2011-02-23 03:37:56 +01:00
this.ax = false;
2011-01-29 22:50:29 +01:00
if (vec3d != null) {
double d1 = vec3d.a - this.locX;
double d2 = vec3d.c - this.locZ;
double d3 = vec3d.b - (double) l1;
2011-02-23 13:56:36 +01:00
// CraftBukkit -- Math -> TrigMath
float f4 = (float) (TrigMath.atan2(d2, d1) * 180.0D / 3.1415927410125732D) - 90.0F;
2011-01-29 22:50:29 +01:00
float f5 = f4 - this.yaw;
2011-02-23 03:37:56 +01:00
for (this.av = this.az; f5 < -180.0F; f5 += 360.0F) {
2011-01-29 22:50:29 +01:00
;
}
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.target != null) {
double d4 = this.target.locX - this.locX;
double d5 = this.target.locZ - this.locZ;
2011-01-29 22:50:29 +01:00
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.au = -MathHelper.sin(f5) * this.av * 1.0F;
this.av = MathHelper.cos(f5) * this.av * 1.0F;
2011-01-29 22:50:29 +01:00
}
if (d3 > 0.0D) {
2011-02-23 03:37:56 +01:00
this.ax = true;
2011-01-29 22:50:29 +01:00
}
}
if (this.target != null) {
this.a(this.target, 30.0F, 30.0F);
2011-01-29 22:50:29 +01:00
}
if (this.positionChanged) {
2011-02-23 03:37:56 +01:00
this.ax = true;
}
2011-01-29 22:50:29 +01:00
if (this.random.nextFloat() < 0.8F && (flag1 || flag2)) {
2011-02-23 03:37:56 +01:00
this.ax = true;
}
2011-01-29 22:50:29 +01:00
} else {
2011-02-23 03:37:56 +01:00
super.c_();
this.pathEntity = null;
}
}
protected void a(Entity entity, float f) {}
protected float a(int i, int j, int k) {
return 0.0F;
}
protected Entity findTarget() {
return null;
}
public boolean b() {
int i = MathHelper.floor(this.locX);
int j = MathHelper.floor(this.boundingBox.b);
int k = MathHelper.floor(this.locZ);
2011-01-29 22:50:29 +01:00
return super.b() && this.a(i, j, k) >= 0.0F;
}
2011-03-31 22:40:00 +02:00
public boolean z() {
return this.pathEntity != null;
2011-03-31 22:40:00 +02:00
}
public void a(PathEntity pathentity) {
this.pathEntity = pathentity;
2011-03-31 22:40:00 +02:00
}
public Entity A() {
return this.target;
2011-03-31 22:40:00 +02:00
}
public void c(Entity entity) {
this.target = entity;
2011-03-31 22:40:00 +02:00
}
}