Search in sources :

Example 1 with InventoryCraftResult

use of net.minecraft.server.v1_14_R1.InventoryCraftResult in project PublicCrafters by BananaPuncher714.

the class CustomInventoryCrafting method setItems.

protected void setItems(List<org.bukkit.inventory.ItemStack> items) {
    int index = 0;
    for (org.bukkit.inventory.ItemStack item : items) {
        this.items.set(index++, CraftItemStack.asNMSCopy(item));
    }
    // Want to update the result without having to use a real player
    if (this.resultInventory instanceof InventoryCraftResult) {
        CustomContainerWorkbench container = new CustomContainerWorkbench(manager.mockPlayer.getBukkitEntity(), bloc, this, (InventoryCraftResult) resultInventory);
        container.a(this);
        CraftingInventory crafting = (CraftingInventory) container.getBukkitView().getTopInventory();
        Bukkit.getPluginManager().callEvent(new PrepareItemCraftEvent(crafting, container.getBukkitView(), false));
    }
    display.forceUpdate();
}
Also used : CraftingInventory(org.bukkit.inventory.CraftingInventory) PublicCraftingInventory(io.github.bananapuncher714.crafters.implementation.api.PublicCraftingInventory) PrepareItemCraftEvent(org.bukkit.event.inventory.PrepareItemCraftEvent) InventoryCraftResult(net.minecraft.server.v1_11_R1.InventoryCraftResult)

Example 2 with InventoryCraftResult

use of net.minecraft.server.v1_14_R1.InventoryCraftResult in project PublicCrafters by BananaPuncher714.

the class CustomTileEntityContainerSelector method getWorkbenchContainer.

protected Container getWorkbenchContainer(EntityHuman ent) {
    CustomInventoryCrafting crafting = manager.benches.get(bloc);
    if (crafting == null) {
        crafting = new CustomInventoryCrafting(bloc, manager, new SelfContainer(), 3, 3);
        manager.put(bloc, crafting);
    }
    IInventory result = crafting.resultInventory;
    if (result == null) {
        result = new InventoryCraftResult();
        crafting.resultInventory = result;
    }
    Container container = new CustomContainerWorkbench(ent.getBukkitEntity(), bloc, crafting, result);
    crafting.addContainer(container);
    return container;
}
Also used : IInventory(net.minecraft.server.v1_11_R1.IInventory) ITileEntityContainer(net.minecraft.server.v1_11_R1.ITileEntityContainer) Container(net.minecraft.server.v1_11_R1.Container) SelfContainer(io.github.bananapuncher714.crafters.implementation.v1_11_R1.ContainerManager_v1_11_R1.SelfContainer) SelfContainer(io.github.bananapuncher714.crafters.implementation.v1_11_R1.ContainerManager_v1_11_R1.SelfContainer) InventoryCraftResult(net.minecraft.server.v1_11_R1.InventoryCraftResult)

Example 3 with InventoryCraftResult

use of net.minecraft.server.v1_14_R1.InventoryCraftResult in project PublicCrafters by BananaPuncher714.

the class CustomTileEntityContainerSelector method getAnvilContainer.

protected Container getAnvilContainer(PlayerInventory inventory, EntityHuman human) {
    CustomAnvilSubcontainer crafting = manager.anvils.get(bloc);
    if (crafting == null) {
        crafting = new CustomAnvilSubcontainer("Repair", true, 2);
        manager.anvils.put(bloc, crafting);
    }
    InventoryCraftResult result = crafting.result;
    if (result == null) {
        result = new InventoryCraftResult();
        crafting.result = result;
    }
    Container anvil = new CustomContainerAnvil(human.getBukkitEntity(), bloc, crafting, result);
    return anvil;
}
Also used : ITileEntityContainer(net.minecraft.server.v1_11_R1.ITileEntityContainer) Container(net.minecraft.server.v1_11_R1.Container) SelfContainer(io.github.bananapuncher714.crafters.implementation.v1_11_R1.ContainerManager_v1_11_R1.SelfContainer) InventoryCraftResult(net.minecraft.server.v1_11_R1.InventoryCraftResult)

Example 4 with InventoryCraftResult

use of net.minecraft.server.v1_14_R1.InventoryCraftResult in project PublicCrafters by BananaPuncher714.

the class CustomInventoryCrafting method setItems.

