-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Masque.lua
293 lines (233 loc) · 5.56 KB
/
Masque.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
--[[
This file is part of 'Masque', an add-on for World of Warcraft. For bug reports,
docuementation and license information, please visit https://github.com/SFX-WoW/Masque.
* File...: Masque.lua
* Author.: StormFX
Add-On Setup
]]
local MASQUE, Core = ...
assert(LibStub, MASQUE.." requires LibStub.")
----------------------------------------
-- Lua API
---
local print = print
----------------------------------------
-- Libraries
---
local LIB_DBI = LibStub("LibDBIcon-1.0", true)
local LIB_LDS = LibStub("LibDualSpec-1.0", true)
----------------------------------------
-- Internal
---
-- @ Locales\enUS
local L = Core.Locale
----------------------------------------
-- Locals
---
local Masque = LibStub("AceAddon-3.0"):NewAddon(MASQUE)
-- API Version
local API_VERSION = 110000
-- Client Version
local WOW_VERSION = select(4, GetBuildInfo()) or 0
local WOW_RETAIL = ((WOW_VERSION > 100000) and true) or nil
----------------------------------------
-- Utility
---
-- Updates saved variables and related settings.
local function UpdateDB()
local db = Core.db.profile
local Version = db.API_VERSION
-- Migrate saved variables for API updates.
-- SkinID Migration @ 100002
if Version < 100002 then
local GetSkinID = Core.GetSkinID
for _, gDB in pairs(db.Groups) do
local SkinID = gDB.SkinID
local NewID = GetSkinID(SkinID)
-- Client-Specific Skin
if SkinID == "Default" then
gDB.SkinID = Core.DEFAULT_SKIN_ID
-- Other
elseif NewID then
gDB.SkinID = NewID
end
end
-- Namespace Migration @ 100105
elseif Version < 100105 then
db.Developer.Debug = db.Debug
local Interface = db.Interface
Interface.AltSort = db.AltSort
Interface.SkinInfo = db.SkinInfo
Interface.StandAlone = db.StandAlone
db.AltSort = nil
db.Debug = nil
db.SkinInfo = nil
db.StandAlone = nil
end
db.API_VERSION = API_VERSION
-- Refresh Settings
Core:UpdateIconPosition()
Core.Debug = db.Developer.Debug
end
----------------------------------------
-- Core
---
-- Libraries
Core.LIB_DBI = LIB_DBI
Core.LIB_LDS = LIB_LDS
-- API
Core.API_VERSION = API_VERSION
Core.OLD_VERSION = 70200
Core.API = LibStub:NewLibrary(MASQUE, API_VERSION)
-- Client Version
Core.WOW_VERSION = WOW_VERSION
Core.WOW_RETAIL = WOW_RETAIL
-- Add-On Info
Core.Version = "@project-version@"
Core.Discord = "https://discord.gg/7MTWRgDzz8"
Core.Authors = {
"StormFX",
"|cff999999JJSheets|r",
}
Core.Websites = {
"https://github.com/SFX-WoW/Masque",
"https://www.curseforge.com/wow/addons/masque",
"https://addons.wago.io/addons/masque",
"https://www.wowinterface.com/downloads/info12097",
}
-- Toggles debug mode.
function Core.ToggleDebug()
local db = Core.db.profile.Developer
local Debug = not db.Debug
db.Debug = Debug
Core.Debug = Debug
if Debug then
print("|cffffff99"..L["Masque debug mode enabled."].."|r")
else
print("|cffffff99"..L["Masque debug mode disabled."].."|r")
end
end
-- Updates settings on profile activity.
function Core:UpdateProfile()
if LIB_DBI then
LIB_DBI:Refresh(MASQUE, Core.db.profile.LDB)
end
-- Saved Variables
UpdateDB()
-- Skins and Skin Options
local Global = self.GetGroup()
Global:__Update()
-- Info Panel
self.Setup("Info")
end
----------------------------------------
-- Add-On
---
-- 'ADDON_LOADED' Event
function Masque:OnInitialize()
local Defaults = {
profile = {
API_VERSION = 0,
CB_Warn = {
["*"] = true
},
Developer = {
Debug = false,
},
Groups = {
["*"] = {
Backdrop = false,
Colors = {},
Disabled = false,
Gloss = false,
Inherit = true,
Pulse = true,
Scale = 1,
Shadow = false,
SkinID = Core.DEFAULT_SKIN_ID,
UseScale = false,
},
},
Interface = {
AltSort = false,
SkinInfo = true,
StandAlone = true,
},
LDB = {
hide = false,
minimapPos = 240,
position = 1,
radius = 80,
},
Effects = {
Castbar = true,
-- Cooldown = true, -- Disabled by Blizzard
Interrupt = true,
Reticle = true,
},
SpellAlert = {
State = 1,
Style = 0,
},
},
}
-- AceDB-3.0
local db = LibStub("AceDB-3.0"):New("MasqueDB", Defaults, true)
db.RegisterCallback(Core, "OnProfileChanged", "UpdateProfile")
db.RegisterCallback(Core, "OnProfileCopied", "UpdateProfile")
db.RegisterCallback(Core, "OnProfileReset", "UpdateProfile")
Core.db = db
-- LibDualSpec-1.0
if LIB_LDS then
LIB_LDS:EnhanceDatabase(Core.db, MASQUE)
end
-- Slash Commands
SLASH_MASQUE1 = "/msq"
SLASH_MASQUE2 = "/masque"
SlashCmdList["MASQUE"] = function(Cmd, ...)
if Cmd == "debug" then
Core.ToggleDebug()
else
Core:ToggleOptions()
end
end
end
-- 'PLAYER_LOGIN' Event
function Masque:OnEnable()
-- Saved Variables
UpdateDB()
-- Skin queued groups.
if Core.Queue then
Core.Queue:ReSkin()
end
-- Core Options
local Setup = Core.Setup
if Setup then
Setup("Core")
Setup("LDB")
end
end
-- 'PLAYER_ENTERING_WORLD' Event
if WOW_RETAIL then
local MSQ_EVENTS_FRAME = CreateFrame("Frame", "MSQ_EVENTS_FRAME")
MSQ_EVENTS_FRAME:Hide()
local function OnEvent(...)
-- Animation Settings
local db = Core.db.profile
local UpdateEffect = Core.UpdateEffect
for k, v in pairs(db.Effects) do
UpdateEffect(k, v)
end
end
-- Delay the registering of events until after `PLAYER_LOGIN`.
MSQ_EVENTS_FRAME:RegisterEvent("PLAYER_ENTERING_WORLD")
MSQ_EVENTS_FRAME:SetScript("OnEvent", OnEvent)
end
-- Wrapper for the DB:CopyProfile method.
function Masque:CopyProfile(Name, Silent)
Core.db:CopyProfile(Name, Silent)
end
-- Wrapper for the DB:SetProfile method.
function Masque:SetProfile(Name)
Core.db:SetProfile(Name)
end