-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Movers.lua
226 lines (209 loc) · 5.55 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
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",
},
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 = {
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.moveCaptureBar then
self:EnableCaptureBarMover()
end
if self.db.moveTopWidget then
self:EnableTopWidgetMover()
end
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