aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0313-Add-PlayerItemFrameChangeEvent.patch
blob: 2231459fbb608fb096db7d3c16a1d81e37c6c1f8 (plain)
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
106
107
108
109
110
111
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: SamB440 <sam@islandearth.net>
Date: Mon, 15 Nov 2021 18:09:46 +0000
Subject: [PATCH] Add PlayerItemFrameChangeEvent


diff --git a/src/main/java/io/papermc/paper/event/player/PlayerItemFrameChangeEvent.java b/src/main/java/io/papermc/paper/event/player/PlayerItemFrameChangeEvent.java
new file mode 100644
index 0000000000000000000000000000000000000000..f387477da45a44cc7788ed5342104f535cf3cb98
--- /dev/null
+++ b/src/main/java/io/papermc/paper/event/player/PlayerItemFrameChangeEvent.java
@@ -0,0 +1,99 @@
+package io.papermc.paper.event.player;
+
+import org.bukkit.entity.ItemFrame;
+import org.bukkit.entity.Player;
+import org.bukkit.event.Cancellable;
+import org.bukkit.event.HandlerList;
+import org.bukkit.event.player.PlayerEvent;
+import org.bukkit.inventory.ItemStack;
+import org.jetbrains.annotations.ApiStatus;
+import org.jspecify.annotations.NullMarked;
+import org.jspecify.annotations.Nullable;
+
+/**
+ * Called when an {@link ItemFrame} is having an item rotated, added, or removed from it.
+ */
+@NullMarked
+public class PlayerItemFrameChangeEvent extends PlayerEvent implements Cancellable {
+
+    private static final HandlerList HANDLER_LIST = new HandlerList();
+
+    private final ItemFrame itemFrame;
+    private final ItemFrameChangeAction action;
+    private ItemStack itemStack;
+
+    private boolean cancelled;
+
+    @ApiStatus.Internal
+    public PlayerItemFrameChangeEvent(final Player player, final ItemFrame itemFrame, final ItemStack itemStack, final ItemFrameChangeAction action) {
+        super(player);
+        this.itemFrame = itemFrame;
+        this.itemStack = itemStack;
+        this.action = action;
+    }
+
+    /**
+     * Gets the {@link ItemFrame} involved in this event.
+     *
+     * @return the {@link ItemFrame}
+     */
+    public ItemFrame getItemFrame() {
+        return this.itemFrame;
+    }
+
+    /**
+     * Gets the {@link ItemStack} involved in this event.
+     * This is the item being added, rotated, or removed from the {@link ItemFrame}.
+     * <p>
+     * If this method returns air, then the resulting item in the ItemFrame will be empty.
+     *
+     * @return the {@link ItemStack} being added, rotated, or removed
+     */
+    public ItemStack getItemStack() {
+        return this.itemStack;
+    }
+
+    /**
+     * Sets the {@link ItemStack} that this {@link ItemFrame} holds.
+     * If {@code null} is provided, the ItemStack will become air and the result in the ItemFrame will be empty.
+     *
+     * @param itemStack {@link ItemFrame} item
+     */
+    public void setItemStack(final @Nullable ItemStack itemStack) {
+        this.itemStack = itemStack == null ? ItemStack.empty() : itemStack;
+    }
+
+    /**
+     * Gets the action that was performed on this {@link ItemFrame}.
+     *
+     * @return action performed on the item frame in this event
+     */
+    public ItemFrameChangeAction getAction() {
+        return this.action;
+    }
+
+    @Override
+    public boolean isCancelled() {
+        return this.cancelled;
+    }
+
+    @Override
+    public void setCancelled(final boolean cancel) {
+        this.cancelled = cancel;
+    }
+
+    @Override
+    public HandlerList getHandlers() {
+        return HANDLER_LIST;
+    }
+
+    public static HandlerList getHandlerList() {
+        return HANDLER_LIST;
+    }
+
+    public enum ItemFrameChangeAction {
+        PLACE,
+        REMOVE,
+        ROTATE
+    }
+}