Search in sources :

Example 1 with CraftingInventory

use of org.bukkit.inventory.CraftingInventory in project Denizen-For-Bukkit by DenizenScript.

the class dInventory method getAttribute.

////////////////////////
//  Attributes
/////////////////////
public String getAttribute(Attribute attribute) {
    if (attribute == null) {
        return null;
    }
    // -->
    if (attribute.startsWith("empty_slots")) {
        int full = new dInventory(inventory).count(null, true);
        return new Element(inventory.getSize() - full).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("can_fit") && attribute.hasContext(1) && dItem.matches(attribute.getContext(1))) {
        dItem item = dItem.valueOf(attribute.getContext(1));
        if (item == null) {
            return null;
        }
        int attribs = 1;
        int qty = 1;
        InventoryType type = inventory.getType();
        dInventory dummyInv = new dInventory(Bukkit.createInventory(null, type == InventoryType.PLAYER ? InventoryType.CHEST : type, inventory.getTitle()));
        ItemStack[] contents = getStorageContents();
        if (dummyInv.getInventoryType() == InventoryType.CHEST) {
            dummyInv.setSize(contents.length);
        }
        if (contents.length != dummyInv.getSize()) {
            contents = Arrays.copyOf(contents, dummyInv.getSize());
        }
        dummyInv.setContents(contents);
        // -->
        if ((attribute.getAttribute(2).startsWith("quantity") || attribute.getAttribute(2).startsWith("qty")) && attribute.hasContext(2) && aH.matchesInteger(attribute.getContext(2))) {
            qty = attribute.getIntContext(2);
            attribs = 2;
        }
        item.setAmount(qty);
        List<ItemStack> leftovers = dummyInv.addWithLeftovers(0, true, item.getItemStack());
        return new Element(leftovers.isEmpty()).getAttribute(attribute.fulfill(attribs));
    }
    // -->
    if (attribute.startsWith("include") && attribute.hasContext(1) && dItem.matches(attribute.getContext(1))) {
        dItem item = dItem.valueOf(attribute.getContext(1));
        if (item == null) {
            return null;
        }
        int attribs = 1;
        int qty = 1;
        dInventory dummyInv = new dInventory(Bukkit.createInventory(null, inventory.getType(), inventory.getTitle()));
        if (inventory.getType() == InventoryType.CHEST) {
            dummyInv.setSize(inventory.getSize());
        }
        dummyInv.setContents(getContents());
        // -->
        if ((attribute.getAttribute(2).startsWith("quantity") || attribute.getAttribute(2).startsWith("qty")) && attribute.hasContext(2) && aH.matchesInteger(attribute.getContext(2))) {
            qty = attribute.getIntContext(2);
            attribs = 2;
        }
        item.setAmount(qty);
        dummyInv.add(0, item.getItemStack());
        return dummyInv.getAttribute(attribute.fulfill(attribs));
    }
    // -->
    if (attribute.startsWith("is_empty")) {
        boolean empty = true;
        for (ItemStack item : getStorageContents()) {
            if (item != null && item.getType() != Material.AIR) {
                empty = false;
                break;
            }
        }
        return new Element(empty).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("is_full")) {
        boolean full = true;
        for (ItemStack item : getStorageContents()) {
            if ((item == null) || (item.getType() == Material.AIR) || (item.getAmount() < item.getMaxStackSize())) {
                full = false;
                break;
            }
        }
        return new Element(full).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("contains.display") && attribute.hasContext(2)) {
        String search_string = attribute.getContext(2);
        boolean strict = false;
        if (CoreUtilities.toLowerCase(search_string).startsWith("strict:") && search_string.length() > 7) {
            strict = true;
            search_string = search_string.substring(7);
        }
        if (search_string.length() == 0) {
            return null;
        }
        int qty = 1;
        int attribs = 2;
        // -->
        if ((attribute.getAttribute(3).startsWith("quantity") || attribute.getAttribute(3).startsWith("qty")) && attribute.hasContext(3) && aH.matchesInteger(attribute.getContext(3))) {
            qty = attribute.getIntContext(3);
            attribs = 3;
        }
        int found_items = 0;
        if (strict) {
            for (ItemStack item : getContents()) {
                if (item != null && item.getType() == Material.WRITTEN_BOOK && ((BookMeta) item.getItemMeta()).getTitle().equalsIgnoreCase(search_string)) {
                    found_items += item.getAmount();
                    if (found_items >= qty) {
                        break;
                    }
                } else if (item != null && item.hasItemMeta() && item.getItemMeta().hasDisplayName() && item.getItemMeta().getDisplayName().equalsIgnoreCase(search_string)) {
                    found_items += item.getAmount();
                    if (found_items >= qty) {
                        break;
                    }
                }
            }
        } else {
            for (ItemStack item : getContents()) {
                if (item != null && item.getType() == Material.WRITTEN_BOOK && CoreUtilities.toLowerCase(((BookMeta) item.getItemMeta()).getTitle()).contains(CoreUtilities.toLowerCase(search_string))) {
                    found_items += item.getAmount();
                    if (found_items >= qty) {
                        break;
                    }
                } else if (item != null && item.hasItemMeta() && item.getItemMeta().hasDisplayName() && CoreUtilities.toLowerCase(item.getItemMeta().getDisplayName()).contains(CoreUtilities.toLowerCase(search_string))) {
                    found_items += item.getAmount();
                    if (found_items >= qty) {
                        break;
                    }
                }
            }
        }
        return new Element(found_items >= qty).getAttribute(attribute.fulfill(attribs));
    }
    // -->
    if (attribute.startsWith("contains.lore") && attribute.hasContext(2)) {
        String search_string = attribute.getContext(2);
        boolean strict = false;
        if (CoreUtilities.toLowerCase(search_string).startsWith("strict:")) {
            strict = true;
            search_string = search_string.substring(7);
        }
        if (search_string.length() == 0) {
            return null;
        }
        dList lore = dList.valueOf(search_string);
        int qty = 1;
        int attribs = 2;
        // -->
        if ((attribute.getAttribute(3).startsWith("quantity") || attribute.getAttribute(3).startsWith("qty")) && attribute.hasContext(3) && aH.matchesInteger(attribute.getContext(3))) {
            qty = attribute.getIntContext(3);
            attribs = 3;
        }
        int found_items = 0;
        if (strict) {
            strict_items: for (ItemStack item : getContents()) {
                if (item != null && item.hasItemMeta() && item.getItemMeta().hasLore()) {
                    List<String> item_lore = item.getItemMeta().getLore();
                    if (lore.size() != item_lore.size()) {
                        continue;
                    }
                    for (int i = 0; i < item_lore.size(); i++) {
                        if (lore.get(i).equalsIgnoreCase(item_lore.get(i))) {
                            if (i == lore.size()) {
                                found_items += item.getAmount();
                                if (found_items >= qty) {
                                    break strict_items;
                                }
                            }
                        } else {
                            continue strict_items;
                        }
                    }
                }
            }
        } else {
            for (ItemStack item : getContents()) {
                if (item != null && item.hasItemMeta() && item.getItemMeta().hasLore()) {
                    List<String> item_lore = item.getItemMeta().getLore();
                    int loreCount = 0;
                    lines: for (String line : lore) {
                        for (String item_line : item_lore) {
                            if (CoreUtilities.toLowerCase(item_line).contains(CoreUtilities.toLowerCase(line))) {
                                loreCount++;
                                continue lines;
                            }
                        }
                    }
                    if (loreCount == lore.size()) {
                        found_items += item.getAmount();
                        if (found_items >= qty) {
                            break;
                        }
                    }
                }
            }
        }
        return new Element(found_items >= qty).getAttribute(attribute.fulfill(attribs));
    }
    // -->
    if (attribute.startsWith("contains.material") && attribute.hasContext(2) && dMaterial.matches(attribute.getContext(2))) {
        dMaterial material = dMaterial.valueOf(attribute.getContext(2));
        int qty = 1;
        int attribs = 2;
        // -->
        if ((attribute.getAttribute(3).startsWith("quantity") || attribute.getAttribute(3).startsWith("qty")) && attribute.hasContext(3) && aH.matchesInteger(attribute.getContext(3))) {
            qty = attribute.getIntContext(3);
            attribs = 3;
        }
        int found_items = 0;
        for (ItemStack item : getContents()) {
            if (item != null && item.getType() == material.getMaterial()) {
                found_items += item.getAmount();
                if (found_items >= qty) {
                    break;
                }
            }
        }
        return new Element(found_items >= qty).getAttribute(attribute.fulfill(attribs));
    }
    // -->
    if (attribute.startsWith("contains_any") && attribute.hasContext(1)) {
        dList list = dList.valueOf(attribute.getContext(1));
        if (list.isEmpty()) {
            return null;
        }
        int qty = 1;
        int attribs = 1;
        // -->
        if ((attribute.getAttribute(2).startsWith("quantity") || attribute.getAttribute(2).startsWith("qty")) && attribute.hasContext(2) && aH.matchesInteger(attribute.getContext(2))) {
            qty = attribute.getIntContext(2);
            attribs = 2;
        }
        List<dItem> contains = list.filter(dItem.class, attribute.getScriptEntry());
        if (!contains.isEmpty()) {
            for (dItem item : contains) {
                if (containsItem(item, qty)) {
                    return Element.TRUE.getAttribute(attribute.fulfill(attribs));
                }
            }
        }
        return Element.FALSE.getAttribute(attribute.fulfill(attribs));
    }
    // -->
    if (attribute.startsWith("contains") && attribute.hasContext(1)) {
        dList list = dList.valueOf(attribute.getContext(1));
        if (list.isEmpty()) {
            return null;
        }
        int qty = 1;
        int attribs = 1;
        // -->
        if ((attribute.getAttribute(2).startsWith("quantity") || attribute.getAttribute(2).startsWith("qty")) && attribute.hasContext(2) && aH.matchesInteger(attribute.getContext(2))) {
            qty = attribute.getIntContext(2);
            attribs = 2;
        }
        // TODO: Fix logic
        List<dItem> contains = list.filter(dItem.class, attribute.getScriptEntry());
        if (!contains.isEmpty()) {
            for (dItem item : contains) {
                if (containsItem(item, qty)) {
                    return Element.TRUE.getAttribute(attribute.fulfill(attribs));
                }
            }
        }
        return Element.FALSE.getAttribute(attribute.fulfill(attribs));
    }
    // -->
    if (attribute.startsWith("first_empty")) {
        return new Element(firstEmpty(0)).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("find.material") && attribute.hasContext(2) && dMaterial.matches(attribute.getContext(2))) {
        dMaterial material = dMaterial.valueOf(attribute.getContext(2));
        if (material == null) {
            return null;
        }
        int slot = -1;
        for (int i = 0; i < inventory.getSize(); i++) {
            if (inventory.getItem(i) != null && inventory.getItem(i).getType() == material.getMaterial()) {
                slot = i + 1;
                break;
            }
        }
        return new Element(slot).getAttribute(attribute.fulfill(2));
    }
    // -->
    if (attribute.startsWith("find_imperfect") && attribute.hasContext(1) && dItem.matches(attribute.getContext(1))) {
        dItem item = dItem.valueOf(attribute.getContext(1), attribute.getScriptEntry() != null ? ((BukkitScriptEntryData) attribute.getScriptEntry().entryData).getPlayer() : null, attribute.getScriptEntry() != null ? ((BukkitScriptEntryData) attribute.getScriptEntry().entryData).getNPC() : null);
        item.setAmount(1);
        int slot = -1;
        for (int i = 0; i < inventory.getSize(); i++) {
            if (inventory.getItem(i) != null) {
                dItem compare_to = new dItem(inventory.getItem(i).clone());
                compare_to.setAmount(1);
                if (item.identify().equalsIgnoreCase(compare_to.identify())) {
                    slot = i + 1;
                    break;
                }
            }
        }
        return new Element(slot).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("find") && attribute.hasContext(1) && dItem.matches(attribute.getContext(1))) {
        dItem item = dItem.valueOf(attribute.getContext(1), attribute.getScriptEntry() != null ? ((BukkitScriptEntryData) attribute.getScriptEntry().entryData).getPlayer() : null, attribute.getScriptEntry() != null ? ((BukkitScriptEntryData) attribute.getScriptEntry().entryData).getNPC() : null);
        item.setAmount(1);
        int slot = -1;
        for (int i = 0; i < inventory.getSize(); i++) {
            if (inventory.getItem(i) != null) {
                dItem compare_to = new dItem(inventory.getItem(i).clone());
                compare_to.setAmount(1);
                if (item.getFullString().equalsIgnoreCase(compare_to.getFullString())) {
                    slot = i + 1;
                    break;
                }
            }
        }
        return new Element(slot).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("id_type")) {
        return new Element(idType).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("notable_name")) {
        String notname = NotableManager.getSavedId(this);
        if (notname == null) {
            return null;
        }
        return new Element(notname).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("location")) {
        dLocation location = getLocation();
        if (location == null) {
            return null;
        }
        return location.getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("quantity") || attribute.startsWith("qty")) {
        if (attribute.hasContext(1) && dItem.matches(attribute.getContext(1))) {
            return new Element(count(dItem.valueOf(attribute.getContext(1), ((BukkitScriptEntryData) attribute.getScriptEntry().entryData).getPlayer(), ((BukkitScriptEntryData) attribute.getScriptEntry().entryData).getNPC()).getItemStack(), false)).getAttribute(attribute.fulfill(1));
        } else {
            return new Element(count(null, false)).getAttribute(attribute.fulfill(1));
        }
    }
    // -->
    if (attribute.startsWith("stacks")) {
        if (attribute.hasContext(1) && dItem.matches(attribute.getContext(1))) {
            return new Element(count(dItem.valueOf(attribute.getContext(1), ((BukkitScriptEntryData) attribute.getScriptEntry().entryData).getPlayer(), ((BukkitScriptEntryData) attribute.getScriptEntry().entryData).getNPC()).getItemStack(), true)).getAttribute(attribute.fulfill(1));
        } else {
            return new Element(count(null, true)).getAttribute(attribute.fulfill(1));
        }
    }
    // -->
    if (attribute.startsWith("slot") && attribute.hasContext(1) && aH.matchesInteger(attribute.getContext(1))) {
        int slot = new Element(attribute.getContext(1)).asInt() - 1;
        if (slot < 0) {
            slot = 0;
        } else if (slot > getInventory().getSize() - 1) {
            slot = getInventory().getSize() - 1;
        }
        return new dItem(getInventory().getItem(slot)).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("inventory_type")) {
        return new Element(inventory instanceof HorseInventory ? "HORSE" : getInventory().getType().name()).getAttribute(attribute.fulfill(1));
    }
    // -->
    if (attribute.startsWith("equipment")) {
        dList equipment = getEquipment();
        if (equipment == null) {
            return null;
        }
        return equipment.getAttribute(attribute.fulfill(1));
    }
    if (inventory instanceof CraftingInventory) {
        CraftingInventory craftingInventory = (CraftingInventory) inventory;
        // -->
        if (attribute.startsWith("matrix")) {
            dList recipeList = new dList();
            for (ItemStack item : craftingInventory.getMatrix()) {
                if (item != null) {
                    recipeList.add(new dItem(item).identify());
                } else {
                    recipeList.add(new dItem(Material.AIR).identify());
                }
            }
            return recipeList.getAttribute(attribute.fulfill(1));
        }
        // -->
        if (attribute.startsWith("result")) {
            ItemStack result = craftingInventory.getResult();
            if (result == null) {
                return null;
            }
            return new dItem(result).getAttribute(attribute.fulfill(1));
        }
    }
    // -->
    if (attribute.startsWith("type")) {
        return new Element("Inventory").getAttribute(attribute.fulfill(1));
    }
    // Iterate through this object's properties' attributes
    for (Property property : PropertyParser.getProperties(this)) {
        String returned = property.getAttribute(attribute);
        if (returned != null) {
            return returned;
        }
    }
    return new Element(identify()).getAttribute(attribute);
}
Also used : CraftingInventory(org.bukkit.inventory.CraftingInventory) InventoryType(org.bukkit.event.inventory.InventoryType) BukkitScriptEntryData(net.aufdemrand.denizen.BukkitScriptEntryData) HorseInventory(org.bukkit.inventory.HorseInventory) ItemStack(org.bukkit.inventory.ItemStack) BookMeta(org.bukkit.inventory.meta.BookMeta) Property(net.aufdemrand.denizencore.objects.properties.Property)

