Files
Anthony Narkevicius 2ce172c98c Quest xp on experience bar (#18)
* Add files via upload

* Add files via upload

* Add files via upload

* remove bandaide

* remove bandaide

Co-authored-by: Andrew <16847730+andrew6180@users.noreply.github.com>
2022-12-14 11:19:01 -07:00

297 lines
7.8 KiB
Lua

local E, _, V, P, G = unpack(ElvUI); --Import: Engine, Locales, PrivateDB, ProfileDB, GlobalDB
local C, L = unpack(select(2, ...))
local mod = E:GetModule("DataBars")
E.Options.args.databars = {
type = "group",
name = L["DataBars"],
childGroups = "tab",
get = function(info) return E.db.databars[info[#info]] end,
set = function(info, value) E.db.databars[info[#info]] = value end,
args = {
intro = {
order = 1,
type = "description",
name = L["DATABAR_DESC"]
},
spacer = {
order = 2,
type = "description",
name = ""
},
experience = {
order = 3,
type = "group",
name = L["XPBAR_LABEL"],
get = function(info) return mod.db.experience[info[#info]] end,
set = function(info, value) mod.db.experience[info[#info]] = value mod:ExperienceBar_UpdateDimensions() end,
args = {
header = {
order = 1,
type = "header",
name = L["XPBAR_LABEL"]
},
enable = {
order = 2,
type = "toggle",
name = L["Enable"],
set = function(info, value) mod.db.experience[info[#info]] = value mod:ExperienceBar_Toggle() end
},
mouseover = {
order = 3,
type = "toggle",
name = L["Mouseover"]
},
hideAtMaxLevel = {
order = 4,
type = "toggle",
name = L["Hide At Max Level"],
set = function(info, value) mod.db.experience[info[#info]] = value mod:ExperienceBar_Update() end
},
hideInVehicle = {
order = 5,
type = "toggle",
name = L["Hide In Vehicle"],
set = function(info, value) mod.db.experience[info[#info]] = value mod:ExperienceBar_Update() end
},
hideInCombat = {
order = 6,
type = "toggle",
name = L["Hide In Combat"],
set = function(info, value) mod.db.experience[info[#info]] = value mod:ExperienceBar_Update() end
},
showBubbles = {
order = 6,
type = "toggle",
name = L["Show Bubbles"]
},
spacer = {
order = 7,
type = "description",
name = " "
},
orientation = {
order = 8,
type = "select",
name = L["Statusbar Fill Orientation"],
desc = L["Direction the bar moves on gains/losses"],
values = {
["HORIZONTAL"] = L["Horizontal"],
["VERTICAL"] = L["Vertical"]
}
},
width = {
order = 9,
type = "range",
name = L["Width"],
min = 5, max = ceil(GetScreenWidth() or 800), step = 1
},
height = {
order = 10,
type = "range",
name = L["Height"],
min = 5, max = ceil(GetScreenHeight() or 800), step = 1
},
font = {
order = 11,
type = "select", dialogControl = "LSM30_Font",
name = L["Font"],
values = AceGUIWidgetLSMlists.font
},
textSize = {
order = 12,
type = "range",
name = L["FONT_SIZE"],
min = 6, max = 22, step = 1
},
fontOutline = {
order = 13,
type = "select",
name = L["Font Outline"],
values = C.Values.FontFlags
},
textFormat = {
order = 14,
type = "select",
name = L["Text Format"],
width = "double",
values = {
NONE = L["NONE"],
CUR = L["Current"],
REM = L["Remaining"],
PERCENT = L["Percent"],
CURMAX = L["Current - Max"],
CURPERC = L["Current - Percent"],
CURREM = L["Current - Remaining"],
CURPERCREM = L["Current - Percent (Remaining)"],
},
set = function(info, value) mod.db.experience[info[#info]] = value mod:ExperienceBar_Update() end
},
questXP = {
order = 15,
type = "group",
name = L["Quest XP"],
guiInline = true,
get = function(info) return mod.db.experience.questXP[info[#info]] end,
disabled = function() return not mod.db.experience.enable or not mod.db.experience.questXP.enable end,
args = {
enable = {
order = 1,
type = "toggle",
name = L["Enable"],
set = function(info, value)
mod.db.experience.questXP.enable = value
mod:ExperienceBar_QuestXPToggle()
end,
disabled = function() return not mod.db.experience.enable end
},
color = {
order = 2,
type = "color",
name = L["Quest XP Color"],
hasAlpha = true,
get = function(info)
local t = mod.db.experience.questXP.color
return t.r, t.g, t.b, t.a, 0, 1, 0, 0.4
end,
set = function(info, r, g, b, a)
local t = mod.db.experience.questXP.color
t.r, t.g, t.b, t.a = r, g, b, a
mod:ExperienceBar_UpdateDimensions()
end
},
questCurrentZoneOnly = {
order = 3,
type = "toggle",
name = L["Quests in Current Zone Only"],
set = function(info, value)
mod.db.experience.questXP.questCurrentZoneOnly = value
mod:ExperienceBar_QuestXPUpdate()
end
},
questCompletedOnly = {
order = 4,
type = "toggle",
name = L["Completed Quests Only"],
set = function(info, value)
mod.db.experience.questXP.questCompletedOnly = value
mod:ExperienceBar_QuestXPUpdate()
end
},
tooltip = {
order = 5,
type = "toggle",
name = L["Add Quest XP to Tooltip"],
set = function(info, value) mod.db.experience.questXP.tooltip = value end
}
}
}
}
},
reputation = {
order = 4,
type = "group",
name = L["REPUTATION"],
get = function(info) return mod.db.reputation[info[#info]] end,
set = function(info, value) mod.db.reputation[info[#info]] = value mod:ReputationBar_UpdateDimensions() end,
args = {
header = {
order = 1,
type = "header",
name = L["REPUTATION"]
},
enable = {
order = 2,
type = "toggle",
name = L["Enable"],
set = function(info, value) mod.db.reputation[info[#info]] = value mod:ReputationBar_Toggle() end
},
mouseover = {
order = 3,
type = "toggle",
name = L["Mouseover"]
},
hideInVehicle = {
order = 4,
type = "toggle",
name = L["Hide In Vehicle"],
set = function(info, value) mod.db.reputation[info[#info]] = value mod:ReputationBar_Update() end
},
hideInCombat = {
order = 5,
type = "toggle",
name = L["Hide In Combat"],
set = function(info, value) mod.db.reputation[info[#info]] = value mod:ReputationBar_Update() end
},
showBubbles = {
order = 6,
type = "toggle",
name = L["Show Bubbles"]
},
spacer = {
order = 7,
type = "description",
name = " "
},
orientation = {
order = 8,
type = "select",
name = L["Statusbar Fill Orientation"],
desc = L["Direction the bar moves on gains/losses"],
values = {
["HORIZONTAL"] = L["Horizontal"],
["VERTICAL"] = L["Vertical"]
}
},
width = {
order = 9,
type = "range",
name = L["Width"],
min = 5, max = ceil(GetScreenWidth() or 800), step = 1
},
height = {
order = 10,
type = "range",
name = L["Height"],
min = 5, max = ceil(GetScreenHeight() or 800), step = 1
},
font = {
order = 11,
type = "select", dialogControl = "LSM30_Font",
name = L["Font"],
values = AceGUIWidgetLSMlists.font
},
textSize = {
order = 12,
type = "range",
name = L["FONT_SIZE"],
min = 6, max = 22, step = 1
},
fontOutline = {
order = 13,
type = "select",
name = L["Font Outline"],
values = C.Values.FontFlags
},
textFormat = {
order = 14,
type = "select",
name = L["Text Format"],
width = "double",
values = {
NONE = L["NONE"],
CUR = L["Current"],
REM = L["Remaining"],
PERCENT = L["Percent"],
CURMAX = L["Current - Max"],
CURPERC = L["Current - Percent"],
CURREM = L["Current - Remaining"],
CURPERCREM = L["Current - Percent (Remaining)"],
},
set = function(info, value) mod.db.reputation[info[#info]] = value mod:ReputationBar_Update() end
}
}
}
}
}