Package net.minecraft.entity.player

Examples of net.minecraft.entity.player.InventoryPlayer


      drawString(fontRendererObj, "Passengers : " + selectedType.numPassengers, guiOriginX + 82, guiOriginY + 94, 0xffffff);
      drawString(fontRendererObj, "Guns : " + (selectedType.ammoSlots()), guiOriginX + 82, guiOriginY + 104, 0xffffff);
      drawString(fontRendererObj, selectedType.numEngines() + "x", guiOriginX + 100, guiOriginY + 141, 0xffffff);
     
      //Create a temporary copy of the player inventory in order to work out whether the player has each of the itemstacks required
      InventoryPlayer temporaryInventory = new InventoryPlayer(null);
      temporaryInventory.copyInventory(inventory);
     
      //Draw the recipe items
      //Iterate over rows then columns
      for(int r = 0; r < 3; r++)
      {
        for(int c = 0; c < 4; c++)
        {
          //Work out what recipe item this is
          int recipeItemNumber = recipeScroll * 4 + r * 4 + c;
          //If this is actually a valid recipe item
          if(recipeItemNumber < selectedType.recipe.size())
          {
            //Get the itemstack required by the recipe
            ItemStack recipeStack = selectedType.recipe.get(recipeItemNumber);
            //The total amount of items found that match this recipe stack
            int totalAmountFound = 0;
            //Iterate over the temporary inventory
            for(int n = 0; n < temporaryInventory.getSizeInventory(); n++)
            {
              //Get the stack in each slot
              ItemStack stackInSlot = temporaryInventory.getStackInSlot(n);
              //If the stack is what we want
              if(stackInSlot != null && stackInSlot.getItem() == recipeStack.getItem() && stackInSlot.getItemDamage() == recipeStack.getItemDamage())
              {
                //Work out the amount to take from the stack
                int amountFound = Math.min(stackInSlot.stackSize, recipeStack.stackSize - totalAmountFound);
                //Take it
                stackInSlot.stackSize -= amountFound;
                //Check for empty stacks
                if(stackInSlot.stackSize <= 0)
                  stackInSlot = null;
                //Put the modified stack back in the inventory
                temporaryInventory.setInventorySlotContents(n, stackInSlot);
                //Increase the amount found counter
                totalAmountFound += amountFound;
                //If we have enough, stop looking
                if(totalAmountFound == recipeStack.stackSize)
                  break;
              }
            }
            //If we didn't find enough, give the stack a red outline
            if(totalAmountFound < recipeStack.stackSize)
            {
              mc.renderEngine.bindTexture(texture);
              drawTexturedModalRect(guiOriginX + 8 + c * 18, guiOriginY + 138 + r * 18, 195, 11, 16, 16);
              canCraft = false;
            }
            //Draw the actual item we want
            drawSlotInventory(recipeStack, guiOriginX + 8 + c * 18, guiOriginY + 138 + r * 18);
          }
        }
      }
     
      //Collect up all the engines into neat and tidy stacks so we can find if any of them are big enough and which of those stacks are best
      HashMap<PartType, ItemStack> engines = new HashMap<PartType, ItemStack>();
     
      //Find some suitable engines
      for(int n = 0; n < temporaryInventory.getSizeInventory(); n++)
      {
        //Get the stack in each slot
        ItemStack stackInSlot = temporaryInventory.getStackInSlot(n);
        //Check to see if its a part
        if(stackInSlot != null && stackInSlot.getItem() instanceof ItemPart)
        {
          PartType partType = ((ItemPart)stackInSlot.getItem()).type;
          //Check its an engine that we can use
View Full Code Here


        GL11.glEnable(GL11.GL_BLEND);
        GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        mc.renderEngine.bindTexture(WIDGITS);

        InventoryPlayer inv = mc.thePlayer.inventory;
        drawTexturedModalRect(width / 2 - 91, height - 22, 0, 0, 182, 22);
        drawTexturedModalRect(width / 2 - 91 - 1 + inv.currentItem * 20, height - 22 - 1, 0, 22, 24, 22);

        GL11.glDisable(GL11.GL_BLEND);
        GL11.glEnable(GL12.GL_RESCALE_NORMAL);
View Full Code Here

    if (mouseButton == 2) {
      if (((SlotForestry) slot).canAdjustPhantom())
        slot.putStack(null);
    } else if (mouseButton == 0 || mouseButton == 1) {
      InventoryPlayer playerInv = player.inventory;
      slot.onSlotChanged();
      ItemStack stackSlot = slot.getStack();
      ItemStack stackHeld = playerInv.getItemStack();

      if (stackSlot != null)
        stack = stackSlot.copy();

      if (stackSlot == null) {
        if (stackHeld != null && slot.isItemValid(stackHeld))
          fillPhantomSlot(slot, stackHeld, mouseButton, modifier);
      } else if (stackHeld == null) {
        adjustPhantomSlot(slot, mouseButton, modifier);
        slot.onPickupFromSlot(player, playerInv.getItemStack());
      } else if (slot.isItemValid(stackHeld))
        if (StackUtils.isIdenticalItem(stackSlot, stackHeld))
          adjustPhantomSlot(slot, mouseButton, modifier);
        else
          fillPhantomSlot(slot, stackHeld, mouseButton, modifier);
View Full Code Here

    OpenGlHelper.setLightmapTextureCoords(OpenGlHelper.lightmapTexUnit, 240 / 1.0F, 240 / 1.0F);
    GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);

    ledgerManager.drawTooltips(mouseX, mouseY);

    InventoryPlayer playerInv = mc.thePlayer.inventory;

    if (playerInv.getItemStack() == null) {
      drawToolTips(widgetManager.widgets, mouseX, mouseY);
      drawToolTips(buttonList, mouseX, mouseY);
      drawToolTips(inventorySlots.inventorySlots, mouseX, mouseY);
    }
View Full Code Here

  public void onContainerClosed(EntityPlayer entityplayer) {
    machine.activeContainer = null;
    if (entityplayer == null)
      return;

    InventoryPlayer inventoryplayer = entityplayer.inventory;
    if (inventoryplayer.getItemStack() != null) {
      Proxies.common.dropItemPlayer(entityplayer, inventoryplayer.getItemStack());
      inventoryplayer.setItemStack(null);
    }

  }
View Full Code Here

  }
 
  @SuppressWarnings({ "unchecked", "rawtypes" })
  public ItemStack superSlotClick(int par1, int par2, int par3, EntityPlayer par4EntityPlayer) {
    ItemStack itemstack = null;
    InventoryPlayer inventoryplayer = par4EntityPlayer.inventory;
    int i1;
    ItemStack itemstack3;
   
    if(par3 == 5) {
      int l = this.field_94536_g;
      this.field_94536_g = func_94532_c(par2);
     
      if((l != 1 || this.field_94536_g != 2) && l != this.field_94536_g) {
        this.func_94533_d();
      } else if(inventoryplayer.getItemStack() == null) {
        this.func_94533_d();
      } else if(this.field_94536_g == 0) {
        this.field_94535_f = func_94529_b(par2);
       
        if(func_94528_d(this.field_94535_f)) {
          this.field_94536_g = 1;
          this.field_94537_h.clear();
        } else {
          this.func_94533_d();
        }
      } else if(this.field_94536_g == 1) {
        Slot slot = (Slot)this.inventorySlots.get(par1);
       
        if(slot != null && func_94527_a(slot, inventoryplayer.getItemStack(), true) && slot.isItemValid(inventoryplayer.getItemStack()) && inventoryplayer.getItemStack().stackSize > this.field_94537_h.size() && this.canDragIntoSlot(slot)) {
          this.field_94537_h.add(slot);
        }
      } else if(this.field_94536_g == 2) {
        if(!this.field_94537_h.isEmpty()) {
          itemstack3 = inventoryplayer.getItemStack().copy();
          i1 = inventoryplayer.getItemStack().stackSize;
          Iterator iterator = this.field_94537_h.iterator();
         
          while(iterator.hasNext()) {
            Slot slot1 = (Slot)iterator.next();
           
            if(slot1 != null && func_94527_a(slot1, inventoryplayer.getItemStack(), true) && slot1.isItemValid(inventoryplayer.getItemStack()) && inventoryplayer.getItemStack().stackSize >= this.field_94537_h.size() && this.canDragIntoSlot(slot1)) {
              ItemStack itemstack1 = itemstack3.copy();
              int j1 = slot1.getHasStack() ? slot1.getStack().stackSize : 0;
              func_94525_a(this.field_94537_h, this.field_94535_f, itemstack1, j1);
             
              if(itemstack1.stackSize > itemstack1.getMaxStackSize()) {
                itemstack1.stackSize = itemstack1.getMaxStackSize();
              }
             
              if(itemstack1.stackSize > slot1.getSlotStackLimit()) {
                itemstack1.stackSize = slot1.getSlotStackLimit();
              }
             
              i1 -= itemstack1.stackSize - j1;
              slot1.putStack(itemstack1);
            }
          }
         
          itemstack3.stackSize = i1;
         
          if(itemstack3.stackSize <= 0) {
            itemstack3 = null;
          }
         
          inventoryplayer.setItemStack(itemstack3);
        }
       
        this.func_94533_d();
      } else {
        this.func_94533_d();
      }
    } else if(this.field_94536_g != 0) {
      this.func_94533_d();
    } else {
      Slot slot2;
      int l1;
      ItemStack itemstack5;
     
      if((par3 == 0 || par3 == 1) && (par2 == 0 || par2 == 1)) {
        if(par1 == -999) {
          if(inventoryplayer.getItemStack() != null && par1 == -999) {
            if(par2 == 0) {
              par4EntityPlayer.dropPlayerItemWithRandomChoice(inventoryplayer.getItemStack(), true);
              inventoryplayer.setItemStack((ItemStack)null);
            }
           
            if(par2 == 1) {
              par4EntityPlayer.dropPlayerItemWithRandomChoice(inventoryplayer.getItemStack().splitStack(1), true);
             
              if(inventoryplayer.getItemStack().stackSize == 0) {
                inventoryplayer.setItemStack((ItemStack)null);
              }
            }
          }
        } else if(par3 == 1) {
          if(par1 < 0) { return null; }
         
          slot2 = (Slot)this.inventorySlots.get(par1);
         
          if(slot2 != null && slot2.canTakeStack(par4EntityPlayer)) {
            itemstack3 = this.transferStackInSlot(par4EntityPlayer, par1);
           
            if(itemstack3 != null) {
              Item item = itemstack3.getItem();
              itemstack = itemstack3.copy();
             
              if(slot2.getStack() != null && slot2.getStack().getItem() == item) {
                this.retrySlotClick(par1, par2, true, par4EntityPlayer);
              }
            }
          }
        } else {
          if(par1 < 0) { return null; }
         
          slot2 = (Slot)this.inventorySlots.get(par1);
         
          if(slot2 != null) {
            itemstack3 = slot2.getStack();
            ItemStack itemstack4 = inventoryplayer.getItemStack();
           
            if(itemstack3 != null) {
              itemstack = itemstack3.copy();
            }
           
            if(itemstack3 == null) {
              if(itemstack4 != null && slot2.isItemValid(itemstack4)) {
                l1 = par2 == 0 ? itemstack4.stackSize : 1;
               
                if(l1 > slot2.getSlotStackLimit()) {
                  l1 = slot2.getSlotStackLimit();
                }
               
                if(itemstack4.stackSize >= l1) {
                  slot2.putStack(itemstack4.splitStack(l1));
                }
               
                if(itemstack4.stackSize == 0) {
                  inventoryplayer.setItemStack((ItemStack)null);
                }
              }
            } else if(slot2.canTakeStack(par4EntityPlayer)) {
              if(itemstack4 == null) {
                l1 = par2 == 0 ? itemstack3.stackSize : (itemstack3.stackSize + 1) / 2;
                itemstack5 = slot2.decrStackSize(l1);
                inventoryplayer.setItemStack(itemstack5);
               
                if(itemstack3.stackSize == 0) {
                  slot2.putStack((ItemStack)null);
                }
               
                slot2.onPickupFromSlot(par4EntityPlayer, inventoryplayer.getItemStack());
              } else if(slot2.isItemValid(itemstack4)) {
                if(itemstack3.getItem() == itemstack4.getItem() && itemstack3.getItemDamage() == itemstack4.getItemDamage() && ItemStack.areItemStackTagsEqual(itemstack3, itemstack4)) {
                  l1 = par2 == 0 ? itemstack4.stackSize : 1;
                 
                  if(l1 > slot2.getSlotStackLimit() - itemstack3.stackSize) {
                    l1 = slot2.getSlotStackLimit() - itemstack3.stackSize;
                  }
                 
                  if(l1 > itemstack4.getMaxStackSize() - itemstack3.stackSize) {
                    l1 = itemstack4.getMaxStackSize() - itemstack3.stackSize;
                  }
                 
                  itemstack4.splitStack(l1);
                 
                  if(itemstack4.stackSize == 0) {
                    inventoryplayer.setItemStack((ItemStack)null);
                  }
                 
                  itemstack3.stackSize += l1;
                 
                  slot2.putStack(itemstack3); // XXX added reinserting of the modified itemStack (Fix ItemIdentifierInventory's disappearing items)
                 
                } else if(itemstack4.stackSize <= slot2.getSlotStackLimit()) {
                  slot2.putStack(itemstack4);
                  inventoryplayer.setItemStack(itemstack3);
                }
              } else if(itemstack3.getItem() == itemstack4.getItem() && itemstack4.getMaxStackSize() > 1 && (!itemstack3.getHasSubtypes() || itemstack3.getItemDamage() == itemstack4.getItemDamage()) && ItemStack.areItemStackTagsEqual(itemstack3, itemstack4)) {
                l1 = itemstack3.stackSize;
               
                if(l1 > 0 && l1 + itemstack4.stackSize <= itemstack4.getMaxStackSize()) {
                  itemstack4.stackSize += l1;
                  itemstack3 = slot2.decrStackSize(l1);
                 
                  if(itemstack3.stackSize == 0) {
                    slot2.putStack((ItemStack)null);
                  }
                 
                  slot2.onPickupFromSlot(par4EntityPlayer, inventoryplayer.getItemStack());
                }
              }
            }
           
            slot2.onSlotChanged();
          }
        }
      } else if(par3 == 2 && par2 >= 0 && par2 < 9) {
        slot2 = (Slot)this.inventorySlots.get(par1);
       
        if(slot2.canTakeStack(par4EntityPlayer)) {
          itemstack3 = inventoryplayer.getStackInSlot(par2);
          boolean flag = itemstack3 == null || slot2.inventory == inventoryplayer && slot2.isItemValid(itemstack3);
          l1 = -1;
         
          if(!flag) {
            l1 = inventoryplayer.getFirstEmptyStack();
            flag |= l1 > -1;
          }
         
          if(slot2.getHasStack() && flag) {
            itemstack5 = slot2.getStack();
            inventoryplayer.setInventorySlotContents(par2, itemstack5.copy());
           
            if((slot2.inventory != inventoryplayer || !slot2.isItemValid(itemstack3)) && itemstack3 != null) {
              if(l1 > -1) {
                inventoryplayer.addItemStackToInventory(itemstack3);
                slot2.decrStackSize(itemstack5.stackSize);
                slot2.putStack((ItemStack)null);
                slot2.onPickupFromSlot(par4EntityPlayer, itemstack5);
              }
            } else {
              slot2.decrStackSize(itemstack5.stackSize);
              slot2.putStack(itemstack3);
              slot2.onPickupFromSlot(par4EntityPlayer, itemstack5);
            }
          } else if(!slot2.getHasStack() && itemstack3 != null && slot2.isItemValid(itemstack3)) {
            inventoryplayer.setInventorySlotContents(par2, (ItemStack)null);
            slot2.putStack(itemstack3);
          }
        }
      } else if(par3 == 3 && par4EntityPlayer.capabilities.isCreativeMode && inventoryplayer.getItemStack() == null && par1 >= 0) {
        slot2 = (Slot)this.inventorySlots.get(par1);
       
        if(slot2 != null && slot2.getHasStack()) {
          itemstack3 = slot2.getStack().copy();
          itemstack3.stackSize = itemstack3.getMaxStackSize();
          inventoryplayer.setItemStack(itemstack3);
        }
      } else if(par3 == 4 && inventoryplayer.getItemStack() == null && par1 >= 0) {
        slot2 = (Slot)this.inventorySlots.get(par1);
       
        if(slot2 != null && slot2.getHasStack() && slot2.canTakeStack(par4EntityPlayer)) {
          itemstack3 = slot2.decrStackSize(par2 == 0 ? 1 : slot2.getStack().stackSize);
          slot2.onPickupFromSlot(par4EntityPlayer, itemstack3);
          par4EntityPlayer.dropPlayerItemWithRandomChoice(itemstack3, true);
        }
      } else if(par3 == 6 && par1 >= 0) {
        slot2 = (Slot)this.inventorySlots.get(par1);
        itemstack3 = inventoryplayer.getItemStack();
       
        if(itemstack3 != null && (slot2 == null || !slot2.getHasStack() || !slot2.canTakeStack(par4EntityPlayer))) {
          i1 = par2 == 0 ? 0 : this.inventorySlots.size() - 1;
          l1 = par2 == 0 ? 1 : -1;
         
View Full Code Here

        }
      }
      return stack1;
    }
   
    InventoryPlayer inventoryplayer = entityplayer.inventory;
   
    ItemStack currentlyEquippedStack = inventoryplayer.getItemStack();
   
    // we get a leftclick *and* a doubleclick message if there's a doubleclick with no item on the pointer, filter it out
    if(currentlyEquippedStack == null && isShift == 6) { return currentlyEquippedStack; }
   
    if(slot instanceof HandelableSlot) {
      if(currentlyEquippedStack == null) {
        inventoryplayer.setItemStack(((HandelableSlot)slot).getProvidedStack());
        return null;
      }
      return currentlyEquippedStack;
    }
   
View Full Code Here

        GL11.glPushMatrix();
        GL11.glTranslatef((float) left, (float) top, 0.0F);
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        RenderHelper.disableStandardItemLighting();

        InventoryPlayer playerInv = this.mc.thePlayer.inventory;

        if (playerInv.getItemStack() == null) {
            int mX = mouseX - left;
            int mY = mouseY - top;
            for (Widget element : container.getElements()) {
                if (element.hidden)
                    continue;
View Full Code Here

    if ( player.isSneaking() )
    {
      if ( Platform.isClient() )
        return false;

      InventoryPlayer playerInventory = player.inventory;
      IMEInventory<IAEItemStack> inv = AEApi.instance().registries().cell().getCellInventory( stack, null, StorageChannel.ITEMS );
      if ( inv != null && playerInventory.getCurrentItem() == stack )
      {
        InventoryAdaptor ia = InventoryAdaptor.getAdaptor( player, ForgeDirection.UNKNOWN );
        IItemList<IAEItemStack> list = inv.getAvailableItems( StorageChannel.ITEMS.createList() );
        if ( list.isEmpty() && ia != null )
        {
          playerInventory.setInventorySlotContents( playerInventory.currentItem, null );

          ItemStack extraB = ia.addItems( this.component.stack( 1 ) );
          ItemStack extraA = ia.addItems( AEApi.instance().materials().materialEmptyStorageCell.stack( 1 ) );

          if ( extraA != null )
View Full Code Here

    if ( player.isSneaking() )
    {
      if ( Platform.isClient() )
        return false;

      InventoryPlayer inv = player.inventory;

      for (int s = 0; s < player.inventory.getSizeInventory(); s++)
      {
        if ( inv.getStackInSlot( s ) == stack )
        {
          inv.setInventorySlotContents( s, AEApi.instance().materials().materialBlankPattern.stack( stack.stackSize ) );
          return true;
        }
      }
    }
View Full Code Here

TOP

Related Classes of net.minecraft.entity.player.InventoryPlayer

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.