Examples of addDummySlot()


Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

      dummy.addDummySlot(l, 8 + l * 18, 18);
    }
   
    // Output slot
    if(!isAdvancedSat) {
      dummy.addDummySlot(9, 85, 55);
    } else {
      dummy.addDummySlot(9, 85, 105);
    }
   
    liquidGuiParts = new GuiButton[liquidCrafter][];
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

   
    // Output slot
    if(!isAdvancedSat) {
      dummy.addDummySlot(9, 85, 55);
    } else {
      dummy.addDummySlot(9, 85, 105);
    }
   
    liquidGuiParts = new GuiButton[liquidCrafter][];
    fluidSlotIDs = new int[liquidCrafter];
   
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

      }
      fluidSlotIDs[i] = extentionController.registerControlledSlot(dummy.addFluidSlot(i, module.getFluidInventory(), liquidLeft + 11, 24));
    }
   
    if(hasByproductExtractor) {
      byproductSlotID = extentionController.registerControlledSlot(dummy.addDummySlot(10, - 26, 29));
    } else {
      byproductSlotID = -1;
    }
   
    cleanupSlotIDs = new int[cleanupSize * 3];
 
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

    }
   
    cleanupSlotIDs = new int[cleanupSize * 3];
    for(int y = 0;y < cleanupSize;y++) {
      for(int x=0;x < 3;x++) {
        cleanupSlotIDs[y * 3 + x] = extentionController.registerControlledSlot(dummy.addDummySlot(y * 3 + x, module.getCleanupInventory(), x * 18 - 57, y * 18 + 13));
      }
    }
   
    this.inventorySlots = dummy;
    _pipe = module;
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

    int xOffset = 72;
    int yOffset = 18;
   
    for (int row = 0; row < 3; row++){
      for (int column = 0; column < 3; column++){
        dummy.addDummySlot(column + row * 3, xOffset + column * 18, yOffset + row * 18);         
      }
    }
    this.inventorySlots = dummy;

    this.logic = logic;
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

    this.pipe = pipe;
    DummyContainer dummy = new DummyContainer(player.inventory, pipe.inv);
    dummy.addNormalSlotsForPlayerInventory(33, 175);
    for(int x = 0;x < 6;x++) {
      for(int y = 0;y < 6;y++) {
        dummy.addDummySlot(x*6 + y, x*18 + 17, y*18 + 41);
      }
    }
    this.inventorySlots = dummy;
  }

View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

    DummyContainer dummy = new DummyContainer(playerInventory, _liquidSupplier.getFilterInventory());
    dummy.addNormalSlotsForPlayerInventory(8, 60);

    //Pipe slots
      for(int pipeSlot = 0; pipeSlot < 9; pipeSlot++){
        dummy.addDummySlot(pipeSlot, 8 + pipeSlot * 18, 18);
      }
     
      this.inventorySlots = dummy;
    xSize = 175;
    ySize = 142;
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

    DummyContainer dummy = new DummyContainer(playerInventory, dummyInventory);
    dummy.addNormalSlotsForPlayerInventory(18, 97);
   
    if(hasPatternUpgrade) {
      for(int i = 0; i < 9;i++) {
        dummy.addDummySlot(i, 18 + i * 18, 20);
      }
    } else {
      int xOffset = 72;
      int yOffset = 18;
      for (int row = 0; row < 3; row++){
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

    } else {
      int xOffset = 72;
      int yOffset = 18;
      for (int row = 0; row < 3; row++){
        for (int column = 0; column < 3; column++){
          dummy.addDummySlot(column + row * 3, xOffset + column * 18, yOffset + row * 18);         
        }
      }
    }
    this.inventorySlots = dummy;
    module.slotArray = slots;
View Full Code Here

Examples of logisticspipes.utils.gui.DummyContainer.addDummySlot()

    DummyContainer dummy = new DummyContainer(playerInventory, _module.getFilterInventory());
    dummy.addNormalSlotsForPlayerInventory(8, 60);

    //Pipe slots
    for(int pipeSlot = 0; pipeSlot < 9; pipeSlot++){
      dummy.addDummySlot(pipeSlot, 8 + pipeSlot * 18, 18);
    }
    this.inventorySlots = dummy;
    xSize = 175;
    ySize = 142;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.