Example 2 with CraftingInventory

use of org.bukkit.inventory.CraftingInventory in project Jobs by GamingMesh.

the class JobsPaymentListener method onInventoryCraft.

@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
public void onInventoryCraft(InventoryClickEvent e) {
    if (!(e instanceof CraftItemEvent))
        return;
    CraftItemEvent event = (CraftItemEvent) e;
    // make sure plugin is enabled
    if (!plugin.isEnabled())
        return;
    // If event is nothing or place, do nothing
    switch(event.getAction()) {
        case NOTHING:
        case PLACE_ONE:
        case PLACE_ALL:
        case PLACE_SOME:
            return;
        default:
            break;
    }
    if (event.getAction() == InventoryAction.NOTHING)
        return;
    CraftingInventory inv = event.getInventory();
    if (!(inv instanceof CraftingInventory) || !event.getSlotType().equals(SlotType.RESULT))
        return;
    Recipe recipe = event.getRecipe();
    if (recipe == null)
        return;
    if (!(event.getWhoClicked() instanceof Player))
        return;
    Player player = (Player) event.getWhoClicked();
    ItemStack resultStack = recipe.getResult();
    if (resultStack == null)
        return;
    if (!Jobs.getPermissionHandler().hasWorldPermission(player, player.getLocation().getWorld().getName()))
        return;
    // check if in creative
    if (player.getGameMode().equals(GameMode.CREATIVE) && !ConfigManager.getJobsConfiguration().payInCreative())
        return;
    double multiplier = ConfigManager.getJobsConfiguration().getRestrictedMultiplier(player);
    JobsPlayer jPlayer = Jobs.getPlayerManager().getJobsPlayer(player);
    Jobs.action(jPlayer, new ItemActionInfo(resultStack, ActionType.CRAFT), multiplier);
}
Also used : CraftingInventory(org.bukkit.inventory.CraftingInventory) Player(org.bukkit.entity.Player) JobsPlayer(com.gamingmesh.jobs.container.JobsPlayer) Recipe(org.bukkit.inventory.Recipe) ItemActionInfo(com.gamingmesh.jobs.actions.ItemActionInfo) CraftItemEvent(org.bukkit.event.inventory.CraftItemEvent) ItemStack(org.bukkit.inventory.ItemStack) JobsPlayer(com.gamingmesh.jobs.container.JobsPlayer) EventHandler(org.bukkit.event.EventHandler)

