-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
PlayerOpensInvScriptEvent.java
92 lines (80 loc) · 2.7 KB
/
PlayerOpensInvScriptEvent.java
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
package com.denizenscript.denizen.events.player;
import com.denizenscript.denizen.objects.EntityTag;
import com.denizenscript.denizen.objects.InventoryTag;
import com.denizenscript.denizen.utilities.implementation.BukkitScriptEntryData;
import com.denizenscript.denizen.events.BukkitScriptEvent;
import com.denizenscript.denizencore.objects.ObjectTag;
import com.denizenscript.denizencore.scripts.ScriptEntryData;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.inventory.InventoryOpenEvent;
public class PlayerOpensInvScriptEvent extends BukkitScriptEvent implements Listener {
// <--[event]
// @Events
// player opens inventory
// player opens <inventory>
//
// @Regex ^on player opens [^\s]+$
//
// @Switch in:<area> to only process the event if it occurred within a specified area.
//
// @Triggers when a player opens an inventory. (EG, chests, not the player's main inventory.)
//
// @Context
// <context.inventory> returns the InventoryTag.
//
// @Player Always.
//
// -->
public PlayerOpensInvScriptEvent() {
instance = this;
}
public static PlayerOpensInvScriptEvent instance;
public InventoryTag inventory;
public InventoryOpenEvent event;
@Override
public boolean couldMatch(ScriptPath path) {
if (!path.eventLower.startsWith("player opens")) {
return false;
}
if (!couldMatchInventory(path.eventArgLowerAt(2))) {
return false;
}
return true;
}
@Override
public boolean matches(ScriptPath path) {
if (!tryInventory(inventory, path.eventArgLowerAt(2))) {
return false;
}
if (!runInCheck(path, inventory.getLocation())) {
return false;
}
return super.matches(path);
}
@Override
public String getName() {
return "PlayerOpensInv";
}
@Override
public ScriptEntryData getScriptEntryData() {
// TODO: Store the player / npc?
return new BukkitScriptEntryData(event != null ? EntityTag.getPlayerFrom(event.getPlayer()) : null, null);
}
@Override
public ObjectTag getContext(String name) {
if (name.equals("inventory")) {
return inventory;
}
return super.getContext(name);
}
@EventHandler
public void onPlayerOpensInv(InventoryOpenEvent event) {
if (EntityTag.isNPC(event.getPlayer())) {
return;
}
inventory = InventoryTag.mirrorBukkitInventory(event.getInventory());
this.event = event;
fire(event);
}
}