-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddonCore.lua
277 lines (235 loc) · 9.08 KB
/
AddonCore.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
--[[-------------------------------------------------------------------------
-- AddonCore.lua
--
-- This is a very simple, bare-minimum core for addon development. It provide
-- methods to register events, call initialization functions, and sets up the
-- localization table so it can be used elsewhere. This file is designed to be
-- loaded first, as it has no further dependencies.
--
-- Events registered:
-- * ADDON_LOADED - Watch for saved variables to be loaded, and call the
-- 'Initialize' function in response.
-- * PLAYER_LOGIN - Call the 'Enable' method once the major UI elements
-- have been loaded and initialized.
-------------------------------------------------------------------------]]--
local addonName, addon = ...
-- Set global name of addon
_G[addonName] = addon
-- Extract version information from TOC file
addon.version = GetAddOnMetadata(addonName, "Version")
if addon.version == "@project-version" or addon.version == "wowi:version" then
addon.version = "SCM"
end
--[[-------------------------------------------------------------------------
-- Debug support
-------------------------------------------------------------------------]]--
local EMERGENCY_DEBUG = false
if EMERGENCY_DEBUG then
local private = {}
for k,v in pairs(addon) do
rawset(private, k, v)
rawset(addon, k, nil)
end
setmetatable(addon, {
__index = function(t, k)
local value = rawget(private, k)
if type(value) == "function" then
print("CALL", addonName .. "." .. tostring(k))
end
return value
end,
__newindex = function(t, k, v)
print(addonName, "NEWINDEX", k, v)
rawset(private, k, v)
end,
})
end
--[[-------------------------------------------------------------------------
-- Print/Printf support
-------------------------------------------------------------------------]]--
local printHeader = "|cFF33FF99%s|r: "
function addon:Printf(msg, ...)
msg = printHeader .. msg
local success, txt = pcall(string.format, msg, addonName, ...)
if success then
print(txt)
else
error(string.gsub(txt, "'%?'", string.format("'%s'", "Printf")), 3)
end
end
--[[-------------------------------------------------------------------------
-- Event registration and dispatch
-------------------------------------------------------------------------]]--
addon.eventFrame = CreateFrame("Frame", addonName .. "EventFrame", UIParent)
local eventMap = {}
function addon:RegisterEvent(event, handler)
assert(eventMap[event] == nil, "Attempt to re-register event: " .. tostring(event))
eventMap[event] = handler and handler or event
addon.eventFrame:RegisterEvent(event)
end
function addon:UnregisterEvent(event)
assert(type(event) == "string", "Invalid argument to 'UnregisterEvent'")
eventMap[event] = nil
addon.eventFrame:UnregisterEvent(event)
end
addon.eventFrame:SetScript("OnEvent", function(frame, event, ...)
local handler = eventMap[event]
local handler_t = type(handler)
if handler_t == "function" then
handler(event, ...)
elseif handler_t == "string" and addon[handler] then
addon[handler](addon, event, ...)
end
end)
--[[-------------------------------------------------------------------------
-- Message support
-------------------------------------------------------------------------]]--
local messageMap = {}
function addon:RegisterMessage(name, handler)
assert(messageMap[name] == nil, "Attempt to re-register message: " .. tostring(name))
messageMap[name] = handler and handler or name
end
function addon:UnregisterMessage(name)
assert(type(event) == "string", "Invalid argument to 'UnregisterMessage'")
messageMap[name] = nil
end
function addon:FireMessage(name, ...)
assert(type(name) == "string", "Invalid argument to 'FireMessage'")
local handler = messageMap[name]
local handler_t = type(handler)
if handler_t == "function" then
handler(name, ...)
elseif handler_t == "string" and addon[handler] then
addon[handler](addon, event, ...)
end
end
--[[-------------------------------------------------------------------------
-- Setup Initialize/Enable support
-------------------------------------------------------------------------]]--
addon:RegisterEvent("PLAYER_LOGIN", "Enable")
addon:RegisterEvent("ADDON_LOADED", function(event, ...)
if ... == addonName then
addon:UnregisterEvent("ADDON_LOADED")
if type(addon["Initialize"]) == "function" then
addon["Initialize"](addon)
end
-- If this addon was loaded-on-demand, trigger 'Enable' as well
if IsLoggedIn() and type(addon["Enable"]) == "function" then
addon["Enable"](addon)
end
end
end)
--[[-------------------------------------------------------------------------
-- Support for deferred execution (when in-combat)
-------------------------------------------------------------------------]]--
local deferframe = CreateFrame("Frame")
deferframe.queue = {}
local function runDeferred(thing)
local thing_t = type(thing)
if thing_t == "string" and addon[thing] then
addon[thing](addon)
elseif thing_t == "function" then
thing(addon)
end
end
-- This method will defer the execution of a method or function until the
-- player has exited combat. If they are already out of combat, it will
-- execute the function immediately.
function addon:Defer(...)
for i = 1, select("#", ...) do
local thing = select(i, ...)
local thing_t = type(thing)
if thing_t == "string" or thing_t == "function" then
if InCombatLockdown() then
deferframe.queue[#deferframe.queue + 1] = select(i, ...)
else
runDeferred(thing)
end
else
error("Invalid object passed to 'Defer'")
end
end
end
deferframe:RegisterEvent("PLAYER_REGEN_ENABLED")
deferframe:SetScript("OnEvent", function(self, event, ...)
for idx, thing in ipairs(deferframe.queue) do
runDeferred(thing)
end
table.wipe(deferframe.queue)
end)
--[[-------------------------------------------------------------------------
-- Localization
-------------------------------------------------------------------------]]--
addon.L = addon.L or setmetatable({}, {
__index = function(t, k)
rawset(t, k, k)
return k
end,
__newindex = function(t, k, v)
if v == true then
rawset(t, k, k)
else
rawset(t, k, v)
end
end,
})
function addon:RegisterLocale(locale, tbl)
if locale == "enUS" or locale == GetLocale() then
for k,v in pairs(tbl) do
if v == true then
self.L[k] = k
elseif type(v) == "string" then
self.L[k] = v
else
self.L[k] = k
end
end
end
end
--[[-------------------------------------------------------------------------
-- Addon 'About' Dialog for Interface Options
--
-- Some of this code was taken from/inspired by tekKonfigAboutPanel
-------------------------------------------------------------------------]]--
local about = CreateFrame("Frame", addonName .. "AboutPanel", InterfaceOptionsFramePanelContainer)
about.name = addonName
about:Hide()
function about.OnShow(frame)
local fields = {"Version", "Author", "X-Category", "X-License", "X-Email", "X-Website", "X-Credits"}
local notes = GetAddOnMetadata(addonName, "Notes")
local title = frame:CreateFontString(nil, "ARTWORK", "GameFontNormalLarge")
title:SetPoint("TOPLEFT", 16, -16)
title:SetText(addonName)
local subtitle = frame:CreateFontString(nil, "ARTWORK", "GameFontHighlightSmall")
subtitle:SetHeight(32)
subtitle:SetPoint("TOPLEFT", title, "BOTTOMLEFT", 0, -8)
subtitle:SetPoint("RIGHT", about, -32, 0)
subtitle:SetNonSpaceWrap(true)
subtitle:SetJustifyH("LEFT")
subtitle:SetJustifyV("TOP")
subtitle:SetText(notes)
local anchor
for _,field in pairs(fields) do
local val = GetAddOnMetadata(addonName, field)
if val then
local title = frame:CreateFontString(nil, "ARTWORK", "GameFontNormalSmall")
title:SetWidth(75)
if not anchor then title:SetPoint("TOPLEFT", subtitle, "BOTTOMLEFT", -2, -8)
else title:SetPoint("TOPLEFT", anchor, "BOTTOMLEFT", 0, -6) end
title:SetJustifyH("RIGHT")
title:SetText(field:gsub("X%-", ""))
local detail = frame:CreateFontString(nil, "ARTWORK", "GameFontHighlightSmall")
detail:SetPoint("LEFT", title, "RIGHT", 4, 0)
detail:SetPoint("RIGHT", -16, 0)
detail:SetJustifyH("LEFT")
detail:SetText(val)
anchor = title
end
end
-- Clear the OnShow so it only happens once
frame:SetScript("OnShow", nil)
end
addon.optpanels = addon.optpanels or {}
addon.optpanels.ABOUT = about
about:SetScript("OnShow", about.OnShow)
InterfaceOptions_AddCategory(about)