forked from funkydude/SexyMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Movers.lua
434 lines (403 loc) · 10.8 KB
/
Movers.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
local _, sm = ...
sm.movers = {}
local mod = sm.movers
local L = sm.L
local ClearAllPoints = sm.core.frame.ClearAllPoints
local SetPoint = sm.core.frame.SetPoint
local options = {
type = "group",
name = L["Movers"],
args = {
desc = {
order = 1,
name = L.moversDescription,
type = "description",
width = "full",
},
moveDurability = {
order = 2,
name = L.enableObject:format(L["Armored Man"]),
type = "toggle",
width = "full",
confirm = function(info, v)
if not v then
return L.disableWarning
end
end,
get = function()
return mod.db.moveDurability
end,
set = function(info, v)
mod.db.moveDurability = v
if v then
mod:EnableDurabilityMover()
else
mod.db.lockDurability = false
mod.db.moverPositions.durability = nil
ReloadUI()
end
end,
},
lockDurability = {
order = 3,
name = L.lockObject:format(L["Armored Man"]),
type = "toggle",
width = "full",
get = function()
return mod.db.lockDurability
end,
set = function(info, v)
mod.db.lockDurability = v
if v then
SexyMapDurabilityMover:Hide()
else
SexyMapDurabilityMover:Show()
end
end,
disabled = function() return not mod.db.moveDurability end,
},
spacer = {
order = 4,
name = " ",
type = "description",
width = "full",
},
moveVehicle = {
order = 5,
name = L.enableObject:format(L["Vehicle Seat"]),
type = "toggle",
width = "full",
confirm = function(info, v)
if not v then
return L.disableWarning
end
end,
get = function()
return mod.db.moveVehicle
end,
set = function(info, v)
mod.db.moveVehicle = v
if v then
mod:EnableVehicleMover()
else
mod.db.lockVehicle = false
mod.db.moverPositions.vehicle = nil
ReloadUI()
end
end,
},
lockVehicle = {
order = 6,
name = L.lockObject:format(L["Vehicle Seat"]),
type = "toggle",
width = "full",
get = function()
return mod.db.lockVehicle
end,
set = function(info, v)
mod.db.lockVehicle = v
if v then
SexyMapVehicleMover:Hide()
else
SexyMapVehicleMover:Show()
end
end,
disabled = function() return not mod.db.moveVehicle end,
},
spacer2 = {
order = 7,
name = " ",
type = "description",
width = "full",
},
moveCaptureBar = {
order = 11,
name = L.enableObject:format(L.pvpCaptureBar),
type = "toggle",
width = "full",
confirm = function(info, v)
if not v then
return L.disableWarning
end
end,
get = function()
return mod.db.moveCaptureBar
end,
set = function(info, v)
mod.db.moveCaptureBar = v
if v then
mod:EnableCaptureBarMover()
else
mod.db.lockCaptureBar = false
mod.db.moverPositions.capturebar = nil
ReloadUI()
end
end,
},
lockCaptureBar = {
order = 12,
name = L.lockObject:format(L.pvpCaptureBar),
type = "toggle",
width = "full",
get = function()
return mod.db.lockCaptureBar
end,
set = function(info, v)
mod.db.lockCaptureBar = v
if v then
SexyMapCaptureBarMover:Hide()
else
SexyMapCaptureBarMover:Show()
end
end,
disabled = function() return not mod.db.moveCaptureBar end,
},
spacer4 = {
order = 13,
name = " ",
type = "description",
width = "full",
},
moveTopCenterObjectivesWidget = {
order = 17,
name = L.enableObject:format(L.topCenterObjectivesWidget),
type = "toggle",
width = "full",
confirm = function(info, v)
if not v then
return L.disableWarning
end
end,
get = function()
return mod.db.moveTopWidget
end,
set = function(info, v)
mod.db.moveTopWidget = v
if v then
mod:EnableTopWidgetMover()
else
mod.db.lockTopWidget = false
mod.db.moverPositions.topWidget = nil
ReloadUI()
end
end,
},
lockTopCenterObjectivesWidget = {
order = 18,
name = L.lockObject:format(L.topCenterObjectivesWidget),
type = "toggle",
width = "full",
get = function()
return mod.db.lockTopWidget
end,
set = function(info, v)
mod.db.lockTopWidget = v
if v then
SexyMapTopCenterWidgetMover:Hide()
else
SexyMapTopCenterWidgetMover:Show()
end
end,
disabled = function() return not mod.db.moveTopWidget end,
},
},
}
function mod:OnInitialize(profile)
if type(profile.movers) ~= "table" or not profile.movers.moverPositions then
profile.movers = {
moveDurability = false,
lockDurability = false,
moveVehicle = false,
lockVehicle = false,
moveCaptureBar = false,
lockCaptureBar = false,
moveTopWidget = false,
lockTopWidget = false,
moverPositions = {},
}
end
self.db = profile.movers
end
function mod:OnEnable()
sm.core:RegisterModuleOptions("Movers", options, L["Movers"])
if self.db.moveDurability then
self:EnableDurabilityMover()
end
if self.db.moveVehicle then
self:EnableVehicleMover()
end
if self.db.moveCaptureBar then
self:EnableCaptureBarMover()
end
if self.db.moveTopWidget then
self:EnableTopWidgetMover()
end
end
function mod:EnableDurabilityMover()
if SexyMapDurabilityMover then return end
local DurabilityFrame = DurabilityFrame
local frame = CreateFrame("Frame", "SexyMapDurabilityMover")
if self.db.moverPositions.durability then
local tbl = self.db.moverPositions.durability
frame:SetPoint(tbl[1], UIParent, tbl[2], tbl[3], tbl[4])
else
frame:SetPoint("CENTER", UIParent, "CENTER", 0, 0)
end
frame:SetSize(65, 80) -- defaults: 60, 75
if self.db.lockDurability then
frame:Hide()
else
frame:Show()
end
frame:EnableMouse(true)
frame:RegisterForDrag("LeftButton")
frame:SetMovable(true)
hooksecurefunc(DurabilityFrame, "SetWidth", function(self)
local width = self:GetWidth()
frame:SetWidth(width + 5)
end)
local function SetNewPoint(self)
ClearAllPoints(self)
-- TOPRIGHT is our only choice or we'd create SetPoint errors in UIParent.lua
-- Where SetPoint is called by Blizz without performing a ClearAllPoints first
SetPoint(self, "TOPRIGHT", frame, "TOPRIGHT")
end
hooksecurefunc(DurabilityFrame, "SetPoint", SetNewPoint)
SetNewPoint(DurabilityFrame)
frame:SetScript("OnDragStart", function(self) self:StartMoving() end)
frame:SetScript("OnDragStop", function(self)
self:StopMovingOrSizing()
local a, _, b, c, d = self:GetPoint()
mod.db.moverPositions.durability = {a, b, c, d}
end)
local bg = frame:CreateTexture()
bg:SetAllPoints(frame)
bg:SetColorTexture(0, 1, 0, 0.3)
bg:Show()
local header = frame:CreateFontString(nil, "OVERLAY", "TextStatusBarText")
header:SetPoint("BOTTOM", frame, "TOP")
header:SetText(L["Armored Man"])
header:Show()
end
function mod:EnableVehicleMover()
if SexyMapVehicleMover then return end
local VehicleSeatIndicator = VehicleSeatIndicator
local frame = CreateFrame("Frame", "SexyMapVehicleMover")
if self.db.moverPositions.vehicle then
local tbl = self.db.moverPositions.vehicle
frame:SetPoint(tbl[1], UIParent, tbl[2], tbl[3], tbl[4])
else
frame:SetPoint("CENTER", UIParent, "CENTER", 0, 0)
end
frame:SetSize(100, 100) -- defaults: 128, 128
if self.db.lockVehicle then
frame:Hide()
else
frame:Show()
end
frame:EnableMouse(true)
frame:RegisterForDrag("LeftButton")
frame:SetMovable(true)
local function SetNewPoint(self)
ClearAllPoints(self)
-- TOPRIGHT is our only choice or we'd create SetPoint errors in UIParent.lua
-- Where SetPoint is called by Blizz without performing a ClearAllPoints first
SetPoint(self, "TOPRIGHT", frame, "TOPRIGHT")
end
hooksecurefunc(VehicleSeatIndicator, "SetPoint", SetNewPoint)
SetNewPoint(VehicleSeatIndicator)
frame:SetScript("OnDragStart", function(self) self:StartMoving() end)
frame:SetScript("OnDragStop", function(self)
self:StopMovingOrSizing()
local a, _, b, c, d = self:GetPoint()
mod.db.moverPositions.vehicle = {a, b, c, d}
end)
local bg = frame:CreateTexture()
bg:SetAllPoints(frame)
bg:SetColorTexture(0, 1, 0, 0.3)
bg:Show()
local header = frame:CreateFontString(nil, "OVERLAY", "TextStatusBarText")
header:SetPoint("BOTTOM", frame, "TOP")
header:SetText(L["Vehicle Seat"])
header:Show()
end
function mod:EnableCaptureBarMover()
if SexyMapCaptureBarMover then return end
local UIWidgetBelowMinimapContainerFrame = UIWidgetBelowMinimapContainerFrame
local frame = CreateFrame("Frame", "SexyMapCaptureBarMover")
if self.db.moverPositions.capturebar then
local tbl = self.db.moverPositions.capturebar
frame:SetPoint(tbl[1], UIParent, tbl[2], tbl[3], tbl[4])
else
frame:SetPoint("CENTER", UIParent, "CENTER", 0, 0)
end
frame:SetSize(150, 30) -- No defaults, dynamically resizes
if self.db.lockCaptureBar then
frame:Hide()
else
frame:Show()
end
frame:EnableMouse(true)
frame:RegisterForDrag("LeftButton")
frame:SetMovable(true)
local function SetNewPoint(self)
ClearAllPoints(self)
SetPoint(self, "TOPRIGHT", frame, "TOPRIGHT")
end
hooksecurefunc(UIWidgetBelowMinimapContainerFrame, "SetPoint", SetNewPoint)
SetNewPoint(UIWidgetBelowMinimapContainerFrame)
frame:SetScript("OnDragStart", function(self) self:StartMoving() end)
frame:SetScript("OnDragStop", function(self)
self:StopMovingOrSizing()
local a, _, b, c, d = self:GetPoint()
mod.db.moverPositions.capturebar = {a, b, c, d}
end)
local bg = frame:CreateTexture()
bg:SetAllPoints(frame)
bg:SetColorTexture(0, 1, 0, 0.3)
bg:Show()
local header = frame:CreateFontString(nil, "OVERLAY", "TextStatusBarText")
header:SetPoint("BOTTOM", frame, "TOP")
header:SetText(L.pvpCaptureBar)
header:Show()
end
function mod:EnableTopWidgetMover()
if SexyMapTopCenterWidgetMover then return end
local UIWidgetTopCenterContainerFrame = UIWidgetTopCenterContainerFrame
local frame = CreateFrame("Frame", "SexyMapTopCenterWidgetMover")
if self.db.moverPositions.topWidget then
local tbl = self.db.moverPositions.topWidget
frame:SetPoint(tbl[1], UIParent, tbl[2], tbl[3], tbl[4])
else
frame:SetPoint("CENTER", UIParent, "CENTER", 0, 0)
end
frame:SetSize(220, 40) -- No defaults, dynamically resizes
if self.db.lockTopWidget then
frame:Hide()
else
frame:Show()
end
frame:EnableMouse(true)
frame:RegisterForDrag("LeftButton")
frame:SetMovable(true)
local function SetNewPoint(self)
ClearAllPoints(self)
SetPoint(self, "TOP", frame, "TOP")
end
hooksecurefunc(UIWidgetTopCenterContainerFrame, "SetPoint", SetNewPoint)
SetNewPoint(UIWidgetTopCenterContainerFrame)
frame:SetScript("OnDragStart", function(self) self:StartMoving() end)
frame:SetScript("OnDragStop", function(self)
self:StopMovingOrSizing()
local a, _, b, c, d = self:GetPoint()
mod.db.moverPositions.topWidget = {a, b, c, d}
end)
local bg = frame:CreateTexture()
bg:SetAllPoints(frame)
bg:SetColorTexture(0, 1, 0, 0.3)
bg:Show()
local header = frame:CreateFontString(nil, "OVERLAY", "TextStatusBarText")
header:SetPoint("BOTTOM", frame, "TOP")
header:SetText(L.topCenterObjectivesWidget)
header:Show()
end