3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-14 20:10:05 +01:00
Paper/patches/api/0177-Add-ThrownEggHatchEvent.patch

132 Zeilen
4.1 KiB
Diff

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: William Blake Galbreath <blake.galbreath@gmail.com>
Date: Sun, 9 Feb 2020 00:19:08 -0600
Subject: [PATCH] Add ThrownEggHatchEvent
Adds a new event similar to PlayerEggThrowEvent, but without the Player requirement
(dispensers can throw eggs to hatch them, too).
diff --git a/src/main/java/com/destroystokyo/paper/event/entity/ThrownEggHatchEvent.java b/src/main/java/com/destroystokyo/paper/event/entity/ThrownEggHatchEvent.java
new file mode 100644
index 0000000000000000000000000000000000000000..26526049a4c7f7ebe6bea27a9c5a638df3ef8854
2021-06-11 14:02:28 +02:00
--- /dev/null
+++ b/src/main/java/com/destroystokyo/paper/event/entity/ThrownEggHatchEvent.java
@@ -0,0 +1,117 @@
2021-06-11 14:02:28 +02:00
+package com.destroystokyo.paper.event.entity;
+
2024-02-01 10:15:57 +01:00
+import com.google.common.base.Preconditions;
2021-06-11 14:02:28 +02:00
+import org.bukkit.entity.Egg;
+import org.bukkit.entity.EntityType;
+import org.bukkit.event.Event;
+import org.bukkit.event.HandlerList;
2024-02-01 10:15:57 +01:00
+import org.jetbrains.annotations.ApiStatus;
+import org.jspecify.annotations.NullMarked;
2021-06-11 14:02:28 +02:00
+
+/**
+ * Called when a thrown egg might hatch.
+ * <p>
+ * This event fires for all thrown eggs that may hatch, players, dispensers, etc.
+ */
+@NullMarked
2021-06-11 14:02:28 +02:00
+public class ThrownEggHatchEvent extends Event {
2024-02-01 10:15:57 +01:00
+
+ private static final HandlerList HANDLER_LIST = new HandlerList();
+
2021-06-11 14:02:28 +02:00
+ private final Egg egg;
+ private boolean hatching;
+ private byte numHatches;
2024-02-01 10:15:57 +01:00
+ private EntityType hatchType;
2021-06-11 14:02:28 +02:00
+
2024-02-01 10:15:57 +01:00
+ @ApiStatus.Internal
+ public ThrownEggHatchEvent(final Egg egg, final boolean hatching, final byte numHatches, final EntityType hatchingType) {
2021-06-11 14:02:28 +02:00
+ this.egg = egg;
+ this.hatching = hatching;
+ this.numHatches = numHatches;
+ this.hatchType = hatchingType;
+ }
+
+ /**
+ * Gets the egg involved in this event.
+ *
+ * @return the egg involved in this event
+ */
+ public Egg getEgg() {
2024-02-01 10:15:57 +01:00
+ return this.egg;
2021-06-11 14:02:28 +02:00
+ }
+
+ /**
+ * Gets whether the egg is hatching or not. Will be what the server
+ * would've done without interaction.
+ *
+ * @return boolean Whether the egg is going to hatch or not
+ */
+ public boolean isHatching() {
2024-02-01 10:15:57 +01:00
+ return this.hatching;
2021-06-11 14:02:28 +02:00
+ }
+
+ /**
+ * Sets whether the egg will hatch or not.
+ *
2024-02-01 10:15:57 +01:00
+ * @param hatching {@code true} if you want the egg to hatch, {@code false} if you want it
+ * not to
2021-06-11 14:02:28 +02:00
+ */
+ public void setHatching(final boolean hatching) {
2021-06-11 14:02:28 +02:00
+ this.hatching = hatching;
+ }
+
+ /**
2024-02-01 10:15:57 +01:00
+ * Get the type of the mob being hatched ({@link EntityType#CHICKEN} by default)
2021-06-11 14:02:28 +02:00
+ *
+ * @return The type of the mob being hatched by the egg
+ */
+ public EntityType getHatchingType() {
2024-02-01 10:15:57 +01:00
+ return this.hatchType;
2021-06-11 14:02:28 +02:00
+ }
+
+ /**
+ * Change the type of mob being hatched by the egg
+ *
+ * @param hatchType The type of the mob being hatched by the egg
+ */
+ public void setHatchingType(final EntityType hatchType) {
2024-02-01 10:15:57 +01:00
+ Preconditions.checkArgument(hatchType.isSpawnable(), "Can't spawn that entity type from an egg!");
2021-06-11 14:02:28 +02:00
+ this.hatchType = hatchType;
+ }
+
+ /**
+ * Get the number of mob hatches from the egg. By default, the number will
2021-06-11 14:02:28 +02:00
+ * be the number the server would've done
+ * <ul>
2024-02-01 10:15:57 +01:00
+ * <li>7/8 chance of being 0
+ * <li>31/256 ~= 1/8 chance to be 1
+ * <li>1/256 chance to be 4
2021-06-11 14:02:28 +02:00
+ * </ul>
+ *
+ * @return The number of mobs going to be hatched by the egg
+ */
+ public byte getNumHatches() {
2024-02-01 10:15:57 +01:00
+ return this.numHatches;
2021-06-11 14:02:28 +02:00
+ }
+
+ /**
+ * Change the number of mobs coming out of the hatched egg
+ * <p>
2024-02-01 10:15:57 +01:00
+ * The boolean hatching will override this number. I.e. If hatching is
+ * {@code false}, this number will not matter
2021-06-11 14:02:28 +02:00
+ *
+ * @param numHatches The number of mobs coming out of the egg
+ */
+ public void setNumHatches(final byte numHatches) {
2021-06-11 14:02:28 +02:00
+ this.numHatches = numHatches;
+ }
+
+ @Override
+ public HandlerList getHandlers() {
2024-02-01 10:15:57 +01:00
+ return HANDLER_LIST;
2021-06-11 14:02:28 +02:00
+ }
+
+ public static HandlerList getHandlerList() {
2024-02-01 10:15:57 +01:00
+ return HANDLER_LIST;
2021-06-11 14:02:28 +02:00
+ }
+}