Snippet Save Item Charges

Nestharus

o-o
Reaction score
84
JASS:

library SaveItemCharges /*
*************************************************************************************
*
*   Saves item charges. If an item has no charge, no data is saved at all. If no
*   items in inventory have chages, then absolutely no data is saved. Can use this script
*   with absolutely no cost if the map does not yet have items with charges.
*
*   *************************************************************************************
*   *
*   *   these two tables must be created by the user
*   *   itemMaxChargeTable should have an integer signifying max item charges
*   *   itemPerishableTable should have a boolean signifying whether item is perishable or not
*   *
*   *   itemMaxChargeTable
*   *       ->      maxCharges[itemTypeId]=maxCharges
*   *
*   *   itemPerishableTable
*   *       ->      isPerishable[itemTypeId].boolean=true
*   *   
*   *************************************************************************************
*
*************************************************************************************
*
*   */uses/*
*
*       */ NumberStack /*       hiveworkshop.com/forums/1993458-post521.html
*       */ Table /*             hiveworkshop.com/forums/jass-functions-413/snippet-new-table-188084/
*       */ optional Buffer /*   hiveworkshop.com/forums/2002936-post568.html
*
************************************************************************************
*
*   function SaveItemCharges takes NumberStack stack, unit whichUnit, Table itemMaxChargeTable, Table itemPerishableTable returns nothing
*
*   -> No Buffer <-
*
*       function LoadItemCharges takes NumberStack stack, unit whichUnit, Table itemMaxChargeTable, Table itemPerishableTable returns nothing
*
*   -> Buffer <-
*
*       function LoadItemChargesToBuffer takes NumberStack stack, unit whichUnit, Table itemMaxChargeTable, Table itemPerishableTable returns nothing
*       function LoadItemChargesFromBuffer takes unit whichUnit, Table itemMaxChargeTable returns nothing
*
*   Basic Demos
*
*   ************************************************************************************
*   *
*   *   Table maxCharges = Table.create()
*   *   Table isPerishable = Table.create()
*   *
*   *   set maxCharges['item']=20
*   *   set isPerishable['item'].boolean=true
*   *
*   ************************************************************************************
*   *
*   *   call SaveItemCharges(stack,someUnit,maxCharges,isPerishable)
*   *
*   ************************************************************************************
*   *
*   *   call LoadItemCharges(stack,someUnit,maxCharges,isPerishable)
*   *
*   ************************************************************************************
*
************************************************************************************/
    function SaveItemCharges takes NumberStack stack, unit whichUnit, Table itemMaxChargeTable, Table itemPerishableTable returns nothing
        local integer inventorySize = UnitInventorySize(whichUnit)
        local integer itemSlot = 0
        local integer maxCharges = 0
        local integer itemTypeId
        local item currentItem
        local integer itemCount=0
        loop
            exitwhen itemSlot == inventorySize
            set currentItem=UnitItemInSlot(whichUnit,itemSlot)
            if (null!=currentItem) then
                set itemCount=itemCount+1
                set itemTypeId = GetItemTypeId(currentItem)
                set maxCharges = itemMaxChargeTable[itemTypeId]
                if (0<maxCharges) then
                    if (itemPerishableTable.boolean[itemTypeId]) then
                        call stack.push(GetItemCharges(currentItem)-1,maxCharges-1)
                    else
                        call stack.push(GetItemCharges(currentItem),maxCharges)
                    endif
                endif
            endif
            set itemSlot = itemSlot + 1
        endloop
        set currentItem=null
    endfunction
    static if LIBRARY_Buffer then
        function LoadItemChargesToBuffer takes NumberStack stack, unit whichUnit, Table itemMaxChargeTable, Table itemPerishableTable returns nothing
            local integer inventorySize = UnitInventorySize(whichUnit)
            local integer itemSlot = 0
            local integer maxCharges = 0
            local integer itemTypeId
            local item currentItem
            loop
                exitwhen itemSlot == inventorySize
                set currentItem=UnitItemInSlot(whichUnit,itemSlot)
                if (null!=currentItem) then
                    set itemTypeId = GetItemTypeId(currentItem)
                    set maxCharges = itemMaxChargeTable[itemTypeId]
                    if (0<maxCharges) then
                        if (itemPerishableTable.boolean[itemTypeId]) then
                            call Buffer.write(stack.pop(maxCharges-1)+1)
                        else
                            call Buffer.write(stack.pop(maxCharges))
                        endif
                    endif
                endif
                set itemSlot = itemSlot + 1
            endloop
            set currentItem=null
        endfunction
        function LoadItemChargesFromBuffer takes unit whichUnit, Table itemMaxChargeTable returns nothing
            local integer inventorySize = UnitInventorySize(whichUnit)
            local integer itemSlot = 0
            local item currentItem
            loop
                exitwhen itemSlot == inventorySize
                set currentItem=UnitItemInSlot(whichUnit,itemSlot)
                if (null!=currentItem) then
                    if (0<itemMaxChargeTable[GetItemTypeId(currentItem)]) then
                        call SetItemCharges(currentItem,Buffer.read())
                    endif
                endif
                set itemSlot = itemSlot + 1
            endloop
            set currentItem=null
        endfunction
    else
        function LoadItemCharges takes NumberStack stack, unit whichUnit, Table itemMaxChargeTable, Table itemPerishableTable returns nothing
            local integer inventorySize = UnitInventorySize(whichUnit)
            local integer itemSlot = 0
            local integer maxCharges = 0
            local integer itemTypeId
            local item currentItem
            loop
                exitwhen itemSlot == inventorySize
                set currentItem=UnitItemInSlot(whichUnit,itemSlot)
                if (null!=currentItem) then
                    set itemTypeId = GetItemTypeId(currentItem)
                    set maxCharges = itemMaxChargeTable[itemTypeId]
                    if (0<maxCharges) then
                        if (itemPerishableTable.boolean[itemTypeId]) then
                            call SetItemCharges(currentItem,stack.pop(maxCharges-1)+1)
                        else
                            call SetItemCharges(currentItem,stack.pop(maxCharges))
                        endif
                    endif
                endif
                set itemSlot = itemSlot + 1
            endloop
            set currentItem=null
        endfunction
    endif
