Search in sources :

Example 26 with InventoryCraftResult

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

the class ContainerManager_v1_12_R1 method load.

@Override
public void load(Location location, List<ItemStack> items) {
    CustomInventoryCrafting crafting = new CustomInventoryCrafting(location, this, new SelfContainer(), 3, 3);
    InventoryCraftResult result = new InventoryCraftResult();
    crafting.resultInventory = result;
    crafting.setItems(items);
    benches.put(location, crafting);
}
Also used : InventoryCraftResult(net.minecraft.server.v1_12_R1.InventoryCraftResult)

Example 27 with InventoryCraftResult

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

the class ContainerManager_v1_13_R1 method load.

@Override
public void load(Location location, List<ItemStack> items) {
    CustomInventoryCrafting crafting = new CustomInventoryCrafting(location, this, new SelfContainer(), 3, 3);
    InventoryCraftResult result = new InventoryCraftResult();
    crafting.resultInventory = result;
    crafting.setItems(items);
    benches.put(location, crafting);
}
Also used : InventoryCraftResult(net.minecraft.server.v1_13_R1.InventoryCraftResult)

Example 28 with InventoryCraftResult

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

the class ContainerManager_v1_13_R2 method load.

@Override
public void load(Location location, List<ItemStack> items) {
    CustomInventoryCrafting crafting = new CustomInventoryCrafting(location, this, new SelfContainer(), 3, 3);
    InventoryCraftResult result = new InventoryCraftResult();
    crafting.resultInventory = result;
    crafting.setItems(items);
    benches.put(location, crafting);
}
Also used : InventoryCraftResult(net.minecraft.server.v1_13_R2.InventoryCraftResult)

Example 29 with InventoryCraftResult

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

the class ContainerManager_v1_16_R3 method load.

@Override
public void load(Location location, List<ItemStack> items) {
    // Is 0 really ok as an id?!?
    CustomInventoryCrafting crafting = new CustomInventoryCrafting(location, this, new SelfContainer(0), 3, 3);
    InventoryCraftResult result = new InventoryCraftResult();
    crafting.resultInventory = result;
    crafting.setItems(items);
    benches.put(location, crafting);
}
Also used : InventoryCraftResult(net.minecraft.server.v1_16_R3.InventoryCraftResult)

Example 30 with InventoryCraftResult

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

the class CustomTileEntityContainerWorkbench method createMenu.

/**
 * This is an ITileEntityContainer method that returns a new container for whatever tile entity
 */
@Override
public Container createMenu(int id, PlayerInventory inv, EntityHuman ent) {
    CustomInventoryCrafting crafting = manager.benches.get(bloc);
    if (crafting == null) {
        crafting = new CustomInventoryCrafting(bloc, manager, new SelfContainer(id), 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(id, ent.getBukkitEntity(), bloc, crafting, result);
    crafting.addContainer(container);
    return container;
}
Also used : IInventory(net.minecraft.server.v1_16_R3.IInventory) Container(net.minecraft.server.v1_16_R3.Container) SelfContainer(io.github.bananapuncher714.crafters.implementation.v1_16_R3.ContainerManager_v1_16_R3.SelfContainer) ITileEntityContainer(net.minecraft.server.v1_16_R3.ITileEntityContainer) SelfContainer(io.github.bananapuncher714.crafters.implementation.v1_16_R3.ContainerManager_v1_16_R3.SelfContainer) InventoryCraftResult(net.minecraft.server.v1_16_R3.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