Package buildcraft.core.gui.slots

Examples of buildcraft.core.gui.slots.SlotOutput


    super(0);

    map = iZonePlan;

    addSlotToContainer(new Slot(iZonePlan, 0, 233, 20));
    addSlotToContainer(new SlotOutput(iZonePlan, 1, 233, 68));

    // Player inventory
    for (int l = 0; l < 3; l++) {
      for (int k1 = 0; k1 < 9; k1++) {
        addSlotToContainer(new Slot(playerInventory, k1 + l * 9 + 9, 88 + k1 * 18, 138 + l * 18));
 
View Full Code Here


      }
    }

    for (int y = 0; y < 3; y++) {
      for (int x = 0; x < 3; x++) {
        addSlotToContainer(new SlotOutput(workbench, 15 + x + y * 3, 109 + x * 18, 85 + y * 18));
      }
    }

    for (int l = 0; l < 3; l++) {
      for (int k1 = 0; k1 < 9; k1++) {
View Full Code Here

    super(table.getSizeInventory());
    this.table = table;

    addSlot(new SlotValidated(table, TileIntegrationTable.SLOT_INPUT_A, 17, 28));
    addSlot(new SlotValidated(table, TileIntegrationTable.SLOT_INPUT_B, 53, 28));
    addSlot(new SlotOutput(table, TileIntegrationTable.SLOT_OUTPUT, 143, 44));
    addSlot(new SlotUntouchable(table.getRecipeOutput(), 0, 116, 44));

    for (int i = TileIntegrationTable.SLOT_OUTPUT + 1; i < 12; i++) {
      addSlot(new Slot(table, i, 8 + (i - (TileIntegrationTable.SLOT_OUTPUT + 1)) * 18, 69));
    }
View Full Code Here

      @Override
      public void onPickupFromSlot(EntityPlayer player, ItemStack itemstack) {
        tile.useLast = true;
      }
    });
    addSlotToContainer(new SlotOutput(tile, TileAutoWorkbench.SLOT_RESULT, 124, 35));
    for (int y = 0; y < 3; y++) {
      for (int x = 0; x < 3; x++) {
        addSlotToContainer(new SlotWorkbench(tile.craftMatrix, x + y * 3, 30 + x * 18, 17 + y * 18));
      }
    }
 
View Full Code Here

    super(template.getSizeInventory());
    this.playerIInventory = player.inventory;
    this.architect = template;

    addSlotToContainer(new SlotArchitect(template, player, 0, 135, 35));
    addSlotToContainer(new SlotOutput(template, 1, 194, 35));

    for (int l = 0; l < 3; l++) {
      for (int k1 = 0; k1 < 9; k1++) {
        addSlotToContainer(new Slot(player.inventory, k1 + l * 9 + 9, 88 + k1 * 18, 84 + l * 18));
      }
 
View Full Code Here

    super(library.getSizeInventory());
    this.playerInventory = player.inventory;
    this.library = library;

    addSlotToContainer(new SlotBlueprintLibrary(library, player, 0, 211, 61));
    addSlotToContainer(new SlotOutput(library, 1, 167, 61));

    addSlotToContainer(new SlotBlueprintLibrary(library, player, 2, 167, 79));
    addSlotToContainer(new SlotOutput(library, 3, 211, 79));

    // Player inventory
    for (int l = 0; l < 3; l++) {
      for (int k1 = 0; k1 < 9; k1++) {
        addSlotToContainer(new Slot(playerInventory, k1 + l * 9 + 9, 66 + k1 * 18, 140 + l * 18));
 
View Full Code Here

TOP

Related Classes of buildcraft.core.gui.slots.SlotOutput

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.