endlibrary
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • The Helper The Helper:
    Check out my new teeth in my profile pic :)
  • The Helper The Helper:
    Fucking bionic
  • The Helper The Helper:
    Zirconium
  • V-SNES V-SNES:
    Looks great!
    +1
  • The Helper The Helper:
    Happy Thursday!
    +1
  • The Helper The Helper:
    Added new Crab Bisque Soup recipe - which is badass by the way - Crab Bisque - https://www.thehelper.net/threads/soup-crab-bisque.196085/
  • The Helper The Helper:
    I feel like we need to all meet up somewhere sometime. Maybe like in Vegas :)
    +2
  • The Helper The Helper:
    Would love to go to Vegas I have never been and it would be an adventure! Who is in?
  • The Helper The Helper:
    at least the full on bot attack has stopped it was getting ridiculous there for a while and we use cloudflare and everything
  • jonas jonas:
    I'm sure my wife would not be happy if I went to Vegas, but don't let that stop you guys - would be hard for me to attend anyways
    +1
  • jonas jonas:
    Do you know why the bot attack stopped?
  • The Helper The Helper:
    maybe they finally got everything lol
  • Ghan Ghan:
    There's lots of good food in Vegas.
  • Ghan Ghan:
    Everything tends to be pretty expensive though so bring your wallet.
    +1
  • The Helper The Helper:
    I have to wait longer if I am going for food because my teeth are still messed up from the work and I still cannot eat right. Going to be a couple more months before that gets better
    +1
  • The Helper The Helper:
    I would immediately hitting the dispensary though :)
    +1
  • Varine Varine:
    My Xbox account got hijacked, and apparently I have a different one from like 10 years ago that Microsoft keeps telling me is the right one
  • Varine Varine:
    Like NO, I mean for some reason that one is attached to my email, but it's not the right one
  • Varine Varine:
    I have a different one, and that one has my credit card attached to it and I would like that credit card to not be attached to it if I can't get it back
  • Varine Varine:
    Anyway Microsoft is not very helpful with this, they just keep telling me to fill out the Account Recovery form, but that just redirects me to the other account
  • The Helper The Helper:
    They should not allow you to put a credit card on a account that does not have human customer service you can call
  • Varine Varine:
    That's the only thing that got hijacked at least. I don't totally know how these integrate together, but it seems like I should be able to do this via the gamertag. Like my email is still mine, but they changed the email to that account I'm guessing.
    +1
  • Blackveiled Blackveiled:
    I went to Vegas a few weeks ago to visit my mom. I had never been either, lol! But I'm working in Salt Lake City at the moment so it's not a far trip.
    +1
  • The Helper The Helper:
    I have never been to Vegas and it is on the bucket list so...

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top