protected void setItems(List<org.bukkit.inventory.ItemStack> items) {
    int index = 0;
    for (org.bukkit.inventory.ItemStack item : items) {
        this.items.set(index++, CraftItemStack.asNMSCopy(item));
    }
    // Want to update the result without having to use a real player
    if (this.resultInventory instanceof InventoryCraftResult) {
        CustomContainerWorkbench container = new CustomContainerWorkbench(manager.mockPlayer.getBukkitEntity(), bloc, this, (InventoryCraftResult) resultInventory);
        container.a(this);
        CraftingInventory crafting = (CraftingInventory) container.getBukkitView().getTopInventory();
        Bukkit.getPluginManager().callEvent(new PrepareItemCraftEvent(crafting, container.getBukkitView(), false));
    }
    display.forceUpdate();
}
Also used : CraftingInventory(org.bukkit.inventory.CraftingInventory) PublicCraftingInventory(io.github.bananapuncher714.crafters.implementation.api.PublicCraftingInventory) PrepareItemCraftEvent(org.bukkit.event.inventory.PrepareItemCraftEvent) InventoryCraftResult(net.minecraft.server.v1_12_R1.InventoryCraftResult)

Example 5 with InventoryCraftResult

use of net.minecraft.server.v1_14_R1.InventoryCraftResult in project PublicCrafters by BananaPuncher714.

the class CustomTileEntityContainerWorkbench method createContainer.

/**
 * This is an ITileEntityContainer method that returns a new container for whatever tile entity
 */
@Override
public Container createContainer(PlayerInventory paramPlayerInventory, EntityHuman ent) {
    CustomInventoryCrafting crafting = manager.benches.get(bloc);
    if (crafting == null) {
        crafting = new CustomInventoryCrafting(bloc, manager, new SelfContainer(), 3, 3);
        manager.put(bloc, crafting);
    }
    IInventory inventory = crafting.resultInventory;
    InventoryCraftResult result;
    if (inventory instanceof InventoryCraftResult || inventory == null) {
        result = new InventoryCraftResult();
        crafting.resultInventory = result;
    } else {
        result = (InventoryCraftResult) inventory;
    }
    Container container = new CustomContainerWorkbench(ent.getBukkitEntity(), bloc, crafting, result);
    crafting.addContainer(container);
    return container;
}
Also used : IInventory(net.minecraft.server.v1_12_R1.IInventory) ITileEntityContainer(net.minecraft.server.v1_12_R1.ITileEntityContainer) Container(net.minecraft.server.v1_12_R1.Container) SelfContainer(io.github.bananapuncher714.crafters.implementation.v1_12_R1.ContainerManager_v1_12_R1.SelfContainer) SelfContainer(io.github.bananapuncher714.crafters.implementation.v1_12_R1.ContainerManager_v1_12_R1.SelfContainer) InventoryCraftResult(net.minecraft.server.v1_12_R1.InventoryCraftResult)

Aggregations

PublicCraftingInventory (io.github.bananapuncher714.crafters.implementation.api.PublicCraftingInventory)12 PrepareItemCraftEvent (org.bukkit.event.inventory.PrepareItemCraftEvent)12 CraftingInventory (org.bukkit.inventory.CraftingInventory)12 InventoryCraftResult (net.minecraft.server.v1_11_R1.InventoryCraftResult)4 InventoryCraftResult (net.minecraft.server.v1_10_R1.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_12_R1.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_13_R1.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_13_R2.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_14_R1.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_15_R1.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_16_R1.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_16_R2.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_16_R3.InventoryCraftResult)3 InventoryCraftResult (net.minecraft.server.v1_8_R3.InventoryCraftResult)3 SelfContainer (io.github.bananapuncher714.crafters.implementation.v1_11_R1.ContainerManager_v1_11_R1.SelfContainer)2 Container (net.minecraft.server.v1_11_R1.Container)2 ITileEntityContainer (net.minecraft.server.v1_11_R1.ITileEntityContainer)2 InventoryCraftResult (net.minecraft.server.v1_9_R2.InventoryCraftResult)2 SelfContainer (io.github.bananapuncher714.crafters.implementation.v1_10_R1.ContainerManager_v1_10_R1.SelfContainer)1 SelfContainer (io.github.bananapuncher714.crafters.implementation.v1_12_R1.ContainerManager_v1_12_R1.SelfContainer)1