mirror of
https://codeberg.org/Duvelcorp/MetaHunt.git
synced 2026-09-22 07:36:58 +00:00
218 lines
6.1 KiB
Lua
218 lines
6.1 KiB
Lua
if not ZHunterMod_Saved then
|
|
ZHunterMod_Saved = {}
|
|
end
|
|
|
|
BINDING_HEADER_ZAspectHeader = "ZAspect Buttons"
|
|
BINDING_HEADER_ZTrackHeader = "ZTrack Buttons"
|
|
BINDING_HEADER_ZTrapHeader = "ZTrap Buttons"
|
|
BINDING_HEADER_ZPetHeader = "ZPet Buttons"
|
|
BINDING_HEADER_ZAmmoHeader = "ZAmmo Buttons"
|
|
BINDING_HEADER_ZMountsHeader = "ZMounts Buttons"
|
|
BINDING_HEADER_ZCompanionsHeader = "ZCompanions Buttons"
|
|
BINDING_HEADER_ZToysHeader = "ZToys Buttons"
|
|
|
|
ZHunterModTooltip = CreateFrame("GameTooltip", "ZHunterModScan", nil, "GameTooltipTemplate")
|
|
ZHunterModTooltipTextLeft1 = getglobal("ZHunterModScanTextLeft1")
|
|
|
|
MTH_ZH_TRACE_ENABLED = false
|
|
|
|
local function MTH_ZH_DescribePoint(frame)
|
|
if not (frame and frame.GetPoint) then
|
|
return "<no-frame>"
|
|
end
|
|
local point, relTo, relPoint, x, y = frame:GetPoint()
|
|
local relName = "nil"
|
|
if type(relTo) == "table" and relTo.GetName then
|
|
relName = tostring(relTo:GetName() or "<anon>")
|
|
elseif relTo then
|
|
relName = tostring(relTo)
|
|
end
|
|
return tostring(point or "nil")
|
|
.. "->" .. relName
|
|
.. ":" .. tostring(relPoint or "nil")
|
|
.. " @(" .. tostring(x) .. "," .. tostring(y) .. ")"
|
|
end
|
|
|
|
function MTH_ZH_Trace(msg)
|
|
if not MTH_ZH_TRACE_ENABLED then
|
|
return
|
|
end
|
|
if MTH and MTH.Print then
|
|
MTH:Print("[ZHTRACE] " .. tostring(msg), "debug")
|
|
elseif DEFAULT_CHAT_FRAME and DEFAULT_CHAT_FRAME.AddMessage then
|
|
DEFAULT_CHAT_FRAME:AddMessage("[ZHTRACE] " .. tostring(msg))
|
|
end
|
|
end
|
|
|
|
function MTH_ZH_TraceButtonPoint(frame, reason)
|
|
if not MTH_ZH_TRACE_ENABLED then
|
|
return
|
|
end
|
|
if not frame then
|
|
MTH_ZH_Trace("point " .. tostring(reason or "") .. " frame=nil")
|
|
return
|
|
end
|
|
local name = frame.GetName and frame:GetName() or "<unnamed>"
|
|
MTH_ZH_Trace("point " .. tostring(reason or "") .. " " .. tostring(name) .. " " .. MTH_ZH_DescribePoint(frame))
|
|
end
|
|
|
|
function MTH_ZH_TraceAllButtonPoints(reason)
|
|
if not MTH_ZH_TRACE_ENABLED then
|
|
return
|
|
end
|
|
local names = {
|
|
"zButtonAspect",
|
|
"zButtonAmmo",
|
|
"zButtonTrack",
|
|
"zButtonTrap",
|
|
"zButtonRanged",
|
|
"zButtonPet",
|
|
"zButtonMounts",
|
|
"zButtonCompanions",
|
|
"zButtonToys",
|
|
}
|
|
MTH_ZH_Trace("snapshot begin reason=" .. tostring(reason or ""))
|
|
for i = 1, table.getn(names) do
|
|
local frame = getglobal(names[i])
|
|
MTH_ZH_TraceButtonPoint(frame, tostring(reason or "") .. ":" .. tostring(names[i]))
|
|
end
|
|
MTH_ZH_Trace("snapshot end reason=" .. tostring(reason or ""))
|
|
end
|
|
|
|
function MTH_ZH_IsModuleEnabled()
|
|
if not (MTH and MTH.IsModuleEnabled) then
|
|
return true
|
|
end
|
|
return MTH:IsModuleEnabled("zhunter", true)
|
|
end
|
|
|
|
function MTH_ZH_GetSavedRoot()
|
|
if type(ZHunterMod_Saved) ~= "table" then
|
|
ZHunterMod_Saved = {}
|
|
end
|
|
return ZHunterMod_Saved
|
|
end
|
|
|
|
function MTH_ZH_GetSavedTable(key)
|
|
local root = MTH_ZH_GetSavedRoot()
|
|
if type(key) ~= "string" or key == "" then
|
|
return root
|
|
end
|
|
if type(root[key]) ~= "table" then
|
|
root[key] = {}
|
|
end
|
|
return root[key]
|
|
end
|
|
|
|
local function MTH_ZH_MigrateButtonSavedKeys_Replace()
|
|
local root = MTH_ZH_GetSavedRoot()
|
|
if type(root) ~= "table" then
|
|
return
|
|
end
|
|
|
|
local mapping = {
|
|
{"ZHunterButtonAspect", "zButtonAspect"},
|
|
{"ZHunterButtonTrack", "zButtonTrack"},
|
|
{"ZHunterButtonTrap", "zButtonTrap"},
|
|
{"ZHunterButtonAmmo", "zButtonAmmo"},
|
|
{"ZHunterButtonPet", "zButtonPet"},
|
|
{"ZHunterButtonMounts", "zButtonMounts"},
|
|
{"ZHunterButtonCompanions", "zButtonCompanions"},
|
|
{"ZHunterButtonToys", "zButtonToys"},
|
|
}
|
|
|
|
for i = 1, table.getn(mapping) do
|
|
local oldKey = mapping[i][1]
|
|
local newKey = mapping[i][2]
|
|
if root[oldKey] ~= nil then
|
|
root[newKey] = root[oldKey]
|
|
root[oldKey] = nil
|
|
end
|
|
end
|
|
end
|
|
|
|
MTH_ZH_MigrateButtonSavedKeys_Replace()
|
|
|
|
function MTH_ZH_Print(message, severity)
|
|
if type(MTH_Log) == "function" then
|
|
MTH_Log(message, severity)
|
|
return
|
|
end
|
|
if MTH and MTH.Print then
|
|
MTH:Print(message, severity)
|
|
return
|
|
end
|
|
if DEFAULT_CHAT_FRAME and DEFAULT_CHAT_FRAME.AddMessage then
|
|
DEFAULT_CHAT_FRAME:AddMessage("[MetaHunt] " .. tostring(message or ""), 1, 0.9, 0.3)
|
|
end
|
|
end
|
|
|
|
function MTH_ZH_HandleDisabledSlash(message, tableKey, fieldKey)
|
|
if MTH_ZH_IsModuleEnabled() then
|
|
return false
|
|
end
|
|
|
|
if type(tableKey) == "string" and tableKey ~= "" then
|
|
if fieldKey then
|
|
local tbl = MTH_ZH_GetSavedTable(tableKey)
|
|
tbl[fieldKey] = nil
|
|
else
|
|
local root = MTH_ZH_GetSavedRoot()
|
|
root[tableKey] = nil
|
|
end
|
|
end
|
|
|
|
if message then
|
|
MTH_ZH_Print(message)
|
|
end
|
|
|
|
return true
|
|
end
|
|
|
|
function ZHunterMod_AlignButtons()
|
|
MTH_ZH_TraceAllButtonPoints("AlignButtons:before")
|
|
zButtonAmmo:ClearAllPoints()
|
|
zButtonAmmo:SetPoint("TOP", zButtonAspect, "BOTTOM", 0, -15)
|
|
zButtonTrack:ClearAllPoints()
|
|
zButtonTrack:SetPoint("TOP", zButtonAmmo, "BOTTOM", 0, -15)
|
|
zButtonTrap:ClearAllPoints()
|
|
zButtonTrap:SetPoint("TOP", zButtonTrack, "BOTTOM", 0, -15)
|
|
zButtonPet:ClearAllPoints()
|
|
zButtonPet:SetPoint("TOP", zButtonTrap, "BOTTOM", 0, -15)
|
|
zButtonMounts:ClearAllPoints()
|
|
zButtonMounts:SetPoint("TOP", zButtonPet, "BOTTOM", 0, -15)
|
|
zButtonCompanions:ClearAllPoints()
|
|
zButtonCompanions:SetPoint("TOP", zButtonMounts, "BOTTOM", 0, -15)
|
|
zButtonToys:ClearAllPoints()
|
|
zButtonToys:SetPoint("TOP", zButtonCompanions, "BOTTOM", 0, -15)
|
|
if AutoStripDisplay then
|
|
AutoStripDisplay:ClearAllPoints()
|
|
AutoStripDisplay:SetPoint("TOP", zButtonToys, "BOTTOM", 0, -10)
|
|
end
|
|
MTH_ZH_TraceAllButtonPoints("AlignButtons:after")
|
|
end
|
|
|
|
function ZMarkTarget()
|
|
if not MTH_ZH_IsModuleEnabled() then
|
|
return
|
|
end
|
|
|
|
if not UnitExists("target") then return end
|
|
for i=1, 40 do
|
|
if not UnitDebuff("target", i) then break end
|
|
ZHunterModTooltip:SetOwner(UIParent, "ANCHOR_NONE")
|
|
ZHunterModTooltip:SetUnitDebuff("target", i)
|
|
local spell = ZHunterModTooltipTextLeft1:GetText()
|
|
if spell == ZHUNTER_HUNTERSMARK then
|
|
return
|
|
end
|
|
end
|
|
CastSpellByName(ZHUNTER_HUNTERSMARK)
|
|
return 1
|
|
end
|
|
|
|
SLASH_ZHunterMod1 = "/zhunter"
|
|
SlashCmdList["ZHunterMod"] = function(msg)
|
|
MTH_ZH_Print("Possible Slash Commands: \"/zammo\", \"/zaspect\", \"/ztrack\", \"/ztrap\", \"/zpet\", \"/zmounts\", \"/zcompanions\", \"/zminipets\", \"/ztoys\", \"/zstrip\", \"/zantidaze\"")
|
|
end
|