summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEvilSeph <evilseph@gmail.com>2012-03-09 14:25:44 -0500
committerEvilSeph <evilseph@gmail.com>2012-03-09 14:25:44 -0500
commit9b5a4d68b9658ffae40aa027a4fb758a3b68cfb4 (patch)
treea0cafb249964ab7f405c8874e7235519e9debb7b /src
parentc4b4afa14df1714da6b7d21424aaa37d25a69534 (diff)
downloadcraftbukkit-9b5a4d68b9658ffae40aa027a4fb758a3b68cfb4.tar
craftbukkit-9b5a4d68b9658ffae40aa027a4fb758a3b68cfb4.tar.gz
craftbukkit-9b5a4d68b9658ffae40aa027a4fb758a3b68cfb4.tar.lz
craftbukkit-9b5a4d68b9658ffae40aa027a4fb758a3b68cfb4.tar.xz
craftbukkit-9b5a4d68b9658ffae40aa027a4fb758a3b68cfb4.zip
Added PathfinderGoalEatTile for diff visibility.
Diffstat (limited to 'src')
-rw-r--r--src/main/java/net/minecraft/server/PathfinderGoalEatTile.java63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/main/java/net/minecraft/server/PathfinderGoalEatTile.java b/src/main/java/net/minecraft/server/PathfinderGoalEatTile.java
new file mode 100644
index 00000000..196d5682
--- /dev/null
+++ b/src/main/java/net/minecraft/server/PathfinderGoalEatTile.java
@@ -0,0 +1,63 @@
+package net.minecraft.server;
+
+public class PathfinderGoalEatTile extends PathfinderGoal {
+
+ private EntityLiving b;
+ private World c;
+ int a = 0;
+
+ public PathfinderGoalEatTile(EntityLiving entityliving) {
+ this.b = entityliving;
+ this.c = entityliving.world;
+ this.a(7);
+ }
+
+ public boolean a() {
+ if (this.b.am().nextInt(this.b.isBaby() ? 50 : 1000) != 0) {
+ return false;
+ } else {
+ int i = MathHelper.floor(this.b.locX);
+ int j = MathHelper.floor(this.b.locY);
+ int k = MathHelper.floor(this.b.locZ);
+
+ return this.c.getTypeId(i, j, k) == Block.LONG_GRASS.id && this.c.getData(i, j, k) == 1 ? true : this.c.getTypeId(i, j - 1, k) == Block.GRASS.id;
+ }
+ }
+
+ public void c() {
+ this.a = 40;
+ this.c.broadcastEntityEffect(this.b, (byte) 10);
+ this.b.ak().f();
+ }
+
+ public void d() {
+ this.a = 0;
+ }
+
+ public boolean b() {
+ return this.a > 0;
+ }
+
+ public int f() {
+ return this.a;
+ }
+
+ public void e() {
+ this.a = Math.max(0, this.a - 1);
+ if (this.a == 4) {
+ int i = MathHelper.floor(this.b.locX);
+ int j = MathHelper.floor(this.b.locY);
+ int k = MathHelper.floor(this.b.locZ);
+
+ if (this.c.getTypeId(i, j, k) == Block.LONG_GRASS.id) {
+ this.c.triggerEffect(2001, i, j, k, Block.LONG_GRASS.id + 4096);
+ this.c.setTypeId(i, j, k, 0);
+ this.b.z();
+ } else if (this.c.getTypeId(i, j - 1, k) == Block.GRASS.id) {
+ this.c.triggerEffect(2001, i, j - 1, k, Block.GRASS.id);
+ this.c.setTypeId(i, j - 1, k, Block.DIRT.id);
+ this.b.z();
+ }
+ }
+ }
+}