Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 1, 2010, 10:21:35 AM (14 years ago)
Author:
dafrick
Message:

Committing recent changes in PickupInventory, to be able to try out some things and easily revert if they don't work out.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pickup4/data/gui/scripts/PickupInventory.lua

    r6632 r6669  
    1313P.layoutString = "PickupInventory.layout"
    1414
    15 function P:init()
     15P.carrierList = {}
     16
     17function P.init()
    1618   
    1719end
    1820
    19 function P:show()
    20     self.window:show() -- TODO: Do this through parent...
    21     self.visible = true
     21function P.show()
     22    P.window:show() -- TODO: Do this through parent...
     23    P.visible = true
    2224   
    23     carrierList = {}
     25    table.insert(P.carrierList, 4)
    2426   
    25     -- TODO: Nicer?
    2627    local pickupManager = orxonox.PickupManager:getInstance()
    2728    local carrier = pickupManager:getPawn()
    2829    P.getCarrierList(carrier)
    2930   
    30     for k,v in pairs(carrierList) do
     31    for k,v in pairs(P.carrierList) do
    3132        local args = {}
    3233        table.insert(args, v)
     
    4344    end
    4445   
    45     table.insert(carrierList, carrier)
     46    table.insert(P.carrierList, carrier)
    4647   
    47     local numCarriers = orxonox.PickupManager.getInstance():getNumCarrierChildren(carrier)
     48    local numCarriers = orxonox.PickupManager:getInstance():getNumCarrierChildren(carrier)
    4849    if numCarriers == 0 then
    4950        return
     
    5152   
    5253    for i=0,numCarriers-1,1 do
    53         local child = orxonox.PickupManager.getInstance():getCarrierChild(i, carrier)
     54        local child = orxonox.PickupManager:getInstance():getCarrierChild(i, carrier)
    5455        if child ~= nil then
    5556            P.getCarrierList(child)
Note: See TracChangeset for help on using the changeset viewer.