Search in sources :

Example 1 with InventoryTransactionEvent

use of cn.nukkit.event.inventory.InventoryTransactionEvent in project Nukkit by Nukkit.

the class InventoryTransaction method callExecuteEvent.

protected boolean callExecuteEvent() {
    InventoryTransactionEvent ev = new InventoryTransactionEvent(this);
    this.source.getServer().getPluginManager().callEvent(ev);
    SlotChangeAction from = null;
    SlotChangeAction to = null;
    Player who = null;
    for (InventoryAction action : this.actions) {
        if (!(action instanceof SlotChangeAction)) {
            continue;
        }
        SlotChangeAction slotChange = (SlotChangeAction) action;
        if (slotChange.getInventory() instanceof PlayerInventory) {
            who = (Player) slotChange.getInventory().getHolder();
        }
        if (from == null) {
            from = slotChange;
        } else {
            to = slotChange;
        }
    }
    if (who != null && to != null) {
        if (from.getTargetItem().getCount() > from.getSourceItem().getCount()) {
            from = to;
        }
        InventoryClickEvent ev2 = new InventoryClickEvent(who, from.getInventory(), from.getSlot(), from.getSourceItem(), from.getTargetItem());
        this.source.getServer().getPluginManager().callEvent(ev2);
        if (ev2.isCancelled()) {
            return false;
        }
    }
    return !ev.isCancelled();
}
Also used : InventoryClickEvent(cn.nukkit.event.inventory.InventoryClickEvent) Player(cn.nukkit.Player) InventoryTransactionEvent(cn.nukkit.event.inventory.InventoryTransactionEvent) PlayerInventory(cn.nukkit.inventory.PlayerInventory) SlotChangeAction(cn.nukkit.inventory.transaction.action.SlotChangeAction) InventoryAction(cn.nukkit.inventory.transaction.action.InventoryAction)

Aggregations

Player (cn.nukkit.Player)1 InventoryClickEvent (cn.nukkit.event.inventory.InventoryClickEvent)1 InventoryTransactionEvent (cn.nukkit.event.inventory.InventoryTransactionEvent)1 PlayerInventory (cn.nukkit.inventory.PlayerInventory)1 InventoryAction (cn.nukkit.inventory.transaction.action.InventoryAction)1 SlotChangeAction (cn.nukkit.inventory.transaction.action.SlotChangeAction)1