Examples of addDummySlot()


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

    DummyContainer dummy = new DummyContainer(playerInventory, _advancedExtractor.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()

      }
    }
    i = 0;
    for(int y = 0;y < 3;y++) {
      for(int x = 0;x < 3;x++) {
        dummy.addDummySlot(i++, guiLeft + (x * 18) + 20, guiTop + (y * 18) + 15);
      }
    }
    dummy.addCallableSlotHandler(0, _table.resultInv, guiLeft + 101, guiTop + 33, new ISlotClick() {
      @Override
      public ItemStack getResultForClick() {
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;
    xSize = 194;
View Full Code Here

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

    DummyContainer dummy = new DummyContainer(playerInventory, _itemSink.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()

    _module = itemSink;
   
    tmpInv = new ItemIdentifierInventory(1, "Aspect Reader", 1);
   
    DummyContainer dummy = new DummyContainer(playerInventory, tmpInv);
    dummy.addDummySlot(0, 7, 7);

    dummy.addNormalSlotsForPlayerInventory(7, 90);
   
    this.inventorySlots = dummy;
    xSize = 175;
View Full Code Here

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

    _itemSink = itemSink;
   
    tmpInv = new ItemIdentifierInventory(1, "Analyse Slot", 1);
   
    DummyContainer dummy = new DummyContainer(playerInventory, tmpInv);
    dummy.addDummySlot(0, 7, 8);
   
    dummy.addNormalSlotsForPlayerInventory(7, 126);
     
      this.inventorySlots = dummy;
    xSize = 175;
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

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

    _itemSink = itemSink;

    tmpInv = new ItemIdentifierInventory(1, "Analyse Slot", 1);

    DummyContainer dummy = new DummyContainer(playerInventory, tmpInv);
    dummy.addDummySlot(0, 7, 8);

    dummy.addNormalSlotsForPlayerInventory(7, 126);

      this.inventorySlots = dummy;
    xSize = 175;
View Full Code Here

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

    super(176, 218, 0, 0);
    DummyContainer dummy = new DummyContainer(player.inventory, crafter.matrix);

    for(int x=0;x<3;x++) {
      for(int y=0;y<3;y++) {
        dummy.addDummySlot(y*3 + x, 35 + x*18, 10 + y*18);
      }
    }
    dummy.addUnmodifiableSlot(0, crafter.resultInv, 125, 28);
    for(int y=0;y<2;y++) {
      for(int x=0;x<9;x++) {
View Full Code Here

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

    DummyContainer dummy = new DummyContainer(player.inventory, dummyInventory);
    dummy.addNormalSlotsForPlayerInventory(8, ySize - 82);
   
    // Input slots
    for(int l = 0; l < 9; l++) {
      dummy.addDummySlot(l, 8 + l * 18, 18);
    }
   
    // Output slot
    if(!isAdvancedSat) {
      dummy.addDummySlot(9, 85, 55);
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.