Example 3 with CraftingInventory

use of org.bukkit.inventory.CraftingInventory in project Denizen-For-Bukkit by DenizenScript.

the class ItemScriptHelper method specialRecipeDrag.

// When special Denizen recipes that have itemscripts as ingredients
// are being used, check crafting matrix for recipe matches whenever
// drags (which are entirely separate from clicks) are made in CRAFTING slots
@EventHandler
public void specialRecipeDrag(InventoryDragEvent event) {
    // Proceed only if at least one special recipe has been stored
    if (ItemScriptContainer.specialrecipesMap.isEmpty() && ItemScriptContainer.shapelessRecipesMap.isEmpty()) {
        return;
    }
    // Proceed only if this is a CraftingInventory
    if (!(event.getInventory() instanceof CraftingInventory)) {
        return;
    }
    // which can have an ID of between 1 and 9 in a CraftingInventory
    for (Integer slot : event.getInventorySlots()) {
        if (slot < 10) {
            CraftingInventory inventory = (CraftingInventory) event.getInventory();
            Player player = (Player) event.getWhoClicked();
            processSpecialRecipes(inventory, player);
            break;
        }
    }
}
Also used : CraftingInventory(org.bukkit.inventory.CraftingInventory) BigInteger(java.math.BigInteger) Player(org.bukkit.entity.Player) net.aufdemrand.denizen.objects.dPlayer(net.aufdemrand.denizen.objects.dPlayer) EventHandler(org.bukkit.event.EventHandler)

