add DebugTools module

This commit is contained in:
Pinya
2018-07-22 16:46:44 +03:00
parent d0edd60d74
commit 0b4573dbe2
2 changed files with 145 additions and 0 deletions
+144
View File
@@ -0,0 +1,144 @@
local E, L, V, P, G = unpack(ElvUI)
local D = E:NewModule("DebugTools", "AceEvent-3.0", "AceHook-3.0")
E.DebugTools = D
--Cache global variables
--Lua functions
local format = string.format
local getn = table.getn
--WoW API / Variables
local hooksecurefunc = hooksecurefunc
local GetCVar = GetCVar
local ScriptErrorsFrame_OnError = ScriptErrorsFrame_OnError
local StaticPopup_Hide = StaticPopup_Hide
function D:ModifyErrorFrame()
ScriptErrorsFrameScrollFrameText:SetScript("OnEditFocusGained", nil)
hooksecurefunc("ScriptErrorsFrame_Update", function()
ScriptErrorsFrameScrollFrameText:HighlightText(0, 0)
end)
-- Unhighlight text when focus is hit
HookScript(ScriptErrorsFrameScrollFrameText, "OnEscapePressed", function()
this:HighlightText(0, 0)
end)
ScriptErrorsFrame:SetWidth(500)
ScriptErrorsFrame:SetHeight(300)
ScriptErrorsFrameScrollFrame:SetWidth(ScriptErrorsFrame:GetWidth() - 45)
ScriptErrorsFrameScrollFrame:SetHeight(ScriptErrorsFrame:GetHeight() - 71)
local BUTTON_WIDTH = 75
local BUTTON_HEIGHT = 24
local BUTTON_SPACING = 2
-- Add a first button
local firstButton = CreateFrame("Button", nil, ScriptErrorsFrame, "UIPanelButtonTemplate")
E:Point(firstButton, "BOTTOMRIGHT", ScriptErrorsFrame.previous, "BOTTOMLEFT", -BUTTON_SPACING, 0)
firstButton:SetText("First")
E:Height(firstButton, BUTTON_HEIGHT)
E:Width(firstButton, BUTTON_WIDTH)
firstButton:SetScript("OnClick", function()
ScriptErrorsFrame.index = 1
ScriptErrorsFrame_Update()
end)
ScriptErrorsFrame.firstButton = firstButton
-- Also add a Last button for errors
local lastButton = CreateFrame("Button", nil, ScriptErrorsFrame, "UIPanelButtonTemplate")
E:Point(lastButton, "BOTTOMLEFT", ScriptErrorsFrame.next, "BOTTOMRIGHT", BUTTON_SPACING, 0)
E:Height(lastButton, BUTTON_HEIGHT)
E:Width(lastButton, BUTTON_WIDTH)
lastButton:SetText("Last")
lastButton:SetScript("OnClick", function()
ScriptErrorsFrame.index = getn(ScriptErrorsFrame.order)
ScriptErrorsFrame_Update()
end)
ScriptErrorsFrame.lastButton = lastButton
end
function D:ScriptErrorsFrame_UpdateButtons()
local numErrors = getn(ScriptErrorsFrame.order)
local index = ScriptErrorsFrame.index
if index == 0 then
ScriptErrorsFrame.lastButton:Disable()
ScriptErrorsFrame.firstButton:Disable()
else
if numErrors == 1 then
ScriptErrorsFrame.lastButton:Disable()
ScriptErrorsFrame.firstButton:Disable()
else
ScriptErrorsFrame.lastButton:Enable()
ScriptErrorsFrame.firstButton:Enable()
end
end
end
function D:ScriptErrorsFrame_OnError(_, keepHidden)
if keepHidden or self.MessagePrinted or not self.inCombat or GetCVar("ShowErrors") ~= "1" then return end
E:Print(L["|cFFE30000Lua error recieved. You can view the error message when you exit combat."])
self.MessagePrinted = true
end
function D:PLAYER_REGEN_ENABLED()
self.inCombat = nil
ScriptErrorsFrame:SetParent(UIParent)
ScriptErrorsFrame:SetScale(1)
if self.MessagePrinted then
ScriptErrorsFrame:Show()
self.MessagePrinted = nil
end
end
function D:PLAYER_REGEN_DISABLED()
self.inCombat = true
ScriptErrorsFrame:SetParent(self.HideFrame)
end
function D:TaintError(event, addonName, addonFunc)
if GetCVar("ShowErrors") ~= "1" or not E.db.general.taintLog then return end
ScriptErrorsFrame_OnError(format(L["%s: %s tried to call the protected function '%s'."], event, addonName or "<name>", addonFunc or "<func>"), false)
end
function D:StaticPopup_Show(name)
if name == "ADDON_ACTION_FORBIDDEN" and E.db.general.taintLog ~= true then
StaticPopup_Hide(name)
end
end
function D:ADDON_LOADED(event, addon)
if addon == "!DebugTools" then
self:Initialize()
self:UnregisterEvent("ADDON_LOADED")
end
end
function D:Initialize()
if not IsAddOnLoaded("!DebugTools") then
self:RegisterEvent("ADDON_LOADED")
return
end
self.HideFrame = CreateFrame("Frame", nil, UIParent)
self.HideFrame:Hide()
self:ModifyErrorFrame()
self:SecureHook("ScriptErrorsFrame_UpdateButtons")
self:SecureHook("ScriptErrorsFrame_OnError")
self:SecureHook("StaticPopup_Show")
self:RegisterEvent("PLAYER_REGEN_DISABLED")
self:RegisterEvent("PLAYER_REGEN_ENABLED")
self:RegisterEvent("ADDON_ACTION_BLOCKED", "TaintError")
self:RegisterEvent("ADDON_ACTION_FORBIDDEN", "TaintError")
end
local function InitializeCallback()
D:Initialize()
end
E:RegisterModule(D:GetName(), InitializeCallback)