613 lines
24 KiB
Lua
613 lines
24 KiB
Lua
local pairs, ipairs = pairs, ipairs
|
|
local floor = math.floor
|
|
local str_find, str_gsub, str_sub, tinsert = string.find, string.gsub, string.sub, table.insert
|
|
local UnitHealth, UnitHealthMax, UnitName, UnitExists, UnitIsDeadOrGhost = UnitHealth, UnitHealthMax, UnitName, UnitExists, UnitIsDeadOrGhost
|
|
|
|
local CreateFrame = CreateFrame
|
|
local RAID_CLASS_COLORS = RAID_CLASS_COLORS
|
|
|
|
local Gladdy = LibStub("Gladdy")
|
|
local L = Gladdy.L
|
|
local AceGUIWidgetLSMlists = AceGUIWidgetLSMlists
|
|
local Healthbar = Gladdy:NewModule("Health Bar", 100, {
|
|
healthBarFont = "DorisPP",
|
|
healthBarHeight = 60,
|
|
healthBarTexture = "Smooth",
|
|
healthBarBorderStyle = "Gladdy Tooltip round",
|
|
healthBarBorderSize = 9,
|
|
healthBarBorderColor = { r = 0, g = 0, b = 0, a = 1 },
|
|
healthBarBgColor = { r = 0, g = 0, b = 0, a = 0.4 },
|
|
healthBarFontColor = { r = 1, g = 1, b = 1, a = 1 },
|
|
healthBarNameFontSize = 12,
|
|
healthBarHealthFontSize = 12,
|
|
healthNameToArenaId = false,
|
|
healthName = true,
|
|
healthActual = false,
|
|
healthMax = true,
|
|
healthPercentage = true,
|
|
healthFrameStrata = "MEDIUM",
|
|
healthFrameLevel = 1,
|
|
healthCustomTagsEnabled = false,
|
|
healthTextRight = "[percent|status]",
|
|
healthTextLeft = "[name]",
|
|
healthTextRight = "[percent|status]",
|
|
healthTextLeftOutline = false,
|
|
healthTextRightOutline = false,
|
|
healthTextLeftVOffset = 0,
|
|
healthTextLeftHOffset = 5,
|
|
healthTextRightVOffset = 0,
|
|
healthTextRightHOffset = -5,
|
|
})
|
|
|
|
function Healthbar:Initialize()
|
|
self.frames = {}
|
|
self:RegisterMessage("JOINED_ARENA")
|
|
self:RegisterMessage("ENEMY_SPOTTED")
|
|
self:RegisterMessage("UNIT_SPEC")
|
|
self:RegisterMessage("UNIT_DESTROYED")
|
|
self:RegisterMessage("UNIT_DEATH")
|
|
end
|
|
|
|
function Healthbar:CreateFrame(unit)
|
|
local button = Gladdy.buttons[unit]
|
|
|
|
local healthBar = CreateFrame("Frame", nil, Gladdy.buttons[unit], BackdropTemplateMixin and "BackdropTemplate")
|
|
healthBar:EnableMouse(false)
|
|
healthBar:SetBackdrop({ edgeFile = Gladdy:SMFetch("border", "healthBarBorderStyle"),
|
|
edgeSize = Gladdy.db.healthBarBorderSize })
|
|
healthBar:SetBackdropBorderColor(Gladdy:SetColor(Gladdy.db.healthBarBorderColor))
|
|
healthBar:SetFrameStrata(Gladdy.db.healthFrameStrata)
|
|
healthBar:SetFrameLevel(Gladdy.db.healthFrameLevel)
|
|
|
|
healthBar.hp = CreateFrame("StatusBar", nil, healthBar)
|
|
healthBar.hp:SetStatusBarTexture(Gladdy:SMFetch("statusbar", "healthBarTexture"))
|
|
healthBar.hp:SetMinMaxValues(0, 100)
|
|
healthBar.hp:SetFrameStrata(Gladdy.db.healthFrameStrata)
|
|
healthBar.hp:SetFrameLevel(Gladdy.db.healthFrameLevel - 1)
|
|
|
|
healthBar.bg = healthBar.hp:CreateTexture(nil, "BACKGROUND")
|
|
healthBar.bg:SetTexture(Gladdy:SMFetch("statusbar", "healthBarTexture"))
|
|
healthBar.bg:ClearAllPoints()
|
|
healthBar.bg:SetAllPoints(healthBar.hp)
|
|
healthBar.bg:SetAlpha(1)
|
|
healthBar.bg:SetVertexColor(Gladdy:SetColor(Gladdy.db.healthBarBgColor))
|
|
|
|
healthBar.nameText = healthBar:CreateFontString(nil, "LOW", "GameFontNormalSmall")
|
|
if (Gladdy.db.healthBarNameFontSize < 1) then
|
|
healthBar.nameText:SetFont(Gladdy:SMFetch("font", "healthBarNameFont"), 1)
|
|
healthBar.nameText:Hide()
|
|
else
|
|
healthBar.nameText:SetFont(Gladdy:SMFetch("font", "healthBarFont"), Gladdy.db.healthBarNameFontSize, Gladdy.db.healthTextLeftOutline and "OUTLINE")
|
|
healthBar.nameText:Show()
|
|
end
|
|
healthBar.nameText:SetTextColor(Gladdy:SetColor(Gladdy.db.healthBarFontColor))
|
|
healthBar.nameText:SetShadowOffset(1, -1)
|
|
healthBar.nameText:SetShadowColor(0, 0, 0, 1)
|
|
healthBar.nameText:SetJustifyH("CENTER")
|
|
healthBar.nameText:SetPoint("LEFT", Gladdy.db.healthTextLeftHOffset, Gladdy.db.healthTextLeftVOffset)
|
|
|
|
healthBar.healthText = healthBar:CreateFontString(nil, "LOW")
|
|
if (Gladdy.db.healthBarHealthFontSize < 1) then
|
|
healthBar.healthText:SetFont(Gladdy:SMFetch("font", "healthBarFont"), 1)
|
|
healthBar.healthText:Hide()
|
|
else
|
|
healthBar.healthText:SetFont(Gladdy:SMFetch("font", "healthBarFont"), Gladdy.db.healthBarHealthFontSize, Gladdy.db.healthTextRightOutline and "OUTLINE")
|
|
healthBar.healthText:Hide()
|
|
end
|
|
healthBar.healthText:SetTextColor(Gladdy:SetColor(Gladdy.db.healthBarFontColor))
|
|
healthBar.healthText:SetShadowOffset(1, -1)
|
|
healthBar.healthText:SetShadowColor(0, 0, 0, 1)
|
|
healthBar.healthText:SetJustifyH("CENTER")
|
|
healthBar.healthText:SetPoint("RIGHT", Gladdy.db.healthTextRightHOffset, Gladdy.db.healthTextRightVOffset)
|
|
|
|
healthBar.unit = unit
|
|
self.frames[unit] = healthBar
|
|
button.healthBar = healthBar
|
|
self:ResetUnit(unit)
|
|
healthBar:RegisterUnitEvent("UNIT_HEALTH_FREQUENT", unit)
|
|
healthBar:RegisterUnitEvent("UNIT_MAXHEALTH", unit)
|
|
healthBar:RegisterUnitEvent("UNIT_NAME_UPDATE", unit)
|
|
healthBar:SetScript("OnEvent", Healthbar.OnEvent)
|
|
end
|
|
|
|
function Healthbar.OnEvent(self, event, unit)
|
|
local isDead = UnitExists(unit) and UnitIsDeadOrGhost(unit)
|
|
if event == "UNIT_HEALTH" or event == "UNIT_MAXHEALTH" then
|
|
if isDead then
|
|
Gladdy:SendMessage("UNIT_DEATH", unit)
|
|
return
|
|
end
|
|
local health = UnitHealth(unit)
|
|
local healthMax = UnitHealthMax(unit)
|
|
self.hp:SetMinMaxValues(0, healthMax)
|
|
self.hp:SetValue(health)
|
|
self.hp.current = health
|
|
Healthbar:SetText(unit, health, healthMax)
|
|
--Healthbar:SetHealthText(self, health, healthMax)
|
|
elseif event == "UNIT_NAME_UPDATE" then
|
|
local name = UnitName(unit)
|
|
Gladdy.buttons[unit].name = name
|
|
Healthbar:SetText(unit, self.hp.current, 100)
|
|
end
|
|
if not Gladdy.buttons[unit].class then
|
|
Gladdy:SpotEnemy(unit, true)
|
|
end
|
|
end
|
|
|
|
function Healthbar:SetHealthText(healthBar, health, healthMax)
|
|
local healthText = ""
|
|
local healthPercentage = health and healthMax and floor(health * 100 / healthMax)
|
|
|
|
if health == 0 and UnitExists(healthBar.unit) and UnitIsDeadOrGhost(healthBar.unit) then
|
|
self:UNIT_DEATH(healthBar.unit)
|
|
return
|
|
end
|
|
if (Gladdy.db.healthPercentage and healthPercentage) then
|
|
healthText = ("%d%%"):format(healthPercentage)
|
|
end
|
|
healthBar.healthText:SetText(healthText)
|
|
end
|
|
|
|
function Healthbar:SetText(unit, health, healthMax, status)
|
|
local button = Gladdy.buttons[unit]
|
|
if not Gladdy.buttons[unit] then
|
|
return
|
|
end
|
|
if Gladdy.db.healthCustomTagsEnabled then
|
|
button.healthBar.nameText:SetText(Gladdy:SetTag(unit, Gladdy.db.healthTextLeft, health, healthMax, status))
|
|
button.healthBar.healthText:SetText(Gladdy:SetTag(unit, Gladdy.db.healthTextRight, health, healthMax, status))
|
|
else
|
|
if Gladdy.db.healthName then
|
|
if Gladdy.db.healthNameToArenaId then
|
|
button.healthBar.nameText:SetText(str_gsub(unit, "arena", ""))
|
|
else
|
|
button.healthBar.nameText:SetText(Gladdy.buttons[unit].name)
|
|
end
|
|
end
|
|
if status then
|
|
button.healthBar.healthText:SetText(status)
|
|
else
|
|
Healthbar:SetHealthText(button.healthBar, health, healthMax)
|
|
end
|
|
end
|
|
end
|
|
|
|
function Healthbar:UpdateFrame(unit)
|
|
local healthBar = self.frames[unit]
|
|
if (not healthBar) then
|
|
return
|
|
end
|
|
|
|
healthBar:SetFrameStrata(Gladdy.db.healthFrameStrata)
|
|
healthBar:SetFrameLevel(Gladdy.db.healthFrameLevel)
|
|
healthBar.hp:SetFrameStrata(Gladdy.db.healthFrameStrata)
|
|
healthBar.hp:SetFrameLevel(Gladdy.db.healthFrameLevel - 1)
|
|
|
|
healthBar.bg:SetTexture(Gladdy:SMFetch("statusbar", "healthBarTexture"))
|
|
healthBar.bg:SetVertexColor(Gladdy:SetColor(Gladdy.db.healthBarBgColor))
|
|
|
|
healthBar:SetBackdrop({ edgeFile = Gladdy:SMFetch("border", "healthBarBorderStyle"),
|
|
edgeSize = Gladdy.db.healthBarBorderSize })
|
|
healthBar:SetBackdropBorderColor(Gladdy:SetColor(Gladdy.db.healthBarBorderColor))
|
|
healthBar:ClearAllPoints()
|
|
healthBar:SetPoint("TOPLEFT", Gladdy.buttons[unit], "TOPLEFT", 0, 0)
|
|
healthBar:SetPoint("BOTTOMRIGHT", Gladdy.buttons[unit], "BOTTOMRIGHT")
|
|
|
|
healthBar.hp:SetStatusBarTexture(Gladdy:SMFetch("statusbar", "healthBarTexture"))
|
|
healthBar.hp:ClearAllPoints()
|
|
healthBar.hp:SetPoint("TOPLEFT", healthBar, "TOPLEFT", (Gladdy.db.healthBarBorderSize/Gladdy.db.statusbarBorderOffset), -(Gladdy.db.healthBarBorderSize/Gladdy.db.statusbarBorderOffset))
|
|
healthBar.hp:SetPoint("BOTTOMRIGHT", healthBar, "BOTTOMRIGHT", -(Gladdy.db.healthBarBorderSize/Gladdy.db.statusbarBorderOffset), (Gladdy.db.healthBarBorderSize/Gladdy.db.statusbarBorderOffset))
|
|
|
|
if (Gladdy.db.healthBarHealthFontSize < 1) then
|
|
healthBar.healthText:SetFont(Gladdy:SMFetch("font", "healthBarFont"), 1)
|
|
healthBar.healthText:Hide()
|
|
else
|
|
healthBar.healthText:SetFont(Gladdy:SMFetch("font", "healthBarFont"), Gladdy.db.healthBarHealthFontSize, Gladdy.db.healthTextRightOutline and "OUTLINE")
|
|
healthBar.healthText:Show()
|
|
end
|
|
if (Gladdy.db.healthBarNameFontSize < 1) then
|
|
healthBar.nameText:SetFont(Gladdy:SMFetch("font", "healthBarNameFont"), 1)
|
|
healthBar.nameText:Hide()
|
|
else
|
|
healthBar.nameText:SetFont(Gladdy:SMFetch("font", "healthBarFont"), Gladdy.db.healthBarNameFontSize, Gladdy.db.healthTextLeftOutline and "OUTLINE")
|
|
if Gladdy.db.healthName then
|
|
healthBar.nameText:Show()
|
|
else
|
|
healthBar.nameText:Hide()
|
|
end
|
|
end
|
|
healthBar.nameText:SetTextColor(Gladdy:SetColor(Gladdy.db.healthBarFontColor))
|
|
healthBar.healthText:SetTextColor(Gladdy:SetColor(Gladdy.db.healthBarFontColor))
|
|
healthBar.nameText:SetPoint("LEFT", Gladdy.db.healthTextLeftHOffset, Gladdy.db.healthTextLeftVOffset)
|
|
healthBar.healthText:SetPoint("RIGHT", Gladdy.db.healthTextRightHOffset, Gladdy.db.healthTextRightVOffset)
|
|
end
|
|
|
|
function Healthbar:ResetUnit(unit)
|
|
local healthBar = self.frames[unit]
|
|
if (not healthBar) then
|
|
return
|
|
end
|
|
|
|
healthBar.hp:SetStatusBarColor(1, 1, 1, 1)
|
|
healthBar.nameText:SetText("")
|
|
healthBar.healthText:SetText("")
|
|
healthBar.hp:SetValue(0)
|
|
healthBar.hp.current = 0
|
|
end
|
|
|
|
function Healthbar:Test(unit)
|
|
local healthBar = self.frames[unit]
|
|
local button = Gladdy.buttons[unit]
|
|
if (not healthBar or not button) then
|
|
return
|
|
end
|
|
|
|
--self:JOINED_ARENA()
|
|
Gladdy:SendMessage("UNIT_HEALTH", unit, button.health, button.healthMax)
|
|
healthBar.hp.current = button.health
|
|
self:ENEMY_SPOTTED(unit)
|
|
self:SetText(unit, button.health, button.healthMax)
|
|
healthBar.hp:SetValue(button.health)
|
|
if unit == "arena1" then
|
|
self:UNIT_DEATH(unit)
|
|
--self:SetText(unit, button.health, button.healthMax, L["DEAD"])
|
|
end
|
|
end
|
|
|
|
function Healthbar:UNIT_SPEC(unit)
|
|
local button = Gladdy.buttons[unit]
|
|
if not button then
|
|
return
|
|
end
|
|
self:SetText(unit, button.healthBar.hp.current, 100)
|
|
--button.healthBar.nameText:SetText(Gladdy:SetTag(unit, Gladdy.db.healthTextLeft, button.health, button.healthMax))
|
|
end
|
|
|
|
function Healthbar:JOINED_ARENA()
|
|
for i=1,Gladdy.curBracket do
|
|
self:SetText("arena" .. i, nil, nil)
|
|
end
|
|
end
|
|
|
|
function Healthbar:ENEMY_SPOTTED(unit)
|
|
local healthBar = self.frames[unit]
|
|
local button = Gladdy.buttons[unit]
|
|
if (not healthBar or not button) then
|
|
return
|
|
end
|
|
|
|
if UnitExists(unit) then
|
|
local health = UnitHealth(unit)
|
|
local healthMax = UnitHealthMax(unit)
|
|
healthBar.hp:SetMinMaxValues(0, healthMax)
|
|
healthBar.hp:SetValue(health)
|
|
healthBar.hp.current = health
|
|
Healthbar:SetText(unit, health, healthMax)
|
|
--Healthbar:SetHealthText(healthBar, health, healthMax)
|
|
end
|
|
|
|
if button.class then
|
|
healthBar.hp:SetStatusBarColor(RAID_CLASS_COLORS[button.class].r, RAID_CLASS_COLORS[button.class].g, RAID_CLASS_COLORS[button.class].b, 1)
|
|
end
|
|
end
|
|
|
|
function Healthbar:UNIT_DEATH(unit)
|
|
local healthBar = self.frames[unit]
|
|
if (not healthBar) then
|
|
return
|
|
end
|
|
|
|
healthBar.hp:SetValue(0)
|
|
healthBar.hp.current = 0
|
|
Healthbar:SetText(unit, 0, 100, L["DEAD"])
|
|
end
|
|
|
|
function Healthbar:UNIT_DESTROYED(unit)
|
|
local healthBar = self.frames[unit]
|
|
if (not healthBar) then
|
|
return
|
|
end
|
|
|
|
healthBar.hp:SetValue(0)
|
|
healthBar.hp.current = 0
|
|
healthBar.healthText:SetText(L["LEAVE"])
|
|
healthBar.nameText:SetText("")
|
|
end
|
|
|
|
local function option(params)
|
|
local defaults = {
|
|
get = function(info)
|
|
local key = info.arg or info[#info]
|
|
return Gladdy.dbi.profile[key]
|
|
end,
|
|
set = function(info, value)
|
|
local key = info.arg or info[#info]
|
|
Gladdy.dbi.profile[key] = value
|
|
Gladdy.options.args["Health Bar"].args.group.args.border.args.healthBarBorderSize.max = Gladdy.db.healthBarHeight/2
|
|
if Gladdy.db.healthBarBorderSize > Gladdy.db.healthBarHeight/2 then
|
|
Gladdy.db.healthBarBorderSize = Gladdy.db.healthBarHeight/2
|
|
end
|
|
if Gladdy.frame.testing then
|
|
for i=1,Gladdy.curBracket do
|
|
Healthbar:Test("arena" .. i)
|
|
end
|
|
end
|
|
Gladdy:UpdateFrame()
|
|
end,
|
|
}
|
|
|
|
for k, v in pairs(params) do
|
|
defaults[k] = v
|
|
end
|
|
|
|
return defaults
|
|
end
|
|
|
|
function Healthbar:GetOptions()
|
|
return {
|
|
headerHealthbar = {
|
|
type = "header",
|
|
name = L["Health Bar"],
|
|
order = 2,
|
|
},
|
|
group = {
|
|
type = "group",
|
|
childGroups = "tree",
|
|
name = L["Frame"],
|
|
order = 3,
|
|
args = {
|
|
general = {
|
|
type = "group",
|
|
name = L["General"],
|
|
order = 1,
|
|
args = {
|
|
headerAuras = {
|
|
type = "header",
|
|
name = L["General"],
|
|
order = 1,
|
|
},
|
|
healthBarHeight = option({
|
|
type = "range",
|
|
name = L["Bar height"],
|
|
desc = L["Height of the bar"],
|
|
order = 3,
|
|
min = 10,
|
|
max = 100,
|
|
step = 1,
|
|
width = "full",
|
|
}),
|
|
healthBarTexture = option({
|
|
type = "select",
|
|
name = L["Bar texture"],
|
|
desc = L["Texture of the bar"],
|
|
order = 4,
|
|
dialogControl = "LSM30_Statusbar",
|
|
values = AceGUIWidgetLSMlists.statusbar,
|
|
}),
|
|
healthBarBgColor = Gladdy:colorOption({
|
|
type = "color",
|
|
name = L["Background color"],
|
|
desc = L["Color of the status bar background"],
|
|
order = 5,
|
|
hasAlpha = true,
|
|
}),
|
|
},
|
|
},
|
|
font = {
|
|
type = "group",
|
|
name = L["Font"],
|
|
order = 2,
|
|
args = {
|
|
header = {
|
|
type = "header",
|
|
name = L["Font"],
|
|
order = 1,
|
|
},
|
|
healthBarFont = option({
|
|
type = "select",
|
|
name = L["Font"],
|
|
desc = L["Font of the bar"],
|
|
order = 11,
|
|
dialogControl = "LSM30_Font",
|
|
values = AceGUIWidgetLSMlists.font,
|
|
}),
|
|
healthBarFontColor = Gladdy:colorOption({
|
|
type = "color",
|
|
name = L["Font color"],
|
|
desc = L["Color of the text"],
|
|
order = 12,
|
|
hasAlpha = true,
|
|
}),
|
|
healthTextLeftOutline = option({
|
|
type = "toggle",
|
|
name = L["Left Font Outline"],
|
|
order = 13,
|
|
width = "full",
|
|
}),
|
|
healthTextRightOutline = option({
|
|
type = "toggle",
|
|
name = L["Right Font Outline"],
|
|
order = 14,
|
|
width = "full",
|
|
}),
|
|
headerSize = {
|
|
type = "header",
|
|
name = L["Size"],
|
|
order = 20,
|
|
},
|
|
healthBarNameFontSize = option({
|
|
type = "range",
|
|
name = L["Name font size"],
|
|
desc = L["Size of the name text"],
|
|
order = 21,
|
|
step = 0.1,
|
|
min = 0,
|
|
max = 20,
|
|
width = "full",
|
|
}),
|
|
healthBarHealthFontSize = option({
|
|
type = "range",
|
|
name = L["Health font size"],
|
|
desc = L["Size of the health text"],
|
|
order = 22,
|
|
step = 0.1,
|
|
min = 0,
|
|
max = 20,
|
|
width = "full",
|
|
}),
|
|
headerLeftText = {
|
|
type = "header",
|
|
name = L["Offsets"],
|
|
order = 30,
|
|
},
|
|
healthTextLeftVOffset = option({
|
|
type = "range",
|
|
name = L["Left Text Vertical Offset"],
|
|
order = 31,
|
|
step = 0.1,
|
|
min = -200,
|
|
max = 200,
|
|
width = "full",
|
|
}),
|
|
healthTextLeftHOffset = option({
|
|
type = "range",
|
|
name = L["Left Text Horizontal Offset"],
|
|
order = 32,
|
|
step = 0.1,
|
|
min = -200,
|
|
max = 200,
|
|
width = "full",
|
|
}),
|
|
healthTextRightVOffset = option({
|
|
type = "range",
|
|
name = L["Right Text Vertical Offset"],
|
|
order = 33,
|
|
step = 0.1,
|
|
min = -200,
|
|
max = 200,
|
|
width = "full",
|
|
}),
|
|
healthTextRightHOffset = option({
|
|
type = "range",
|
|
name = L["Right Text Horizontal Offset"],
|
|
order = 34,
|
|
step = 0.1,
|
|
min = -200,
|
|
max = 200,
|
|
width = "full",
|
|
}),
|
|
},
|
|
},
|
|
border = {
|
|
type = "group",
|
|
name = L["Border"],
|
|
order = 3,
|
|
args = {
|
|
header = {
|
|
type = "header",
|
|
name = L["Border"],
|
|
order = 1,
|
|
},
|
|
healthBarBorderStyle = option({
|
|
type = "select",
|
|
name = L["Border style"],
|
|
order = 21,
|
|
dialogControl = "LSM30_Border",
|
|
values = AceGUIWidgetLSMlists.border,
|
|
}),
|
|
healthBarBorderSize = option({
|
|
type = "range",
|
|
name = L["Border size"],
|
|
desc = L["Size of the border"],
|
|
order = 22,
|
|
min = 0.5,
|
|
max = Gladdy.db.healthBarHeight/2,
|
|
step = 0.5,
|
|
width = "full",
|
|
}),
|
|
healthBarBorderColor = Gladdy:colorOption({
|
|
type = "color",
|
|
name = L["Border color"],
|
|
desc = L["Color of the border"],
|
|
order = 23,
|
|
hasAlpha = true,
|
|
}),
|
|
},
|
|
},
|
|
frameStrata = {
|
|
type = "group",
|
|
name = L["Frame Strata and Level"],
|
|
order = 4,
|
|
args = {
|
|
headerAuraLevel = {
|
|
type = "header",
|
|
name = L["Frame Strata and Level"],
|
|
order = 1,
|
|
},
|
|
healthFrameStrata = Gladdy:option({
|
|
type = "select",
|
|
name = L["Frame Strata"],
|
|
order = 2,
|
|
values = Gladdy.frameStrata,
|
|
sorting = Gladdy.frameStrataSorting,
|
|
width = "full",
|
|
}),
|
|
healthFrameLevel = Gladdy:option({
|
|
type = "range",
|
|
name = L["Frame Level"],
|
|
min = 1,
|
|
max = 500,
|
|
step = 1,
|
|
order = 3,
|
|
width = "full",
|
|
}),
|
|
},
|
|
},
|
|
healthValues = {
|
|
type = "group",
|
|
name = L["Health Bar Text"],
|
|
order = 5,
|
|
args = {
|
|
header = {
|
|
type = "header",
|
|
name = L["Health Bar Text"],
|
|
order = 1,
|
|
},
|
|
healthName = option({
|
|
type = "toggle",
|
|
name = L["Show name text"],
|
|
desc = L["Show the units name"],
|
|
order = 2,
|
|
width = "full",
|
|
disabled = function() return Gladdy.db.healthCustomTagsEnabled end,
|
|
}),
|
|
healthNameToArenaId = option({
|
|
type = "toggle",
|
|
name = L["Show ArenaX"],
|
|
desc = L["Show 1-5 as name instead"],
|
|
order = 3,
|
|
width = "full",
|
|
disabled = function() return not Gladdy.db.healthName or Gladdy.db.healthCustomTagsEnabled end,
|
|
}),
|
|
healthPercentage = option({
|
|
type = "toggle",
|
|
name = L["Show health percentage"],
|
|
desc = L["Show health percentage on the health bar"],
|
|
order = 6,
|
|
width = "full",
|
|
disabled = function() return Gladdy.db.healthCustomTagsEnabled end,
|
|
}),
|
|
header = {
|
|
type = "header",
|
|
name = L["Custom Tags"],
|
|
order = 10,
|
|
},
|
|
healthCustomTagsEnabled = Gladdy:GetTagOption(L["Custom Tags Enabled"], 11, nil, option, true),
|
|
healthTextLeft = Gladdy:GetTagOption(L["Left Text"], 12, "healthCustomTagsEnabled", option),
|
|
healthTextRight = Gladdy:GetTagOption(L["Right Text"], 13, "healthCustomTagsEnabled", option),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
end |