Example 4 with CraftingInventory

use of org.bukkit.inventory.CraftingInventory in project Denizen-For-Bukkit by DenizenScript.

the class ItemScriptHelper method specialRecipeClick.

// When special Denizen recipes that have itemscripts as ingredients
// are being used, check crafting matrix for recipe matches whenever
// clicks are made in CRAFTING or RESULT slots
@EventHandler
public void specialRecipeClick(InventoryClickEvent event) {
    // Proceed only if at least one special recipe has been stored
    if (ItemScriptContainer.specialrecipesMap.isEmpty() && ItemScriptContainer.shapelessRecipesMap.isEmpty()) {
        return;
    }
    // Proceed only if this is a CraftingInventory
    if (!(event.getInventory() instanceof CraftingInventory)) {
        return;
    }
    // Store the slot type that was clicked
    SlotType slotType = event.getSlotType();
    // Proceed only if a CRAFTING or RESULT slot was clicked
    if (slotType.equals(InventoryType.SlotType.CRAFTING) || slotType.equals(InventoryType.SlotType.RESULT)) {
        CraftingInventory inventory = (CraftingInventory) event.getInventory();
        Player player = (Player) event.getWhoClicked();
        if (slotType == SlotType.RESULT && inventory.getResult() != null && inventory.getResult().getData().getItemType() != Material.AIR) {
            PlayerCraftsItemScriptEvent scriptEvent = PlayerCraftsItemScriptEvent.instance;
            scriptEvent.inventory = inventory;
            scriptEvent.result = new dItem(inventory.getResult());
            dList recipeList = new dList();
            for (ItemStack item : inventory.getMatrix()) {
                if (item != null) {
                    recipeList.add(new dItem(item.clone()).identify());
                } else {
                    recipeList.add(new dItem(Material.AIR).identify());
                }
            }
            scriptEvent.recipe = recipeList;
            scriptEvent.player = dPlayer.mirrorBukkitPlayer(player);
            scriptEvent.resultChanged = false;
            scriptEvent.fire();
            if (scriptEvent.cancelled) {
                event.setCancelled(true);
                return;
            } else if (scriptEvent.resultChanged) {
                event.setCurrentItem(scriptEvent.result.getItemStack());
            }
        }
        // If the RESULT slot was shift-clicked, emulate
        // shift click behavior for it
        boolean clicked;
        if (slotType == SlotType.RESULT && event.isShiftClick()) {
            clicked = emulateSpecialRecipeResultShiftClick(inventory, player);
        } else // Otherwise check for special recipe matches
        {
            clicked = processSpecialRecipes(inventory, player);
        }
        if (clicked && slotType.equals(SlotType.RESULT)) {
            removeOneFromEachSlot(inventory, player);
        }
    }
}
Also used : CraftingInventory(org.bukkit.inventory.CraftingInventory) Player(org.bukkit.entity.Player) net.aufdemrand.denizen.objects.dPlayer(net.aufdemrand.denizen.objects.dPlayer) PlayerCraftsItemScriptEvent(net.aufdemrand.denizen.events.player.PlayerCraftsItemScriptEvent) net.aufdemrand.denizen.objects.dItem(net.aufdemrand.denizen.objects.dItem) net.aufdemrand.denizencore.objects.dList(net.aufdemrand.denizencore.objects.dList) ItemStack(org.bukkit.inventory.ItemStack) SlotType(org.bukkit.event.inventory.InventoryType.SlotType) EventHandler(org.bukkit.event.EventHandler)

