1 QuestHelper_File
["tooltip.lua"] = "Development Version"
2 QuestHelper_Loadtime
["tooltip.lua"] = GetTime()
4 if QuestHelper_File
["tooltip.lua"] == "Development Version" then
5 qh_hackery_nosuppress
= true
8 local function DoTooltip(self
, data
, lines
, prefix
)
12 self
:AddLine((" "):rep(indent
) .. prefix
, 1, 1, 1)
16 --QuestHelper:TextOut(QuestHelper:StringizeTable(data))
17 --QuestHelper:TextOut(QuestHelper:StringizeTable(lines))
18 for _
, v
in ipairs(lines
) do
19 self
:AddLine((" "):rep(indent
) .. v
, 1, 1, 1)
22 self
:AddLine((" "):rep(indent
) .. data
.desc
, 1, 1, 1)
23 QuestHelper
:AppendObjectiveProgressToTooltip(data
, self
, nil, indent
+ 1)
26 local function DoTooltipDefault(self
, qname
, text
)
27 self
:AddLine(" " .. QHFormat("TOOLTIP_SLAY", text
), 1, 1, 1)
28 self
:AddLine(" " .. QHFormat("TOOLTIP_QUEST", qname
), 1, 1, 1)
34 -- { ["monster@@1234"] = {{"Slay for blah blah blah"}, (Objective)} }
35 -- ("Slay for" is frequently an empty table)
36 function QH_Tooltip_Canned_Add(tooltips
)
37 for k
, v
in pairs(tooltips
) do
38 local typ
, id
= k
:match("([^@]+)@@([^@]+)")
40 for tk, tv in pairs(v[1]) do
43 for tk, tv in pairs(v[2]) do
46 QuestHelper
: Assert(typ
and id
, k
)
47 if not ctts
[typ
] then ctts
[typ
] = {} end
48 if not ctts
[typ
][id
] then ctts
[typ
][id
] = {} end
49 QuestHelper
: Assert(not ctts
[typ
][id
][v
[2]]
)
50 ctts
[typ
][id
][v
[2]]
= v
[1]
53 function QH_Tooltip_Canned_Remove(tooltips
)
54 for k
, v
in pairs(tooltips
) do
55 local typ
, id
= k
:match("([^@]+)@@([^@]+)")
56 QuestHelper
: Assert(typ
and id
, k
)
57 QuestHelper
: Assert(ctts
[typ
][id
][v
[2]]
)
58 ctts
[typ
][id
][v
[2]]
= nil
61 for _
, _
in pairs(ctts
[typ
][id
]) do
72 local deference_default
= {} -- this is just a unique value that we can use to lookup
74 -- think about what we want out of this
75 -- If it matches quest/objective, we suppress it and show our canned text
76 -- If it matches quest, but has unknown objectives, we suppress it and show some synthesized "Canned thing, for Quest Blahblahblah"
78 -- tooltips is the same slay/objective pair in the above thing
79 function QH_Tooltip_Defer_Add(questname
, objective
, tooltips
)
80 --print("defer add", questname, objective)
81 local objo
= objective
82 if not objective
then objective
= deference_default
end
84 if not deferences
[questname
] then deferences
[questname
] = {} end
85 if not deferences
[questname
][objective
] then deferences
[questname
][objective
] = {} end
87 for k
, v
in pairs(deferences
[questname
][objective
]) do
88 QuestHelper
: Assert(v
~= tooltips
)
90 table.insert(deferences
[questname
][objective
], tooltips
)
92 --print("adding", questname, objective)
94 function QH_Tooltip_Defer_Remove(questname
, objective
, tooltips
)
95 local objo
= objective
96 if not objective
then objective
= deference_default
end
98 --print("remove", questname, objective)
99 --print("removing", questname, objective, deferences[questname][objective])
100 QuestHelper
: Assert(deferences
[questname
][objective
], string.format("%s %s %s", tostring(questname
), tostring(objective
), tostring(objo
)))
103 for k
, v
in pairs(deferences
[questname
][objective
]) do
104 if v
== tooltips
then
105 table.remove(deferences
[questname
][objective
], k
)
110 QuestHelper
: Assert(remmed
)
112 if #deferences
[questname
][objective
] == 0 then
113 deferences
[questname
][objective
] = nil
117 for _
in pairs(deferences
[questname
]) do
122 deferences
[questname
] = nil
125 function QH_Tooltip_Defer_Dump()
126 for k
, v
in pairs(deferences
) do
128 for t
, m
in pairs(v
) do
134 -- TODO: move this into some common file, I hate that I'm duplicating them but I just want this to work. entire codebase will need a going-over soon
135 local function IsMonsterGUID(guid
)
136 QuestHelper
: Assert(#guid
== 18, "guid len " .. guid
) -- 64 bits, plus the 0x prefix
137 QuestHelper
: Assert(guid
:sub(1, 2) == "0x", "guid 0x-prefix " .. guid
)
138 return guid
:sub(5, 5) == "3" or guid
:sub(5, 5) == "5"
141 local function GetMonsterType(guid
)
142 QuestHelper
: Assert(#guid
== 18, "guid len " .. guid
) -- 64 bits, plus the 0x prefix
143 QuestHelper
: Assert(guid
:sub(1, 2) == "0x", "guid 0x-prefix " .. guid
)
144 QuestHelper
: Assert(guid
:sub(5, 5) == "3" or guid
:sub(5, 5) == "5", "guid 3-prefix " .. guid
) -- It *shouldn't* be a player or a pet by the time we've gotten here. If so, something's gone wrong.
145 return tonumber(guid
:sub(9, 12), 16) -- here's our actual identifier
148 local function GetItemType(link
, vague
)
149 return tonumber(string.match(link
,
150 (vague
and "" or "^") .. "|cff%x%x%x%x%x%x|Hitem:(%d+):[%d:-]+|h%[[^%]]*%]|h|r".. (vague
and "" or "$")
154 local function CopyOver(to
, from
)
155 to
:SetFont(from
:GetFont())
156 to
:SetFontObject(from
:GetFontObject())
157 to
:SetText(from
:GetText())
158 to
:SetTextColor(from
:GetTextColor())
159 to
:SetSpacing(from
:GetSpacing())
160 to
:SetShadowOffset(from
:GetShadowOffset())
161 to
:SetShadowColor(from
:GetShadowColor())
165 local function StripBlizzQHTooltipClone(ttp
)
167 if not UnitExists("mouseover") then return end
172 local changed
= false
175 if qh_tooltip_print_a_lot
then print(line
, _G
["GameTooltipTextLeft" .. line
], _G
["GameTooltipTextLeft" .. line
]:IsShown()) end
178 local qobj_name
= nil
180 while _G
["GameTooltipTextLeft" .. line
] and _G
["GameTooltipTextLeft" .. line
]:IsShown() do
181 local r
, g
, b
, a
= _G
["GameTooltipTextLeft" .. line
]:GetTextColor()
182 r
, g
, b
, a
= math
.floor(r
* 255 + 0.5), math
.floor(g
* 255 + 0.5), math
.floor(b
* 255 + 0.5), math
.floor(a
* 255 + 0.5)
184 if qh_tooltip_print_a_lot
then print(r
, g
, b
, a
) end
186 if r
== 255 and g
== 210 and b
== 0 and a
== 255 and not qh_tooltip_do_not_hide_things
then
187 if qh_tooltip_print_a_lot
then print("hiding") end
189 local thistext
= _G
["GameTooltipTextLeft" .. line
]:GetText()
191 if deferences
[thistext
] then
192 qobj
= deferences
[thistext
]
195 --print(qobj, thistext, qobj[thistext], qobj[deference_default])
196 if qobj
[thistext
] then
197 local ite
= qobj
[thistext
][1]
198 QuestHelper
: Assert(ite
)
200 local ttsplat
= thistext
:match("(.*): ([0-9]+)/([0-9]+)")
201 if ttsplat
== ttp
:GetUnit() then
204 DoTooltip(ttp
, ite
[2], ite
[1], ttsplat
and QHFormat("TOOLTIP_SLAY", ttsplat
))
205 elseif qobj
[deference_default
] and not thistext
:find(":") then -- Blizzard cleverly does not suppress tooltips when the user has finished getting certain items, so we do instead
206 DoTooltipDefault(ttp
, qobj_name
, thistext
)
210 if not qh_hackery_nosuppress
then
211 _G
["GameTooltipTextLeft" .. line
]:SetText(nil)
212 _G
["GameTooltipTextLeft" .. line
]:SetHeight(0)
213 _G
["GameTooltipTextLeft" .. line
]:ClearAllPoints()
214 _G
["GameTooltipTextLeft" .. line
]:SetPoint("TOPLEFT", _G
["GameTooltipTextLeft" .. (line
- 1)], "BOTTOMLEFT", 0, 1)
216 removed
= removed
+ 1
231 function CreateTooltip(self
)
234 if QuestHelper_Pref
.tooltip
then
235 local inu
, ilink
= self
:GetItem()
236 local un
, ulink
= self
:GetUnit()
237 if ulink
then ulink
= UnitGUID(ulink
) end
240 local ite
= tostring(GetItemType(ilink
))
242 if ctts
["item"] and ctts
["item"][ite
] then
243 DoTooltip(self
, ctts
["item"][ite
])
249 if qh_tooltip_print_a_lot
then print("wut", ulink
, IsMonsterGUID(ulink
)) print(ulink
) print(IsMonsterGUID(ulink
)) end
250 if ulink
and IsMonsterGUID(ulink
) then
251 if qh_tooltip_print_a_lot
then print("huhwuzat") print(QH_filter_hints
) end
253 glob_strip
= StripBlizzQHTooltipClone(self
)
255 local ite
= tostring(GetMonsterType(ulink
))
257 if ctts
["monster"] and ctts
["monster"][ite
] then
258 for data
, lines
in pairs(ctts
["monster"][ite
]) do
259 DoTooltip(self
, data
, lines
)
268 local unit_to_adjust
= nil
270 -- SmoothQuest and possibly others
271 QH_AddNotifier(GetTime() + 5, function ()
272 local ottsu
= GameTooltip
:GetScript("OnTooltipSetUnit")
273 QH_Hook(GameTooltip
, "OnTooltipSetUnit", function (self
, ...)
274 if qh_tooltip_print_a_lot
then print("lol") end
276 if ottsu
then return QH_Hook_NotMyFault(ottsu
, self
, ...) end
277 unit_to_adjust
= self
:GetUnit()
278 end, "tooltip OnTooltipSetUnit")
280 local ottsi
= GameTooltip
:GetScript("OnTooltipSetItem")
281 QH_Hook(GameTooltip
, "OnTooltipSetItem", function (self
, ...)
282 QH_Hook_NotMyFault(CreateTooltip
, self
)
283 if ottsi
then return QH_Hook_NotMyFault(ottsi
, self
, ...) end
284 end, "tooltip OnTooltipSetItem")
286 local ttsx
= GameTooltip
:GetScript("OnUpdate")
287 QH_Hook(GameTooltip
, "OnUpdate", function (self
, ...)
288 if ttsx
then return QH_Hook_NotMyFault(ttsx
, self
, ...) end
289 if glob_strip
and unit_to_adjust
and unit_to_adjust
== self
:GetUnit() then
290 self
:SetHeight(self
:GetHeight() - glob_strip
* 3) -- maaaaaagic
293 end, "tooltip OnUpdate")