Initial Commit
This commit is contained in:
@@ -0,0 +1,338 @@
|
||||
--[[
|
||||
-- Kui_Nameplates
|
||||
-- By Kesava at curse.com
|
||||
-- All rights reserved.
|
||||
-- Backported by: Kader at https://github.com/bkader
|
||||
]]
|
||||
local addon = LibStub("AceAddon-3.0"):GetAddon("KuiNameplates")
|
||||
local mod = addon:NewModule("NameOnly", addon.Prototype, "AceEvent-3.0")
|
||||
local L = LibStub("AceLocale-3.0"):GetLocale("KuiNameplates")
|
||||
|
||||
mod.uiName = L["Name-only display"]
|
||||
|
||||
local _
|
||||
local len = string.len
|
||||
local utf8sub = LibStub("Kui-1.0").utf8sub
|
||||
local orig_SetName
|
||||
|
||||
local colour_friendly
|
||||
|
||||
local PositionRaidIcon = {
|
||||
function(f) return f.icon:SetPoint("RIGHT", f.name, "LEFT", -2, 2) end,
|
||||
function(f) return f.icon:SetPoint("BOTTOM", f.name, "TOP", 0, 8) end,
|
||||
function(f) return f.icon:SetPoint("LEFT", f.name, "RIGHT", 0, 2) end,
|
||||
function(f) return f.icon:SetPoint("TOP", f.name, "BOTTOM", -1, -8) end
|
||||
}
|
||||
|
||||
-- mod functions ###############################################################
|
||||
local function UpdateDisplay(f)
|
||||
f:CreateFontString(f.name, {
|
||||
reset = true,
|
||||
size = f.trivial and "nameonlytrivial" or (f.player and "nameonlyplayer" or "nameonly"),
|
||||
shadow = true
|
||||
})
|
||||
|
||||
f.name:ClearAllPoints()
|
||||
f.name:SetWidth(0)
|
||||
f.name:SetWidth(f.name:GetStringWidth())
|
||||
|
||||
local sheight = f.name:GetStringHeight() / 2
|
||||
f.name:SetPoint("CENTER", 0.5, (sheight - floor(sheight) > 0.01) and 0 or 0.5)
|
||||
end
|
||||
|
||||
-- toggle nameonly mode on
|
||||
local function SwitchOn(f)
|
||||
if f.nameonly then
|
||||
return
|
||||
end
|
||||
f.nameonly = true
|
||||
|
||||
if not f.player and f.friend then
|
||||
-- color NPC names
|
||||
f.name:SetTextColor(unpack(colour_friendly))
|
||||
end
|
||||
|
||||
if mod.db.profile.display.hidecastbars then
|
||||
addon.Castbar:IgnoreFrame(f)
|
||||
end
|
||||
|
||||
f.name:SetParent(f)
|
||||
f.name:SetJustifyH("CENTER")
|
||||
|
||||
UpdateDisplay(f)
|
||||
|
||||
f.icon:SetParent(f)
|
||||
f.icon:ClearAllPoints()
|
||||
PositionRaidIcon[addon.db.profile.general.raidicon_side](f)
|
||||
|
||||
if f.castWarning then
|
||||
f.castWarning:SetParent(f)
|
||||
f.incWarning:SetParent(f)
|
||||
end
|
||||
|
||||
f.health:Hide()
|
||||
f.overlay:Hide()
|
||||
f.bg:Hide()
|
||||
end
|
||||
-- toggle nameonly mode off
|
||||
local function SwitchOff(f)
|
||||
if not f.nameonly then
|
||||
return
|
||||
end
|
||||
f.nameonly = nil
|
||||
|
||||
if not f.player then
|
||||
f.name:SetTextColor(1, 1, 1)
|
||||
end
|
||||
|
||||
if mod.db.profile.display.hidecastbars then
|
||||
addon.Castbar:UnignoreFrame(f)
|
||||
end
|
||||
|
||||
f:CreateFontString(f.name, {reset = true, size = "name"})
|
||||
f.name:SetParent(f.overlay)
|
||||
|
||||
f.health:Show()
|
||||
f.overlay:Show()
|
||||
f.bg:Show()
|
||||
|
||||
-- reposition name
|
||||
addon:UpdateName(f, f.trivial)
|
||||
|
||||
-- reposition raid icon
|
||||
addon:UpdateRaidIcon(f)
|
||||
|
||||
if f.castWarning then
|
||||
f.castWarning:SetParent(f.overlay)
|
||||
f.incWarning:SetParent(f.overlay)
|
||||
end
|
||||
|
||||
-- reset name text
|
||||
f:SetName()
|
||||
end
|
||||
-- SetName hook, to set name's colour based on health
|
||||
local function nameonly_SetName(f)
|
||||
orig_SetName(f)
|
||||
|
||||
if not f.nameonly then
|
||||
return
|
||||
end
|
||||
f.name:SetWidth(0)
|
||||
f.name:SetWidth(f.name:GetStringWidth())
|
||||
|
||||
if not f.health.curr then
|
||||
return
|
||||
end
|
||||
|
||||
local health_length = len(f.name.text) * (f.health.curr / f.health.max)
|
||||
f.name:SetText(utf8sub(f.name.text, 0, health_length) .. "|cff666666" .. utf8sub(f.name.text, health_length + 1))
|
||||
end
|
||||
local function HookSetName(f)
|
||||
orig_SetName = f.SetName
|
||||
f.SetName = nameonly_SetName
|
||||
end
|
||||
-- toggle name-only display mode
|
||||
local function UpdateNameOnly(f)
|
||||
if not mod.db.profile.enabled then
|
||||
return
|
||||
end
|
||||
|
||||
if f.kuiParent then
|
||||
-- resolve frame for oldHealth hook
|
||||
f = f.kuiParent.kui
|
||||
end
|
||||
|
||||
if (f.target or not f.friend) or (not mod.db.profile.display.ondamaged and f.health.curr < f.health.max) then
|
||||
SwitchOff(f)
|
||||
else
|
||||
SwitchOn(f)
|
||||
f:SetName()
|
||||
end
|
||||
end
|
||||
-- message listeners ###########################################################
|
||||
function mod:PostShow(msg, f)
|
||||
UpdateNameOnly(f)
|
||||
end
|
||||
function mod:PostHide(msg, f)
|
||||
SwitchOff(f)
|
||||
end
|
||||
function mod:PostCreate(msg, f)
|
||||
f.oldHealth:HookScript("OnValueChanged", UpdateNameOnly)
|
||||
f.nameonly_hooked = true
|
||||
|
||||
if self.db.profile.display.ondamaged and f.SetName ~= nameonly_SetName then
|
||||
HookSetName(f)
|
||||
end
|
||||
end
|
||||
function mod:PostTarget(msg, f)
|
||||
UpdateNameOnly(f)
|
||||
end
|
||||
-- post db change functions ####################################################
|
||||
local function UpdateFontSize()
|
||||
addon:RegisterFontSize("nameonly", tonumber(mod.db.profile.display.fontsize))
|
||||
addon:RegisterFontSize("nameonlyplayer", tonumber(mod.db.profile.display.fontsizeplayer))
|
||||
addon:RegisterFontSize("nameonlytrivial", tonumber(mod.db.profile.display.fontsizetrivial))
|
||||
end
|
||||
|
||||
mod:AddConfigChanged("enabled", function(v) mod:Toggle(v) end)
|
||||
mod:AddConfigChanged({"display", "ondamaged"}, nil, function(f)
|
||||
if not mod.db.profile.enabled then
|
||||
return
|
||||
elseif mod.configChangedFuncs.enabled.pf then
|
||||
mod.configChangedFuncs.enabled.pf(f, true)
|
||||
end
|
||||
end)
|
||||
mod:AddConfigChanged(
|
||||
{
|
||||
{"display", "fontsize"},
|
||||
{"display", "fontsizeplayer"},
|
||||
{"display", "fontsizetrivial"}
|
||||
},
|
||||
UpdateFontSize,
|
||||
function(f)
|
||||
if f.nameonly then
|
||||
UpdateDisplay(f)
|
||||
end
|
||||
end
|
||||
)
|
||||
mod:AddGlobalConfigChanged(
|
||||
"addon",
|
||||
{"fonts", "fontscale"},
|
||||
nil,
|
||||
function(f)
|
||||
if f.nameonly then
|
||||
UpdateDisplay(f)
|
||||
end
|
||||
end
|
||||
)
|
||||
-- initialise ##################################################################
|
||||
function mod:GetOptions()
|
||||
return {
|
||||
enabled = {
|
||||
type = "toggle",
|
||||
name = L["Only show name of friendly units"],
|
||||
desc = L["Change the layout of friendly nameplates so as to only show their names."],
|
||||
width = "double",
|
||||
order = 10
|
||||
},
|
||||
display = {
|
||||
type = "group",
|
||||
name = L["Display"],
|
||||
inline = true,
|
||||
order = 20,
|
||||
disabled = function()
|
||||
return not mod.db.profile.enabled
|
||||
end,
|
||||
args = {
|
||||
ondamaged = {
|
||||
type = "toggle",
|
||||
name = L["Even when damaged"],
|
||||
desc = L["Only show the name of damaged nameplates, too. Their name will be coloured as a percentage of health remaining."],
|
||||
order = 10
|
||||
},
|
||||
hidecastbars = {
|
||||
type = "toggle",
|
||||
name = L["Hide castbars"],
|
||||
desc = L["Hide castbars when in name-only display."],
|
||||
order = 20
|
||||
},
|
||||
fontsize = {
|
||||
type = "range",
|
||||
name = L["Font size"],
|
||||
desc = L['Font size used when in name-only display. This is affected by the standard "Font scale" option under "Fonts".'],
|
||||
order = 30,
|
||||
step = 1,
|
||||
min = 1,
|
||||
softMin = 1,
|
||||
softMax = 30,
|
||||
disabled = function() return addon.db.profile.fonts.options.onesize end
|
||||
},
|
||||
fontsizeplayer = {
|
||||
type = "range",
|
||||
name = L["Player font size"],
|
||||
order = 40,
|
||||
step = 1,
|
||||
min = 1,
|
||||
softMin = 1,
|
||||
softMax = 30,
|
||||
disabled = function() return addon.db.profile.fonts.options.onesize end
|
||||
},
|
||||
fontsizetrivial = {
|
||||
type = "range",
|
||||
name = L["Trivial font size"],
|
||||
order = 50,
|
||||
step = 1,
|
||||
min = 1,
|
||||
softMin = 1,
|
||||
softMax = 30,
|
||||
disabled = function() return addon.db.profile.fonts.options.onesize end
|
||||
}
|
||||
}
|
||||
},
|
||||
colours = {
|
||||
type = "group",
|
||||
name = L["NPC name colours"],
|
||||
inline = true,
|
||||
order = 30,
|
||||
disabled = function()
|
||||
return not mod.db.profile.enabled
|
||||
end,
|
||||
args = {
|
||||
friendly = {
|
||||
type = "color",
|
||||
name = L["Friendly"],
|
||||
order = 1
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
end
|
||||
function mod:configChangedListener()
|
||||
colour_friendly = self.db.profile.colours.friendly
|
||||
end
|
||||
function mod:OnInitialize()
|
||||
self.db = addon.db:RegisterNamespace(self.moduleName, {profile = {
|
||||
enabled = true,
|
||||
display = {
|
||||
ondamaged = false,
|
||||
hidecastbars = true,
|
||||
fontsize = 11,
|
||||
fontsizeplayer = 11,
|
||||
fontsizetrivial = 9
|
||||
},
|
||||
colours = {
|
||||
friendly = {.6, 1, 0.6}
|
||||
}
|
||||
}})
|
||||
|
||||
addon:InitModuleOptions(self)
|
||||
self:SetEnabledState(self.db.profile.enabled)
|
||||
end
|
||||
function mod:OnEnable()
|
||||
UpdateFontSize()
|
||||
|
||||
self:RegisterMessage("KuiNameplates_PostHide", "PostHide")
|
||||
self:RegisterMessage("KuiNameplates_PostShow", "PostShow")
|
||||
self:RegisterMessage("KuiNameplates_PostTarget", "PostTarget")
|
||||
self:RegisterMessage("KuiNameplates_PostCreate", "PostCreate")
|
||||
|
||||
for _, frame in pairs(addon.frameList) do
|
||||
if frame.kui then
|
||||
if not frame.kui.nameonly_hooked then
|
||||
self:PostCreate(nil, frame.kui)
|
||||
end
|
||||
|
||||
UpdateNameOnly(frame.kui)
|
||||
end
|
||||
end
|
||||
end
|
||||
function mod:OnDisable()
|
||||
self:UnregisterMessage("KuiNameplates_PostHide", "PostHide")
|
||||
self:UnregisterMessage("KuiNameplates_PostShow", "PostShow")
|
||||
self:UnregisterMessage("KuiNameplates_PostTarget", "PostTarget")
|
||||
self:UnregisterMessage("KuiNameplates_PostCreate", "PostCreate")
|
||||
|
||||
for _, frame in pairs(addon.frameList) do
|
||||
SwitchOff(frame.kui)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user