2012-03-09 01:22:09 +01:00
|
|
|
package net.minecraft.server;
|
|
|
|
|
2012-03-09 22:40:59 +01:00
|
|
|
import org.bukkit.event.entity.EntityTargetEvent; // CraftBukkit
|
|
|
|
|
2012-03-09 01:22:09 +01:00
|
|
|
public class PathfinderGoalArrowAttack extends PathfinderGoal {
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
private final EntityInsentient a;
|
2012-10-25 05:53:23 +02:00
|
|
|
private final IRangedEntity b;
|
|
|
|
private EntityLiving c;
|
2013-03-13 23:33:27 +01:00
|
|
|
private int d;
|
2013-07-01 13:03:00 +02:00
|
|
|
private double e;
|
2013-03-13 23:33:27 +01:00
|
|
|
private int f;
|
2012-10-25 05:53:23 +02:00
|
|
|
private int g;
|
2013-03-13 23:33:27 +01:00
|
|
|
private int h;
|
|
|
|
private float i;
|
|
|
|
private float j;
|
2012-03-09 01:22:09 +01:00
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
public PathfinderGoalArrowAttack(IRangedEntity irangedentity, double d0, int i, float f) {
|
|
|
|
this(irangedentity, d0, i, i, f);
|
2013-03-13 23:33:27 +01:00
|
|
|
}
|
|
|
|
|
2013-07-01 13:03:00 +02:00
|
|
|
public PathfinderGoalArrowAttack(IRangedEntity irangedentity, double d0, int i, int j, float f) {
|
2013-03-13 23:33:27 +01:00
|
|
|
this.d = -1;
|
2012-10-25 05:53:23 +02:00
|
|
|
if (!(irangedentity instanceof EntityLiving)) {
|
|
|
|
throw new IllegalArgumentException("ArrowAttackGoal requires Mob implements RangedAttackMob");
|
|
|
|
} else {
|
|
|
|
this.b = irangedentity;
|
2013-07-01 13:03:00 +02:00
|
|
|
this.a = (EntityInsentient) irangedentity;
|
|
|
|
this.e = d0;
|
2012-10-25 05:53:23 +02:00
|
|
|
this.g = i;
|
2013-03-13 23:33:27 +01:00
|
|
|
this.h = j;
|
2013-07-01 13:03:00 +02:00
|
|
|
this.i = f;
|
|
|
|
this.j = f * f;
|
2012-10-25 05:53:23 +02:00
|
|
|
this.a(3);
|
|
|
|
}
|
2012-03-09 01:22:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a() {
|
2013-01-17 10:28:44 +01:00
|
|
|
EntityLiving entityliving = this.a.getGoalTarget();
|
2012-03-09 01:22:09 +01:00
|
|
|
|
|
|
|
if (entityliving == null) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
this.c = entityliving;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean b() {
|
2013-07-01 13:03:00 +02:00
|
|
|
return this.a() || !this.a.getNavigation().g();
|
2012-03-09 01:22:09 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
public void d() {
|
2012-03-09 22:40:59 +01:00
|
|
|
// CraftBukkit start
|
|
|
|
EntityTargetEvent.TargetReason reason = this.c.isAlive() ? EntityTargetEvent.TargetReason.FORGOT_TARGET : EntityTargetEvent.TargetReason.TARGET_DIED;
|
2012-10-25 05:53:23 +02:00
|
|
|
org.bukkit.craftbukkit.event.CraftEventFactory.callEntityTargetEvent((Entity) b, null, reason);
|
2012-03-09 22:40:59 +01:00
|
|
|
// CraftBukkit end
|
2012-03-09 01:22:09 +01:00
|
|
|
this.c = null;
|
2012-10-25 05:53:23 +02:00
|
|
|
this.f = 0;
|
2013-03-13 23:33:27 +01:00
|
|
|
this.d = -1;
|
2012-03-09 01:22:09 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
public void e() {
|
|
|
|
double d0 = this.a.e(this.c.locX, this.c.boundingBox.b, this.c.locZ);
|
2013-04-27 11:40:05 +02:00
|
|
|
boolean flag = this.a.getEntitySenses().canSee(this.c);
|
2012-03-09 01:22:09 +01:00
|
|
|
|
|
|
|
if (flag) {
|
|
|
|
++this.f;
|
|
|
|
} else {
|
|
|
|
this.f = 0;
|
|
|
|
}
|
|
|
|
|
2013-03-13 23:33:27 +01:00
|
|
|
if (d0 <= (double) this.j && this.f >= 20) {
|
2013-07-01 13:03:00 +02:00
|
|
|
this.a.getNavigation().h();
|
2012-03-09 01:22:09 +01:00
|
|
|
} else {
|
2013-07-01 13:03:00 +02:00
|
|
|
this.a.getNavigation().a((Entity) this.c, this.e);
|
2012-03-09 01:22:09 +01:00
|
|
|
}
|
|
|
|
|
2012-10-25 05:53:23 +02:00
|
|
|
this.a.getControllerLook().a(this.c, 30.0F, 30.0F);
|
2013-03-13 23:33:27 +01:00
|
|
|
float f;
|
|
|
|
|
|
|
|
if (--this.d == 0) {
|
|
|
|
if (d0 > (double) this.j || !flag) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
f = MathHelper.sqrt(d0) / this.i;
|
|
|
|
float f1 = f;
|
|
|
|
|
|
|
|
if (f < 0.1F) {
|
|
|
|
f1 = 0.1F;
|
2012-03-09 01:22:09 +01:00
|
|
|
}
|
2013-03-13 23:33:27 +01:00
|
|
|
|
|
|
|
if (f1 > 1.0F) {
|
|
|
|
f1 = 1.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.b.a(this.c, f1);
|
|
|
|
this.d = MathHelper.d(f * (float) (this.h - this.g) + (float) this.g);
|
|
|
|
} else if (this.d < 0) {
|
|
|
|
f = MathHelper.sqrt(d0) / this.i;
|
|
|
|
this.d = MathHelper.d(f * (float) (this.h - this.g) + (float) this.g);
|
2012-03-09 01:22:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|