-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMiniMapButton.lua
More file actions
130 lines (111 loc) · 3.54 KB
/
Copy pathMiniMapButton.lua
File metadata and controls
130 lines (111 loc) · 3.54 KB
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
local ADDON_NAME, T = ...
local L = T.L
local EDDM = LibStub("ElioteDropDownMenu-1.0")
local dropdownFrame = EDDM.UIDropDownMenu_GetOrCreate("SimpleAddonManager_MenuFrame")
--- @type SimpleAddonManager
local SAM = T.AddonFrame
local module = SAM:RegisterModule("Minimap")
local title = SAM:GetAddOnMetadata(ADDON_NAME, "Title") or ADDON_NAME
local IS_MAINLINE = WOW_PROJECT_MAINLINE == WOW_PROJECT_ID
local ICON_MOUSE_LEFT = IS_MAINLINE and "|A:newplayertutorial-icon-mouse-leftbutton:0:0|a " or ""
local ICON_MOUSE_RIGHT = IS_MAINLINE and "|A:newplayertutorial-icon-mouse-rightbutton:0:0|a " or ""
local broker = LibStub:GetLibrary("LibDataBroker-1.1"):NewDataObject(ADDON_NAME, {
type = "launcher",
icon = "133742",
label = title,
OnTooltipShow = function(ttp)
ttp:AddLine(title)
ttp:AddLine(ICON_MOUSE_LEFT .. L["Left-click to open"])
ttp:AddLine(ICON_MOUSE_RIGHT .. L["Right-click to show profile menu"])
if (not SAM:GetDb().config.showMemoryInBrokerTtp) then
return
end
local loadedAddons = {}
for addonIndex = 1, SAM.compat.GetNumAddOns() do
if (SAM.compat.IsAddOnLoaded(addonIndex)) then
table.insert(loadedAddons, addonIndex)
end
end
local topAddOns = {}
local maxAddons = math.min(10, #loadedAddons)
UpdateAddOnMemoryUsage()
local totalMem = 0
for _, addonIndex in pairs(loadedAddons) do
local mem = GetAddOnMemoryUsage(addonIndex)
totalMem = totalMem + mem
for i = 1, maxAddons do
if (topAddOns[i] == nil or topAddOns[i].value < mem) then
table.insert(topAddOns, i, {
value = mem,
name = SAM.compat.GetAddOnInfo(addonIndex)
})
break
end
end
end
if (totalMem > 0) then
ttp:AddLine("\n")
ttp:AddDoubleLine(L["AddOns Total Memory"], SAM:FormatMemory(totalMem), 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
for i = 1, maxAddons do
if (topAddOns[i] == nil or topAddOns[i].value == 0) then
break
end
ttp:AddDoubleLine(topAddOns[i].name, SAM:FormatMemory(topAddOns[i].value), 1.0, 1.0, 1.0, 1.0, 1.0, 1.0)
end
end
end,
OnClick = function(_, button)
if (button == "LeftButton") then
SAM:Show()
else
module:ShowMenuDropDown()
end
end
})
local ldbIcon = LibStub("LibDBIcon-1.0")
function module:OnLoad()
local db = SAM:GetDb()
SAM:CreateDefaultOptions(SimpleAddonManagerDB.config, {
minimap = { hide = false, showInCompartment = true }
})
ldbIcon:Register(ADDON_NAME, broker, db.config.minimap)
end
function module:ToggleMinimapButton()
local db = SAM:GetDb()
db.config.minimap.hide = not db.config.minimap.hide
if (db.config.minimap.hide) then
ldbIcon:Hide(ADDON_NAME)
else
ldbIcon:Show(ADDON_NAME)
end
end
function module:ToggleCompartment()
local db = SAM:GetDb()
db.config.minimap.showInCompartment = not db.config.minimap.showInCompartment
if (db.config.minimap.showInCompartment) then
ldbIcon:AddButtonToCompartment(ADDON_NAME)
else
ldbIcon:RemoveButtonFromCompartment(ADDON_NAME)
end
end
function module:ShowMenuDropDown()
local menu = {
{ text = broker.label, isTitle = true, notCheckable = true },
{ text = L["Load Profile"], isTitle = true, notCheckable = true },
}
local db = SAM:GetDb()
local setsList = SAM:TableAsSortedPairList(db.sets)
for _, pair in ipairs(setsList) do
local profileName = pair.key
table.insert(menu, {
text = profileName,
notCheckable = true,
func = function()
SAM:GetModule("Profile"):ShowLoadProfileAndReloadUIDialog(profileName)
end
})
end
table.insert(menu, T.separatorInfo)
table.insert(menu, T.closeMenuInfo)
EDDM.ToggleEasyMenu(menu, dropdownFrame, "cursor", 0, 0, "MENU")
end