tibia-client/modules/game_inventory/inventory.lua

76 lines
2.0 KiB
Lua
Raw Normal View History

2011-11-10 06:29:25 +01:00
Inventory = {}
-- private variables
local inventoryWindow
2012-03-28 13:46:15 +02:00
local inventoryPanel
local inventoryButton
2011-11-10 06:29:25 +01:00
-- public functions
function Inventory.init()
connect(LocalPlayer, { onInventoryChange = Inventory.onInventoryChange,
onFreeCapacityChange = Inventory.onFreeCapacityChange })
2012-04-27 22:35:39 +02:00
connect(g_game, { onGameStart = Inventory.refresh })
Keyboard.bindKeyDown('Ctrl+I', Inventory.toggle)
inventoryWindow = displayUI('inventory.otui', GameInterface.getRightPanel())
inventoryPanel = inventoryWindow:getChildById('contentsPanel')
inventoryButton = TopMenu.addGameToggleButton('inventoryButton', tr('Inventory') .. ' (Ctrl+I)', 'inventory.png', Inventory.toggle)
inventoryButton:setOn(true)
Inventory.refresh()
2011-11-10 06:29:25 +01:00
end
function Inventory.terminate()
disconnect(LocalPlayer, { onInventoryChange = Inventory.onInventoryChange,
onFreeCapacityChange = Inventory.onFreeCapacityChange })
2012-04-27 22:35:39 +02:00
disconnect(g_game, { onGameStart = Inventory.refresh })
Keyboard.unbindKeyDown('Ctrl+I')
inventoryWindow:destroy()
inventoryButton:destroy()
inventoryWindow = nil
inventoryButton = nil
inventoryPanel = nil
2012-04-27 06:54:14 +02:00
Inventory = nil
end
function Inventory.refresh()
local player = g_game.getLocalPlayer()
for i=1,10 do
2012-04-27 22:35:39 +02:00
if player then
Inventory.onInventoryChange(player, i, player:getInventoryItem(i))
else
Inventory.onInventoryChange(player, i, nil)
end
end
end
function Inventory.toggle()
2012-06-21 21:31:22 +02:00
if inventoryButton:isOn() then
inventoryWindow:close()
inventoryButton:setOn(false)
else
inventoryWindow:open()
inventoryButton:setOn(true)
end
end
function Inventory.onMiniWindowClose()
inventoryButton:setOn(false)
2011-11-10 06:29:25 +01:00
end
-- hooked events
function Inventory.onInventoryChange(player, slot, item)
2012-03-28 13:46:15 +02:00
local itemWidget = inventoryPanel:getChildById('slot' .. slot)
2011-11-10 06:29:25 +01:00
itemWidget:setItem(item)
end
function Inventory.onFreeCapacityChange(player, freeCapacity)
2012-03-28 13:46:15 +02:00
local widget = inventoryPanel:getChildById('capacity')
widget:setText("Cap:\n" .. freeCapacity)
end