-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtinyGratuity.lua
68 lines (55 loc) · 2.03 KB
/
tinyGratuity.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
local _G = getfenv(0)
local tip = CreateFrame("GameTooltip")
tip:SetOwner(WorldFrame, "ANCHOR_NONE")
-- Our global, change as needed
DEATinyGratuity = tip
local lcache, rcache = {}, {}
for i=1,30 do
lcache[i], rcache[i] = tip:CreateFontString(), tip:CreateFontString()
lcache[i]:SetFontObject(GameFontNormal); rcache[i]:SetFontObject(GameFontNormal)
tip:AddFontStrings(lcache[i], rcache[i])
end
-- GetText cache tables, provide fast access to the tooltip's text
tip.L = setmetatable({}, {
__index = function(t, key)
if tip:NumLines() >= key and lcache[key] then
local v = lcache[key]:GetText()
t[key] = v
return v
end
return nil
end,
})
tip.R = setmetatable({}, {
__index = function(t, key)
if tip:NumLines() >= key and rcache[key] then
local v = rcache[key]:GetText()
t[key] = v
return v
end
return nil
end,
})
-- Performes a "full" erase of the tooltip
tip.Erase = function(self)
self:ClearLines() -- Ensures tooltip's NumLines is reset
for i in pairs(self.L) do self.L[i] = nil end -- Flush the metatable cache
for i in pairs(self.R) do
self.rcache[i]:SetText() -- Clear text from right side (ClearLines only hides them)
self.R[i] = nil -- Flush the metatable cache
end
if not self:IsOwned(WorldFrame) then self:SetOwner(WorldFrame, "ANCHOR_NONE") end
end
-- Hooks the Set* methods to force a full erase beforehand
local methods = {"SetMerchantCostItem", "SetBagItem", "SetAction", "SetAuctionItem", "SetAuctionSellItem", "SetBuybackItem",
"SetCraftItem", "SetCraftSpell", "SetHyperlink", "SetInboxItem", "SetInventoryItem", "SetLootItem", "SetLootRollItem",
"SetMerchantItem", "SetPetAction", "SetPlayerBuff", "SetQuestItem", "SetQuestLogItem", "SetQuestRewardSpell",
"SetSendMailItem", "SetShapeshift", "SetSpell", "SetTalent", "SetTrackingSpell", "SetTradePlayerItem", "SetTradeSkillItem",
"SetTradeTargetItem", "SetTrainerService", "SetUnit", "SetUnitBuff", "SetUnitDebuff"}
for _,m in pairs(methods) do
local orig = tip[m]
tip[m] = function(self, ...)
self:Erase()
return orig(self, ...)
end
end