mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-24 00:26:55 +00:00
d27db55abf
sellvalue.lua: SetItemRef hook follows the same pattern questitem.lua got earlier — replaces the local-Hook + _G.SetItemRef monkey-patch with hooksecurefunc, drops the string.find link-parser, and reads itemID directly from ItemRefTooltip:GetItem after the original populates the tooltip. The OnShow path also moves from libtooltip:GetItemLink/GetItemID to GameTooltip:HasItem/GetItem (libtooltip:GetItemCount stays — it's populated by libtooltip's own SetBagItem hook and carries the stack count, which GetItem doesn't return). unusable.lua: the two post-hooks (pfUI.bag.UpdateSlot and BankFrameItemButton_UpdateLock) are textbook hooksecurefunc cases — both ran the original then did extra work, no conditional skip or return-value tampering. The table form of hooksecurefunc handles pfUI.bag.UpdateSlot cleanly.
53 lines
1.6 KiB
Lua
53 lines
1.6 KiB
Lua
pfUI:RegisterModule("unusable", "vanilla:tbc", function ()
|
|
if not pfUI.bag then return end
|
|
if C.appearance.bags.unusable ~= "1" then return end
|
|
|
|
pfUI.unusable = {}
|
|
|
|
local scanner = libtipscan:GetScanner("unusable")
|
|
local durability = string.gsub(DURABILITY_TEMPLATE, "%%[^%s]+", "(.+)")
|
|
local r, g, b, a = strsplit(",", C.appearance.bags.unusable_color)
|
|
|
|
function pfUI.unusable:UpdateSlot(bag, slot)
|
|
-- break on invalid bag slots
|
|
if not pfUI.bags[bag] then return end
|
|
if not pfUI.bags[bag].slots[slot] then return end
|
|
|
|
-- add button shortcuts
|
|
local frame = pfUI.bags[bag].slots[slot].frame
|
|
local name = frame:GetName()
|
|
|
|
-- return on empty buttons
|
|
if not frame.hasItem then return end
|
|
|
|
-- set the proper tooltip method
|
|
if bag == BANK_CONTAINER then
|
|
scanner:SetInventoryItem("player", 39+slot)
|
|
else
|
|
scanner:SetBagItem(bag, slot)
|
|
end
|
|
|
|
-- check for red color in tooltip
|
|
local red = scanner:Color(RED_FONT_COLOR)
|
|
if not red then return end
|
|
|
|
-- check for broken items
|
|
local left = scanner:Line(red)
|
|
local _, _, broken = string.find(left, durability, 1)
|
|
if broken then return end
|
|
|
|
-- update button vertex color
|
|
_G.SetItemButtonTextureVertexColor(frame, r, g, b, a)
|
|
end
|
|
|
|
-- update on regular pfUI button updates
|
|
hooksecurefunc(pfUI.bag, "UpdateSlot", function(self, bag, slot)
|
|
pfUI.unusable:UpdateSlot(bag, slot)
|
|
end)
|
|
|
|
-- update on bank frame itemlock updates
|
|
hooksecurefunc("BankFrameItemButton_UpdateLock", function()
|
|
pfUI.unusable:UpdateSlot(-1, this:GetID())
|
|
end)
|
|
end)
|