-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
BlockPhysicsScriptEvent.java
137 lines (117 loc) · 4.48 KB
/
BlockPhysicsScriptEvent.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
package net.aufdemrand.denizen.events.block;
import net.aufdemrand.denizen.objects.dCuboid;
import net.aufdemrand.denizen.objects.dEllipsoid;
import net.aufdemrand.denizen.objects.dLocation;
import net.aufdemrand.denizen.objects.dMaterial;
import net.aufdemrand.denizen.utilities.DenizenAPI;
import net.aufdemrand.denizen.utilities.debugging.dB;
import net.aufdemrand.denizencore.events.ScriptEvent;
import net.aufdemrand.denizencore.objects.dObject;
import net.aufdemrand.denizencore.scripts.containers.ScriptContainer;
import net.aufdemrand.denizencore.utilities.CoreUtilities;
import org.bukkit.Bukkit;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.block.BlockPhysicsEvent;
import java.util.HashMap;
public class BlockPhysicsScriptEvent extends ScriptEvent implements Listener {
// <--[event]
// @Events
// block physics (in <notable cuboid>)
// <material> physics (in <notable cuboid>)
//
// @Warning This event may fire very rapidly.
//
// @Cancellable true
//
// @Triggers when a block's physics update.
//
// @Context
// <context.location> returns a dLocation of the block the physics is affecting.
// <context.new_material> returns a dMaterial of what the block is becoming.
//
// -->
public BlockPhysicsScriptEvent() {
instance = this;
}
public static BlockPhysicsScriptEvent instance;
public dLocation location;
public dMaterial new_material;
public dMaterial old_material;
public BlockPhysicsEvent event;
@Override
public boolean couldMatch(ScriptContainer scriptContainer, String s) {
String lower = CoreUtilities.toLowerCase(s);
return lower.contains("physics");
}
@Override
public boolean matches(ScriptContainer scriptContainer, String s) {
String lower = CoreUtilities.toLowerCase(s);
if (lower.equals("block physics")) {
return true;
}
if (!lower.startsWith("block")) {
dMaterial mat = dMaterial.valueOf(CoreUtilities.getXthArg(0, lower));
if (mat == null) {
dB.echoError("Invalid event material [BlockPhysics]: '" + s + "' for " + scriptContainer.getName());
return false;
}
if (!old_material.matchesMaterialData(mat.getMaterialData())) {
return false;
}
}
if (CoreUtilities.xthArgEquals(2, lower, "in")) {
String it = CoreUtilities.getXthArg(3, lower);
if (dCuboid.matches(it)) {
dCuboid cuboid = dCuboid.valueOf(it);
if (!cuboid.isInsideCuboid(location)) {
return false;
}
}
else if (dEllipsoid.matches(it)) {
dEllipsoid ellipsoid = dEllipsoid.valueOf(it);
if (!ellipsoid.contains(location)) {
return false;
}
}
else {
dB.echoError("Invalid event 'IN ...' check [BlockPhysics]: '" + s + "' for " + scriptContainer.getName());
return false;
}
}
return true;
}
@Override
public String getName() {
return "BlockPhysics";
}
@Override
public void init() {
Bukkit.getServer().getPluginManager().registerEvents(this, DenizenAPI.getCurrentInstance());
}
@Override
public void destroy() {
BlockPhysicsEvent.getHandlerList().unregister(this);
}
@Override
public boolean applyDetermination(ScriptContainer container, String determination) {
return super.applyDetermination(container, determination);
}
@Override
public HashMap<String, dObject> getContext() {
HashMap<String, dObject> context = super.getContext();
context.put("location", location);
context.put("new_material", new_material);
return context;
}
@EventHandler
public void onBlockPhysics(BlockPhysicsEvent event) {
location = new dLocation(event.getBlock().getLocation());
new_material = dMaterial.getMaterialFrom(event.getChangedType());
old_material = dMaterial.getMaterialFrom(location.getBlock().getType(), location.getBlock().getData());
cancelled = event.isCancelled();
this.event = event;
fire();
event.setCancelled(cancelled);
}
}