use of org.bukkit.event.inventory.InventoryEvent in project TriggerReactor by wysohn.
the class JavaPluginBridge method createInterrupterForInv.
@Override
public ProcessInterrupter createInterrupterForInv(Object e, Interpreter interpreter, Map<UUID, Long> cooldowns, Map<IInventory, InventoryTrigger> inventoryMap) {
return new ProcessInterrupter() {
@Override
public boolean onNodeProcess(Node node) {
if (interpreter.isCooldown()) {
if (e instanceof InventoryInteractEvent) {
HumanEntity he = ((InventoryInteractEvent) e).getWhoClicked();
if (he instanceof Player) {
Player player = (Player) he;
UUID uuid = player.getUniqueId();
cooldowns.put(uuid, interpreter.getCooldownEnd());
}
}
return false;
}
// is still running after the inventory is closed.
if (e instanceof InventoryOpenEvent || e instanceof InventoryClickEvent) {
Inventory inv = ((InventoryEvent) e).getInventory();
// it's not GUI so stop execution
if (!inventoryMap.containsKey(new BukkitInventory(inv)))
return true;
}
return false;
}
@Override
public boolean onCommand(Object context, String command, Object[] args) {
if ("CALL".equals(command)) {
if (args.length < 1)
throw new RuntimeException("Need parameter [String] or [String, boolean]");
if (args[0] instanceof String) {
Trigger trigger = getNamedTriggerManager().getTriggerForName((String) args[0]);
if (trigger == null)
throw new RuntimeException("No trigger found for Named Trigger " + args[0]);
if (args.length > 1 && args[1] instanceof Boolean) {
trigger.setSync((boolean) args[1]);
} else {
trigger.setSync(true);
}
if (trigger.isSync()) {
trigger.activate(e, interpreter.getVars());
} else {
// use snapshot to avoid concurrent modification
trigger.activate(e, new HashMap<>(interpreter.getVars()));
}
return true;
} else {
throw new RuntimeException("Parameter type not match; it should be a String." + " Make sure to put double quotes, if you provided String literal.");
}
} else if ("CANCELEVENT".equals(command)) {
if (!interpreter.isSync())
throw new RuntimeException("CANCELEVENT is illegal in async mode!");
if (context instanceof Cancellable) {
((Cancellable) context).setCancelled(true);
return true;
} else {
throw new RuntimeException(context + " is not a Cancellable event!");
}
}
return false;
}
};
}
use of org.bukkit.event.inventory.InventoryEvent in project CommandHelper by EngineHub.
the class BukkitAbstractEventMixin method evaluate_helper.
@Override
public Map<String, Construct> evaluate_helper(BindableEvent event) throws EventException {
Map<String, Construct> map = new HashMap<>();
map.put("event_type", new CString(mySuper.getName(), Target.UNKNOWN));
String macro;
Object e = event._GetObject();
if (e instanceof BlockEvent) {
macro = "block";
} else if (e instanceof EntityEvent) {
macro = "entity";
if (((EntityEvent) e).getEntity() instanceof Player) {
Entity entity = ((EntityEvent) e).getEntity();
map.put("player", new CString(entity.getName(), Target.UNKNOWN));
}
} else if (e instanceof HangingEvent) {
macro = "entity";
} else if (e instanceof InventoryEvent) {
macro = "inventory";
} else if (e instanceof PlayerEvent) {
map.put("player", new CString(((PlayerEvent) e).getPlayer().getName(), Target.UNKNOWN));
macro = "player";
} else if (e instanceof ServerEvent) {
macro = "server";
} else if (e instanceof VehicleEvent) {
macro = "vehicle";
} else if (e instanceof WeatherEvent) {
macro = "weather";
} else if (e instanceof WorldEvent) {
macro = "world";
} else {
macro = "custom";
}
map.put("macrotype", new CString(macro, Target.UNKNOWN));
return map;
}
Aggregations