1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
package net.minecraft.server;
import org.bukkit.event.entity.EntityTargetEvent; // CraftBukkit
public class PathfinderGoalArrowAttack extends PathfinderGoal {
private final EntityInsentient a;
private final IRangedEntity b;
private EntityLiving c;
private int d;
private double e;
private int f;
private int g;
private int h;
private float i;
private float j;
public PathfinderGoalArrowAttack(IRangedEntity irangedentity, double d0, int i, float f) {
this(irangedentity, d0, i, i, f);
}
public PathfinderGoalArrowAttack(IRangedEntity irangedentity, double d0, int i, int j, float f) {
this.d = -1;
if (!(irangedentity instanceof EntityLiving)) {
throw new IllegalArgumentException("ArrowAttackGoal requires Mob implements RangedAttackMob");
} else {
this.b = irangedentity;
this.a = (EntityInsentient) irangedentity;
this.e = d0;
this.g = i;
this.h = j;
this.i = f;
this.j = f * f;
this.a(3);
}
}
public boolean a() {
EntityLiving entityliving = this.a.getGoalTarget();
if (entityliving == null) {
return false;
} else {
this.c = entityliving;
return true;
}
}
public boolean b() {
return this.a() || !this.a.getNavigation().g();
}
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((Entity) b, null, reason);
// CraftBukkit end
this.c = null;
this.f = 0;
this.d = -1;
}
public void e() {
double d0 = this.a.e(this.c.locX, this.c.boundingBox.b, this.c.locZ);
boolean flag = this.a.getEntitySenses().canSee(this.c);
if (flag) {
++this.f;
} else {
this.f = 0;
}
if (d0 <= (double) this.j && this.f >= 20) {
this.a.getNavigation().h();
} else {
this.a.getNavigation().a((Entity) this.c, this.e);
}
this.a.getControllerLook().a(this.c, 30.0F, 30.0F);
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;
}
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);
}
}
}
|