Example 5 with CraftingInventory

use of org.bukkit.inventory.CraftingInventory in project Denizen-For-Bukkit by DenizenScript.

the class dInventory method adjust.

@Override
public void adjust(Mechanism mechanism) {
    // Iterate through this object's properties' mechanisms
    for (Property property : PropertyParser.getProperties(this)) {
        property.adjust(mechanism);
        if (mechanism.fulfilled()) {
            break;
        }
    }
    if (inventory instanceof CraftingInventory) {
        CraftingInventory craftingInventory = (CraftingInventory) inventory;
        // -->
        if (mechanism.matches("matrix") && mechanism.requireObject(dList.class)) {
            List<dItem> items = mechanism.getValue().asType(dList.class).filter(dItem.class);
            ItemStack[] itemStacks = new ItemStack[9];
            for (int i = 0; i < 9 && i < items.size(); i++) {
                itemStacks[i] = items.get(i).getItemStack();
            }
            craftingInventory.setMatrix(itemStacks);
            ((Player) inventory.getHolder()).updateInventory();
        }
        // -->
        if (mechanism.matches("result") && mechanism.requireObject(dItem.class)) {
            craftingInventory.setResult(mechanism.getValue().asType(dItem.class).getItemStack());
            ((Player) inventory.getHolder()).updateInventory();
        }
    }
    if (!mechanism.fulfilled()) {
        mechanism.reportInvalid();
    }
}
Also used : CraftingInventory(org.bukkit.inventory.CraftingInventory) Player(org.bukkit.entity.Player) ImprovedOfflinePlayer(net.aufdemrand.denizen.nms.abstracts.ImprovedOfflinePlayer) ItemStack(org.bukkit.inventory.ItemStack) Property(net.aufdemrand.denizencore.objects.properties.Property)

