Paper/patches/api/0293-Add-PufferFishStateCha...

100 lines
3.0 KiB
Diff
Raw Normal View History

2021-06-11 14:02:28 +02:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: HexedHero <6012891+HexedHero@users.noreply.github.com>
Date: Mon, 10 May 2021 16:58:38 +0100
Subject: [PATCH] Add PufferFishStateChangeEvent
diff --git a/src/main/java/io/papermc/paper/event/entity/PufferFishStateChangeEvent.java b/src/main/java/io/papermc/paper/event/entity/PufferFishStateChangeEvent.java
new file mode 100644
2024-02-01 10:15:57 +01:00
index 0000000000000000000000000000000000000000..4e04b49c1e2bc2a965c9be2388539d9ed5a58f89
2021-06-11 14:02:28 +02:00
--- /dev/null
+++ b/src/main/java/io/papermc/paper/event/entity/PufferFishStateChangeEvent.java
2024-02-01 10:15:57 +01:00
@@ -0,0 +1,87 @@
2021-06-11 14:02:28 +02:00
+package io.papermc.paper.event.entity;
+
+import org.bukkit.entity.PufferFish;
+import org.bukkit.event.Cancellable;
+import org.bukkit.event.HandlerList;
+import org.bukkit.event.entity.EntityEvent;
2024-02-01 10:15:57 +01:00
+import org.jetbrains.annotations.ApiStatus;
2021-06-11 14:02:28 +02:00
+import org.jetbrains.annotations.NotNull;
+
+/**
+ * Called just before a {@link PufferFish} inflates or deflates.
+ */
+public class PufferFishStateChangeEvent extends EntityEvent implements Cancellable {
2024-02-01 10:15:57 +01:00
+
+ private static final HandlerList HANDLER_LIST = new HandlerList();
+
+ private final int newPuffState;
2021-06-11 14:02:28 +02:00
+ private boolean cancelled;
+
2024-02-01 10:15:57 +01:00
+ @ApiStatus.Internal
2021-06-11 14:02:28 +02:00
+ public PufferFishStateChangeEvent(@NotNull PufferFish entity, int newPuffState) {
+ super(entity);
+ this.newPuffState = newPuffState;
+ }
+
+ @NotNull
+ @Override
+ public PufferFish getEntity() {
2024-02-01 10:15:57 +01:00
+ return (PufferFish) super.getEntity();
2021-06-11 14:02:28 +02:00
+ }
+
+ /**
+ * Get the <strong>new</strong> puff state of the {@link PufferFish}.
+ * <p>
+ * This is what the {@link PufferFish}'s new puff state will be after this event if it isn't cancelled.<br>
+ * Refer to {@link PufferFish#getPuffState()} to get the current puff state.
2024-02-01 10:15:57 +01:00
+ *
2021-06-11 14:02:28 +02:00
+ * @return The <strong>new</strong> puff state, 0 being not inflated, 1 being slightly inflated and 2 being fully inflated
+ */
+ public int getNewPuffState() {
+ return this.newPuffState;
+ }
+
+ /**
+ * Get if the {@link PufferFish} is going to inflate.
2024-02-01 10:15:57 +01:00
+ *
+ * @return If it's going to inflate
2021-06-11 14:02:28 +02:00
+ */
+ public boolean isInflating() {
2024-02-01 10:15:57 +01:00
+ return this.newPuffState > this.getEntity().getPuffState();
2021-06-11 14:02:28 +02:00
+ }
+
+ /**
+ * Get if the {@link PufferFish} is going to deflate.
2024-02-01 10:15:57 +01:00
+ *
+ * @return If it's going to deflate
2021-06-11 14:02:28 +02:00
+ */
+ public boolean isDeflating() {
2024-02-01 10:15:57 +01:00
+ return this.newPuffState < this.getEntity().getPuffState();
2021-06-11 14:02:28 +02:00
+ }
+
+ /**
2024-02-01 10:15:57 +01:00
+ * Set whether to cancel the {@link PufferFish} (in/de)flating.
2021-06-11 14:02:28 +02:00
+ *
2024-02-01 10:15:57 +01:00
+ * @param cancel {@code true} if you wish to cancel the (in/de)flation
2021-06-11 14:02:28 +02:00
+ */
+ @Override
+ public void setCancelled(boolean cancel) {
+ this.cancelled = cancel;
+ }
+
+ @Override
+ public boolean isCancelled() {
2024-02-01 10:15:57 +01:00
+ return this.cancelled;
2021-06-11 14:02:28 +02:00
+ }
+
+ @NotNull
+ @Override
+ public HandlerList getHandlers() {
2024-02-01 10:15:57 +01:00
+ return HANDLER_LIST;
2021-06-11 14:02:28 +02:00
+ }
+
+ @NotNull
+ public static HandlerList getHandlerList() {
2024-02-01 10:15:57 +01:00
+ return HANDLER_LIST;
2021-06-11 14:02:28 +02:00
+ }
+}