2021-06-22 09:44:02 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
|
|
Date: Fri, 28 May 2021 21:06:59 -0400
|
|
|
|
Subject: [PATCH] Missing Entity Behavior API
|
|
|
|
|
|
|
|
|
2021-10-21 03:09:42 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/entity/AbstractHorse.java b/src/main/java/org/bukkit/entity/AbstractHorse.java
|
|
|
|
index 2bbf1d074b7d46e176f2589db7abe5e3ef47871c..e023ed37963177e35bfe78105768ca6b2af6c2a1 100644
|
|
|
|
--- a/src/main/java/org/bukkit/entity/AbstractHorse.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/AbstractHorse.java
|
|
|
|
@@ -105,4 +105,54 @@ public interface AbstractHorse extends Vehicle, InventoryHolder, Tameable {
|
|
|
|
@NotNull
|
|
|
|
@Override
|
|
|
|
public AbstractHorseInventory getInventory();
|
|
|
|
+
|
|
|
|
+ // Paper start - Horse API
|
|
|
|
+ /**
|
|
|
|
+ * Gets if a horse is in their eating grass animation.
|
|
|
|
+ *
|
|
|
|
+ * @return eating grass animation is active
|
|
|
|
+ */
|
|
|
|
+ public boolean isEatingGrass();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets if a horse is in their eating grass animation.
|
|
|
|
+ *
|
|
|
|
+ * <p>When true, the horse will lower its neck.</p>
|
|
|
|
+ *
|
|
|
|
+ * @param eating eating grass animation is active
|
|
|
|
+ */
|
|
|
|
+ public void setEatingGrass(boolean eating);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if a horse is in their rearing animation.
|
|
|
|
+ *
|
|
|
|
+ * @return rearing animation is active
|
|
|
|
+ */
|
|
|
|
+ public boolean isRearing();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets if a horse is in their rearing animation.
|
|
|
|
+ *
|
|
|
|
+ * <p>When true, the horse will stand on its hind legs.</p>
|
|
|
|
+ *
|
|
|
|
+ * @param rearing rearing animation is active
|
|
|
|
+ */
|
|
|
|
+ public void setRearing(boolean rearing);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if a horse is in their eating animation.
|
|
|
|
+ *
|
|
|
|
+ * @return eating animation is active
|
|
|
|
+ */
|
|
|
|
+ public boolean isEating();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets if a horse is in their eating animation.
|
|
|
|
+ *
|
|
|
|
+ * <p>When true, the horse will bob its head.</p>
|
|
|
|
+ *
|
|
|
|
+ * @param eating eating animation is active
|
|
|
|
+ */
|
|
|
|
+ public void setEating(boolean eating);
|
|
|
|
+ // Paper end - Horse API
|
|
|
|
}
|
2021-08-27 20:16:41 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Cat.java b/src/main/java/org/bukkit/entity/Cat.java
|
|
|
|
index c2a566b864c82ffb094b7334d9e6e25a1bfc87d1..c340fecb61bac66baf0f44189d21bc85289b1269 100644
|
|
|
|
--- a/src/main/java/org/bukkit/entity/Cat.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Cat.java
|
|
|
|
@@ -54,4 +54,36 @@ public interface Cat extends Tameable, Sittable {
|
|
|
|
JELLIE,
|
|
|
|
ALL_BLACK;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper Start - More cat api
|
|
|
|
+ /**
|
|
|
|
+ * Sets if the cat is lying down.
|
|
|
|
+ * This is visual and does not affect the behaviour of the cat.
|
|
|
|
+ *
|
|
|
|
+ * @param lyingDown whether the cat should lie down
|
|
|
|
+ */
|
|
|
|
+ public void setLyingDown(boolean lyingDown);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if the cat is lying down.
|
|
|
|
+ *
|
|
|
|
+ * @return whether the cat is lying down
|
|
|
|
+ */
|
|
|
|
+ public boolean isLyingDown();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets if the cat has its head up.
|
|
|
|
+ * This is visual and does not affect the behaviour of the cat.
|
|
|
|
+ *
|
|
|
|
+ * @param headUp head is up
|
|
|
|
+ */
|
|
|
|
+ public void setHeadUp(boolean headUp);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if the cat has its head up.
|
|
|
|
+ *
|
|
|
|
+ * @return head is up
|
|
|
|
+ */
|
|
|
|
+ public boolean isHeadUp();
|
|
|
|
+ // Paper End - More cat api
|
|
|
|
}
|
2021-06-22 09:44:02 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Fox.java b/src/main/java/org/bukkit/entity/Fox.java
|
|
|
|
index 498e182846b81d50b3a594254e8b341fb23e8763..3826363a1954afcddaadec7f96ac18300f8e89e9 100644
|
|
|
|
--- a/src/main/java/org/bukkit/entity/Fox.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Fox.java
|
|
|
|
@@ -85,4 +85,62 @@ public interface Fox extends Animals, Sittable {
|
|
|
|
RED,
|
|
|
|
SNOW;
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start - Add more fox behavior API
|
|
|
|
+ /**
|
|
|
|
+ * Sets if the fox is interested.
|
|
|
|
+ *
|
|
|
|
+ * @param interested is interested
|
|
|
|
+ */
|
|
|
|
+ public void setInterested(boolean interested);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if the fox is interested.
|
|
|
|
+ *
|
|
|
|
+ * @return fox is interested
|
|
|
|
+ */
|
|
|
|
+ public boolean isInterested();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets if the fox is leaping.
|
|
|
|
+ *
|
|
|
|
+ * @param leaping is leaping
|
|
|
|
+ */
|
|
|
|
+ public void setLeaping(boolean leaping);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if the fox is leaping.
|
|
|
|
+ *
|
|
|
|
+ * @return fox is leaping
|
|
|
|
+ */
|
|
|
|
+ public boolean isLeaping();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets if the fox is defending.
|
|
|
|
+ *
|
|
|
|
+ * @param defending is defending
|
|
|
|
+ */
|
|
|
|
+ public void setDefending(boolean defending);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if the fox is defending.
|
|
|
|
+ *
|
|
|
|
+ * @return fox is defending
|
|
|
|
+ */
|
|
|
|
+ public boolean isDefending();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets if the fox face planted.
|
|
|
|
+ *
|
|
|
|
+ * @param faceplanted face planted
|
|
|
|
+ */
|
|
|
|
+ public void setFaceplanted(boolean faceplanted);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets if the fox face planted.
|
|
|
|
+ *
|
|
|
|
+ * @return fox face planted
|
|
|
|
+ */
|
|
|
|
+ public boolean isFaceplanted();
|
|
|
|
+ // Paper end - Add more fox behavior API
|
|
|
|
}
|