Aggregations

CraftingInventory (org.bukkit.inventory.CraftingInventory)5 Player (org.bukkit.entity.Player)4 ItemStack (org.bukkit.inventory.ItemStack)4 EventHandler (org.bukkit.event.EventHandler)3 net.aufdemrand.denizen.objects.dPlayer (net.aufdemrand.denizen.objects.dPlayer)2 Property (net.aufdemrand.denizencore.objects.properties.Property)2 ItemActionInfo (com.gamingmesh.jobs.actions.ItemActionInfo)1 JobsPlayer (com.gamingmesh.jobs.container.JobsPlayer)1 BigInteger (java.math.BigInteger)1 BukkitScriptEntryData (net.aufdemrand.denizen.BukkitScriptEntryData)1 PlayerCraftsItemScriptEvent (net.aufdemrand.denizen.events.player.PlayerCraftsItemScriptEvent)1 ImprovedOfflinePlayer (net.aufdemrand.denizen.nms.abstracts.ImprovedOfflinePlayer)1 net.aufdemrand.denizen.objects.dItem (net.aufdemrand.denizen.objects.dItem)1 net.aufdemrand.denizencore.objects.dList (net.aufdemrand.denizencore.objects.dList)1 CraftItemEvent (org.bukkit.event.inventory.CraftItemEvent)1 InventoryType (org.bukkit.event.inventory.InventoryType)1 SlotType (org.bukkit.event.inventory.InventoryType.SlotType)1 HorseInventory (org.bukkit.inventory.HorseInventory)1 Recipe (org.bukkit.inventory.Recipe)1 BookMeta (org.bukkit.inventory.meta.BookMeta)1