forked from Eliote/SimpleAddonManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCore.lua
469 lines (414 loc) · 10.5 KB
/
Core.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
local ADDON_NAME, T = ...
local C = T.Color
--- @class SimpleAddonManager
local frame = CreateFrame("Frame", ADDON_NAME, UIParent, "ButtonFrameTemplate")
ButtonFrameTemplate_HidePortrait(frame)
frame:Hide()
T.AddonFrame = frame
frame.MIN_SIZE_W = 470
frame.MIN_SIZE_H = 400
frame.CATEGORY_SIZE_W = 250
frame:SetFrameStrata("FULLSCREEN")
frame:SetPoint("CENTER", 0, 24)
frame:SetSize(frame.MIN_SIZE_W, frame.MIN_SIZE_H)
frame:SetResizable(true)
frame:SetMovable(true)
frame:EnableMouse(true)
frame:SetClampedToScreen(true)
if (frame.SetResizeBounds) then
frame.SetMinResize = function(self, w, h)
self:SetResizeBounds(w, h)
local cw, ch = self:GetSize()
self:SetSize(cw < w and w or cw, ch < h and h or ch)
end
end
frame:SetMinResize(frame.MIN_SIZE_W, frame.MIN_SIZE_H)
frame:SetScript("OnMouseDown", function(self)
self:StartMoving()
end)
frame:SetScript("OnMouseUp", function(self)
self:StopMovingOrSizing()
end)
frame:SetScript("OnHide", function()
StaticPopup_Hide("SimpleAddonManager_Dialog")
end)
table.insert(UISpecialFrames, frame:GetName()) -- Register frame to be closed with ESC
function frame:GetDb()
return SimpleAddonManagerDB
end
StaticPopupDialogs["SimpleAddonManager_Dialog"] = {
button1 = OKAY,
button2 = CANCEL,
timeout = 0,
whileDead = true,
EditBoxOnEnterPressed = function(self)
local parent = self:GetParent()
if (parent.button1:IsEnabled() and parent.enterClicksFirstButton) then
parent.button1:Click()
end
end,
EditBoxOnEscapePressed = function(self)
self:GetParent():Hide()
end,
}
T.separatorInfo = {
text = "",
hasArrow = false,
dist = 0,
isTitle = true,
isUninteractable = true,
notCheckable = true,
iconOnly = true,
icon = "Interface\\Common\\UI-TooltipDivider-Transparent",
tCoordLeft = 0,
tCoordRight = 1,
tCoordTop = 0,
tCoordBottom = 1,
tSizeX = 0,
tSizeY = 8,
tFitDropDownSizeX = true,
iconInfo = {
tCoordLeft = 0,
tCoordRight = 1,
tCoordTop = 0,
tCoordBottom = 1,
tSizeX = 0,
tSizeY = 8,
tFitDropDownSizeX = true
},
};
T.spacer = {
text = "",
hasArrow = false,
isTitle = false,
isUninteractable = true,
notCheckable = true,
disabled = true,
};
T.closeMenuInfo = {
text = CANCEL,
hasArrow = false,
notCheckable = true,
};
function frame:CreateDefaultOptions(db, defaults)
if (defaults[1]) then
error("array with defaults is not supported!")
end
for k, v in pairs(defaults) do
if (db[k] == nil) then
db[k] = v
elseif (type(v) == "table") then
frame:CreateDefaultOptions(db[k], v)
end
end
end
function frame:ShowDialog(dialogInfo)
local dialog = StaticPopupDialogs["SimpleAddonManager_Dialog"]
dialog.text = dialogInfo.text
dialog.OnAccept = dialogInfo.funcAccept
dialog.OnCancel = dialogInfo.funcCancel
dialog.OnAlt = dialogInfo.funcAlt
dialog.OnShow = function(self, ...)
self:SetFrameStrata("FULLSCREEN_DIALOG")
self:ClearAllPoints()
self:SetPoint("TOP", frame, "TOP", 0, -120)
self.OldStrata = self:GetFrameStrata()
if (self.editBox) then
self.editBox:SetText("")
end
if (dialogInfo.funcOnShow) then
dialogInfo.funcOnShow(self, ...)
end
end
dialog.OnHide = function(self)
self:ClearAllPoints()
self:SetFrameStrata(self.OldStrata)
self.OldStrata = nil
end
dialog.hasEditBox = dialogInfo.hasEditBox
dialog.button1 = dialogInfo.button1 or OKAY
if (dialogInfo.button2 == false) then
dialog.button2 = nil
else
dialog.button2 = dialogInfo.button2 or CANCEL
end
dialog.button3 = dialogInfo.button3
dialog.enterClicksFirstButton = not dialogInfo.button3
dialog.hideOnEscape = dialogInfo.hideOnEscape
dialog.showAlert = dialogInfo.showAlert
StaticPopup_Show("SimpleAddonManager_Dialog")
end
function frame:ShowInputDialog(text, func, funcOnShow)
self:ShowDialog({
text = text,
hasEditBox = true,
funcAccept = function(self)
func(self.editBox:GetText())
end,
funcOnShow = funcOnShow,
hideOnEscape = true,
})
end
function frame:ShowConfirmDialog(text, func)
self:ShowDialog({
text = text,
funcAccept = func,
hideOnEscape = true,
})
end
function frame:ShowWarningDialog(text, func)
self:ShowDialog({
text = text,
funcAccept = func,
hideOnEscape = true,
showAlert = true,
button1 = CONTINUE,
})
end
function frame:ShowYesNoDialog(text, funcYes, funcNo)
self:ShowDialog({
text = text,
funcAccept = funcYes,
funcCancel = funcNo,
button1 = YES,
button2 = NO,
hideOnEscape = not funcNo
})
end
function frame:ShowYesNoCancelDialog(text, funcYes, funcNo, funcCancel)
self:ShowDialog({
text = text,
funcAccept = funcYes,
funcCancel = funcNo,
button1 = YES,
button2 = NO,
button3 = CANCEL,
funcAlt = funcCancel,
})
end
function frame:IsAddonSelected(nameOrIndex, forSome)
if (forSome) then
local state = frame.compat.GetAddOnEnableState(nameOrIndex, nil)
return state == 1
end
local character = frame:GetCharacterForApi()
local state = frame.compat.GetAddOnEnableState(nameOrIndex, character)
return state == 2
end
local character -- [0] for all characters, [1] for player name
local playerName
function frame:GetCharacter()
return character or 0
end
function frame:GetCharacterForApi()
if (character == 1) then return playerName end
return nil
end
function frame:SetCharacter(value)
character = value
frame:GetDb().config.selectedCharacter = value
end
function frame:Update()
if (frame.initialized) then
frame:UpdateCategoryFrame()
frame:UpdateListFilters()
frame:UpdateOkButton()
end
end
frame:SetScript("OnShow", function()
frame:Initialize()
frame:Update()
frame:SetCategoryVisibility(frame:GetDb().isCategoryFrameVisible, false)
local db = frame:GetDb()
if (db.config.autofocusSearch) then
frame.SearchBox:SetFocus()
end
end)
function frame:Initialize()
if (frame.initialized) then
return
end
frame.initialized = true
for _, module in pairs(frame:GetModules()) do
if (module.PreInitialize) then
module:PreInitialize()
end
end
for _, module in pairs(frame:GetModules()) do
if (module.Initialize) then
module:Initialize()
end
end
end
function frame:TableKeysToSortedList(...)
local list = {}
local added = {}
for _, t in ipairs({ ... }) do
for k, _ in pairs(t) do
if not added[k] then
table.insert(list, k)
added[k] = true
end
end
end
table.sort(list)
return list
end
function frame:TableAsSortedPairList(t, filter)
local list = {}
for key, v in pairs(t) do
if (filter == nil or filter(key, v)) then
table.insert(list, {
key = key,
name = key:lower(),
value = v
})
end
end
table.sort(list, function(a, b)
return a.name < b.name
end)
return list
end
function frame:FormatMemory(value)
if (value >= 1000) then
value = value / 1000
return format("%.2f MB", value)
else
return format("%.2f KB", value)
end
end
local modules = {}
function frame:RegisterModule(name)
if (modules[name]) then
error("Module '" .. name .. "' already exists!")
end
local module = {}
modules[name] = module
return module
end
function frame:GetModule(name)
return modules[name]
end
function frame:GetModules()
return modules
end
local addonsInitialState = {}
function frame:GetAddonsInitialState()
return addonsInitialState
end
function frame:IsAddonInstalled(indexOrName)
local _, _, _, _, reason = frame.compat.GetAddOnInfo(indexOrName)
return reason ~= "MISSING"
end
function frame:EnableAddOn(indexOrName)
local c = frame:GetCharacterForApi()
frame.compat.EnableAddOn(indexOrName, c)
end
function frame:DisableAddOn(indexOrName)
local c = frame:GetCharacterForApi()
frame.compat.DisableAddOn(indexOrName, c)
end
function frame:EnableAllAddOns()
local c = frame:GetCharacterForApi()
frame.compat.EnableAllAddOns(c)
end
function frame:DisableAllAddOns()
local c = frame:GetCharacterForApi()
frame.compat.DisableAllAddOns(c)
end
local GetAddOnMetadata = C_AddOns and C_AddOns.GetAddOnMetadata or GetAddOnMetadata
function frame:GetAddOnMetadata(addon, field)
return GetAddOnMetadata(addon, field)
end
-- When entering/leaving lfg, realm returns nil. Cache to avoid errors.
local nameCache, realmCache, classColor
function frame:GetPlayerInfo()
if (nameCache == nil) then
nameCache, realmCache = UnitNameUnmodified("player")
if (realmCache == nil or realmCache == "") then
realmCache = select(2, UnitFullName("player"))
end
classColor = RAID_CLASS_COLORS[select(2, UnitClass("player"))] or C.white
end
return {
id = nameCache .. "-" .. realmCache,
name = nameCache,
realm = realmCache,
color = classColor
}
end
frame:SetScript("OnEvent", function(self, event, ...)
self[event](self, ...)
end)
frame:RegisterEvent("ADDON_LOADED")
frame:RegisterEvent("PLAYER_ENTERING_WORLD")
frame:RegisterEvent("PLAYER_LEAVING_WORLD")
function frame:ADDON_LOADED(name)
if name ~= ADDON_NAME then
return
end
self:UnregisterEvent("ADDON_LOADED")
SimpleAddonManagerDB = SimpleAddonManagerDB or {}
SimpleAddonManagerDB.sets = SimpleAddonManagerDB.sets or {}
SimpleAddonManagerDB.categories = SimpleAddonManagerDB.categories or {}
SimpleAddonManagerDB.config = SimpleAddonManagerDB.config or {}
frame:CreateDefaultOptions(SimpleAddonManagerDB.config, {
showVersions = false,
hookMenuButton = true,
})
character = SimpleAddonManagerDB.config.selectedCharacter
frame:HookMenuButton()
for _, v in pairs(modules) do
if (v.OnLoad) then
v:OnLoad()
end
end
end
function frame:PLAYER_ENTERING_WORLD(...)
playerName = UnitName("player")
local isInitialLogin, isReloadingUi = ...
if (isInitialLogin or isReloadingUi) then
for addonIndex = 1, frame.compat.GetNumAddOns() do
local addonName = frame.compat.GetAddOnInfo(addonIndex)
addonsInitialState[addonName] = frame:IsAddonSelected(addonIndex)
end
end
for _, v in pairs(modules) do
if (v.OnPlayerEnteringWorld) then
v:OnPlayerEnteringWorld(...)
end
end
end
function frame:PLAYER_LEAVING_WORLD(...)
for _, v in pairs(modules) do
if (v.OnPlayerLeavingWorld) then
v:OnPlayerLeavingWorld(...)
end
end
end
function frame:HookMenuButton()
if (frame.isMenuHooked or not frame:GetDb().config.hookMenuButton) then
return
end
GameMenuFrame:HookScript("OnShow", function()
local original = GameMenuButtonAddons:GetScript("OnClick")
GameMenuButtonAddons:SetScript("OnClick", function()
if (frame:GetDb().config.hookMenuButton) then
PlaySound(SOUNDKIT.IG_MAINMENU_OPTION)
HideUIPanel(GameMenuFrame)
ShowUIPanel(frame)
else
original()
end
end)
end)
frame.isMenuHooked = true
end
function frame.HybridScrollFrame_ShiftAwareOnScrollWheel(self, delta, step)
step = step or self.stepSize or self.buttonHeight
if (IsShiftKeyDown()) then
step = step * 10;
end
HybridScrollFrame_OnMouseWheel(self, delta, step)
end