Files
pfUI/modules/uf_tukui.lua
T

73 lines
3.8 KiB
Lua

pfUI:RegisterModule("uf_tukui", function ()
-- do not go further on disabled UFs
if C.unitframes.disable == "1" then return end
local default_border = C.appearance.border.default
if C.appearance.border.unitframes ~= "-1" then
default_border = C.appearance.border.unitframes
end
local pspacing = C.unitframes.player.pspace
local tspacing = C.unitframes.target.pspace
if C.unitframes.layout == "tukui" then
-- Player
pfUI.uf.player:UpdateFrameSize()
pfUI.uf.player:SetFrameStrata("LOW")
pfUI.uf.player:SetHeight(pfUI.uf.player:GetHeight() + 2*default_border + C.global.font_size + 2*default_border + pspacing)
pfUI.uf.player.caption = CreateFrame("Frame", "pfPlayerCaption", pfUI.uf.player)
pfUI.uf.player.caption:SetHeight(C.global.font_size + 2*default_border)
pfUI.uf.player.caption:SetPoint("BOTTOMRIGHT",pfUI.uf.player, "BOTTOMRIGHT",0, 0)
pfUI.uf.player.caption:SetPoint("BOTTOMLEFT",pfUI.uf.player, "BOTTOMLEFT",0, 0)
pfUI.uf.player.hpLeftText:SetParent(pfUI.uf.player.caption)
pfUI.uf.player.hpLeftText:ClearAllPoints()
pfUI.uf.player.hpLeftText:SetPoint("TOPLEFT",pfUI.uf.player.caption, "TOPLEFT", default_border, 1)
pfUI.uf.player.hpLeftText:SetPoint("BOTTOMRIGHT",pfUI.uf.player.caption, "BOTTOMRIGHT", -default_border, 0)
pfUI.uf.player.hpCenterText:SetParent(pfUI.uf.player.caption)
pfUI.uf.player.hpCenterText:ClearAllPoints()
pfUI.uf.player.hpCenterText:SetPoint("TOPLEFT",pfUI.uf.player.caption, "TOPLEFT", default_border, 1)
pfUI.uf.player.hpCenterText:SetPoint("BOTTOMRIGHT",pfUI.uf.player.caption, "BOTTOMRIGHT", -default_border, 0)
pfUI.uf.player.hpRightText:SetParent(pfUI.uf.player.caption)
pfUI.uf.player.hpRightText:ClearAllPoints()
pfUI.uf.player.hpRightText:SetPoint("TOPLEFT",pfUI.uf.player.caption, "TOPLEFT", default_border, 1)
pfUI.uf.player.hpRightText:SetPoint("BOTTOMRIGHT",pfUI.uf.player.caption, "BOTTOMRIGHT", -default_border, 0)
pfUI.castbar.player:SetAllPoints(pfUI.uf.player.caption)
UpdateMovable(pfUI.castbar.player)
CreateBackdrop(pfUI.uf.player.caption, default_border)
-- Target
pfUI.uf.target:UpdateFrameSize()
pfUI.uf.target:SetFrameStrata("LOW")
pfUI.uf.target:SetHeight(pfUI.uf.target:GetHeight() + 2*default_border + C.global.font_size + 2*default_border + tspacing)
pfUI.uf.target.caption = CreateFrame("Frame", "pfTargetCaption", pfUI.uf.target)
pfUI.uf.target.caption:SetHeight(C.global.font_size + 2*default_border)
pfUI.uf.target.caption:SetPoint("BOTTOMRIGHT",pfUI.uf.target,"BOTTOMRIGHT", 0, 0)
pfUI.uf.target.caption:SetPoint("BOTTOMLEFT",pfUI.uf.target,"BOTTOMLEFT", 0, 0)
pfUI.uf.target.hpLeftText:SetParent(pfUI.uf.target.caption)
pfUI.uf.target.hpLeftText:ClearAllPoints()
pfUI.uf.target.hpLeftText:SetPoint("TOPLEFT",pfUI.uf.target.caption, "TOPLEFT", default_border, 1)
pfUI.uf.target.hpLeftText:SetPoint("BOTTOMRIGHT",pfUI.uf.target.caption, "BOTTOMRIGHT", -default_border, 0)
pfUI.uf.target.hpCenterText:SetParent(pfUI.uf.target.caption)
pfUI.uf.target.hpCenterText:ClearAllPoints()
pfUI.uf.target.hpCenterText:SetPoint("TOPLEFT",pfUI.uf.target.caption, "TOPLEFT", default_border, 1)
pfUI.uf.target.hpCenterText:SetPoint("BOTTOMRIGHT",pfUI.uf.target.caption, "BOTTOMRIGHT", -default_border, 0)
pfUI.uf.target.hpRightText:SetParent(pfUI.uf.target.caption)
pfUI.uf.target.hpRightText:ClearAllPoints()
pfUI.uf.target.hpRightText:SetPoint("TOPLEFT",pfUI.uf.target.caption, "TOPLEFT", default_border, 1)
pfUI.uf.target.hpRightText:SetPoint("BOTTOMRIGHT",pfUI.uf.target.caption, "BOTTOMRIGHT", -default_border, 0)
pfUI.castbar.target:SetAllPoints(pfUI.uf.target.caption)
UpdateMovable(pfUI.castbar.target)
CreateBackdrop(pfUI.uf.target.caption, default_border)
end
end)