-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
EntityBreaksHangingScriptEvent.java
147 lines (130 loc) · 4.95 KB
/
EntityBreaksHangingScriptEvent.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
package net.aufdemrand.denizen.events.entity;
import net.aufdemrand.denizen.BukkitScriptEntryData;
import net.aufdemrand.denizen.events.BukkitScriptEvent;
import net.aufdemrand.denizen.objects.dCuboid;
import net.aufdemrand.denizen.objects.dEntity;
import net.aufdemrand.denizen.objects.dLocation;
import net.aufdemrand.denizencore.objects.Element;
import net.aufdemrand.denizencore.objects.dList;
import net.aufdemrand.denizencore.objects.dObject;
import net.aufdemrand.denizencore.scripts.ScriptEntryData;
import net.aufdemrand.denizencore.scripts.containers.ScriptContainer;
import net.aufdemrand.denizencore.utilities.CoreUtilities;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.hanging.HangingBreakByEntityEvent;
public class EntityBreaksHangingScriptEvent extends BukkitScriptEvent implements Listener {
// <--[event]
// @Events
// entity breaks hanging (because <cause>)
// entity breaks <hanging> (because <cause>)
// <entity> breaks hanging (because <cause>)
// <entity> breaks <hanging> (because <cause>)
//
// @Regex ^on [^\s]+ breaks [^\s]+( because [^\s]+)?$
// @Switch in <area>
//
// @Cancellable true
//
// @Triggers when a hanging entity (painting, item_frame, or leash_hitch) is broken.
//
// @Context
// <context.cause> returns the cause of the entity breaking. Causes list: <@link url http://bit.ly/1BeqxPX>
// <context.breaker> returns the dEntity that broke the hanging entity, if any.
// <context.hanging> returns the dEntity of the hanging.
// <context.cuboids> DEPRECATED.
// <context.location> DEPRECATED.
//
// @Player when the breaker is a player.
//
// @NPC when the breaker is an npc.
//
// -->
public EntityBreaksHangingScriptEvent() {
instance = this;
}
public static EntityBreaksHangingScriptEvent instance;
public Element cause;
public dEntity breaker;
public dEntity hanging;
public dList cuboids;
public dLocation location;
public HangingBreakByEntityEvent event;
@Override
public boolean couldMatch(ScriptContainer scriptContainer, String s) {
String lower = CoreUtilities.toLowerCase(s);
String cmd = CoreUtilities.getXthArg(1, lower);
return cmd.equals("breaks");
}
@Override
public boolean matches(ScriptPath path) {
String lower = path.eventLower;
String entName = CoreUtilities.getXthArg(0, lower);
String hang = CoreUtilities.getXthArg(2, lower);
if (!tryEntity(breaker, entName)) {
return false;
}
if (!hang.equals("hanging") && !tryEntity(hanging, hang)) {
return false;
}
if (!runInCheck(path, location)) {
return false;
}
if (CoreUtilities.xthArgEquals(3, lower, "because") && !CoreUtilities.getXthArg(4, lower).equals(CoreUtilities.toLowerCase(cause.asString()))) {
return false;
}
return true;
}
@Override
public String getName() {
return "EntityBreaksHanging";
}
@Override
public boolean applyDetermination(ScriptContainer container, String determination) {
return super.applyDetermination(container, determination);
}
@Override
public ScriptEntryData getScriptEntryData() {
// TODO: What if the hanging is an NPC?
return new BukkitScriptEntryData(breaker.isPlayer() ? breaker.getDenizenPlayer() : null,
breaker.isCitizensNPC() ? breaker.getDenizenNPC() : null);
}
@Override
public dObject getContext(String name) {
if (name.equals("cause")) {
return cause;
}
else if (name.equals("entity")) { // NOTE: Deprecated in favor of context.breaker
return breaker;
}
else if (name.equals("breaker")) {
return breaker;
}
else if (name.equals("hanging")) {
return hanging;
}
else if (name.equals("cuboids")) { // NOTE: Deprecated in favor of context.location.cuboids
if (cuboids == null) {
cuboids = new dList();
for (dCuboid cuboid : dCuboid.getNotableCuboidsContaining(location)) {
cuboids.add(cuboid.identifySimple());
}
}
return cuboids;
}
else if (name.equals("location")) {
return location;
}
return super.getContext(name);
}
@EventHandler
public void onHangingBreaks(HangingBreakByEntityEvent event) {
hanging = new dEntity(event.getEntity());
cause = new Element(event.getCause().name());
location = new dLocation(hanging.getLocation());
breaker = new dEntity(event.getRemover());
cuboids = null;
this.event = event;
fire(event);
}
}