geforkt von Mirrors/Paper
83 Zeilen
2.4 KiB
Java
83 Zeilen
2.4 KiB
Java
package net.minecraft.server;
|
|
|
|
import org.bukkit.event.entity.EntityTargetEvent; // CraftBukkit
|
|
|
|
public class PathfinderGoalMeleeAttack extends PathfinderGoal {
|
|
|
|
World a;
|
|
EntityLiving b;
|
|
EntityLiving c;
|
|
int d;
|
|
float e;
|
|
boolean f;
|
|
PathEntity g;
|
|
Class h;
|
|
private int i;
|
|
|
|
public PathfinderGoalMeleeAttack(EntityLiving entityliving, Class oclass, float f, boolean flag) {
|
|
this(entityliving, f, flag);
|
|
this.h = oclass;
|
|
}
|
|
|
|
public PathfinderGoalMeleeAttack(EntityLiving entityliving, float f, boolean flag) {
|
|
this.d = 0;
|
|
this.b = entityliving;
|
|
this.a = entityliving.world;
|
|
this.e = f;
|
|
this.f = flag;
|
|
this.a(3);
|
|
}
|
|
|
|
public boolean a() {
|
|
EntityLiving entityliving = this.b.at();
|
|
|
|
if (entityliving == null) {
|
|
return false;
|
|
} else if (this.h != null && !this.h.isAssignableFrom(entityliving.getClass())) {
|
|
return false;
|
|
} else {
|
|
this.c = entityliving;
|
|
this.g = this.b.al().a(this.c);
|
|
return this.g != null;
|
|
}
|
|
}
|
|
|
|
public boolean b() {
|
|
EntityLiving entityliving = this.b.at();
|
|
|
|
return entityliving == null ? false : (!this.c.isAlive() ? false : (!this.f ? !this.b.al().e() : this.b.e(MathHelper.floor(this.c.locX), MathHelper.floor(this.c.locY), MathHelper.floor(this.c.locZ))));
|
|
}
|
|
|
|
public void c() {
|
|
this.b.al().a(this.g, this.e);
|
|
this.i = 0;
|
|
}
|
|
|
|
public void d() {
|
|
// CraftBukkit start
|
|
EntityTargetEvent.TargetReason reason = this.c.isAlive() ? EntityTargetEvent.TargetReason.FORGOT_TARGET : EntityTargetEvent.TargetReason.TARGET_DIED;
|
|
org.bukkit.craftbukkit.event.CraftEventFactory.callEntityTargetEvent(b, null, reason);
|
|
// CraftBukkit end
|
|
this.c = null;
|
|
this.b.al().f();
|
|
}
|
|
|
|
public void e() {
|
|
this.b.getControllerLook().a(this.c, 30.0F, 30.0F);
|
|
if ((this.f || this.b.am().canSee(this.c)) && --this.i <= 0) {
|
|
this.i = 4 + this.b.an().nextInt(7);
|
|
this.b.al().a(this.c, this.e);
|
|
}
|
|
|
|
this.d = Math.max(this.d - 1, 0);
|
|
double d0 = (double) (this.b.width * 2.0F * this.b.width * 2.0F);
|
|
|
|
if (this.b.e(this.c.locX, this.c.boundingBox.b, this.c.locZ) <= d0) {
|
|
if (this.d <= 0) {
|
|
this.d = 20;
|
|
this.b.a((Entity) this.c);
|
|
}
|
|
}
|
|
}
|
|
}
|