/ShestakUI/Modules/Buffs/BuffFrame.lua

http://github.com/Shestak/ShestakUI · Lua · 155 lines · 128 code · 24 blank · 3 comment · 47 complexity · 8c3f69575ade3a2c336bb1d9ff9036e3 MD5 · raw file

  1. local T, C, L, _ = unpack(select(2, ...))
  2. if C.aura.player_auras ~= true then return end
  3. ----------------------------------------------------------------------------------------
  4. -- Style player buff(by Tukz)
  5. ----------------------------------------------------------------------------------------
  6. local rowbuffs = 16
  7. local GetFormattedTime = function(s)
  8. if s >= 86400 then
  9. return format("%dd", floor(s / 86400 + 0.5))
  10. elseif s >= 3600 then
  11. return format("%dh", floor(s / 3600 + 0.5))
  12. elseif s >= 60 then
  13. return format("%dm", floor(s / 60 + 0.5))
  14. end
  15. return floor(s + 0.5)
  16. end
  17. local BuffsAnchor = CreateFrame("Frame", "BuffsAnchor", UIParent)
  18. BuffsAnchor:SetPoint(unpack(C.position.player_buffs))
  19. BuffsAnchor:SetSize((15 * C.aura.player_buff_size) + 42, (C.aura.player_buff_size * 2) + 3)
  20. for i = 1, NUM_TEMP_ENCHANT_FRAMES do
  21. local buff = _G["TempEnchant"..i]
  22. local icon = _G["TempEnchant"..i.."Icon"]
  23. local border = _G["TempEnchant"..i.."Border"]
  24. local duration = _G["TempEnchant"..i.."Duration"]
  25. if border then border:Hide() end
  26. if i ~= 3 then
  27. buff:SetTemplate("Default")
  28. if C.aura.classcolor_border == true then
  29. buff:SetBackdropBorderColor(T.color.r, T.color.g, T.color.b)
  30. end
  31. end
  32. buff:SetSize(C.aura.player_buff_size, C.aura.player_buff_size)
  33. icon:SetTexCoord(0.1, 0.9, 0.1, 0.9)
  34. icon:SetPoint("TOPLEFT", buff, 2, -2)
  35. icon:SetPoint("BOTTOMRIGHT", buff, -2, 2)
  36. icon:SetDrawLayer("BORDER")
  37. duration:ClearAllPoints()
  38. duration:SetPoint("CENTER", 2, 1)
  39. duration:SetDrawLayer("ARTWORK")
  40. duration:SetFont(C.font.auras_font, C.font.auras_font_size, C.font.auras_font_style)
  41. duration:SetShadowOffset(C.font.auras_font_shadow and 1 or 0, C.font.auras_font_shadow and -1 or 0)
  42. _G["TempEnchant2"]:ClearAllPoints()
  43. _G["TempEnchant2"]:SetPoint("RIGHT", _G["TempEnchant1"], "LEFT", -3, 0)
  44. end
  45. local function StyleBuffs(buttonName, index)
  46. local buff = _G[buttonName..index]
  47. local icon = _G[buttonName..index.."Icon"]
  48. local border = _G[buttonName..index.."Border"]
  49. local duration = _G[buttonName..index.."Duration"]
  50. local count = _G[buttonName..index.."Count"]
  51. if border then border:Hide() end
  52. if icon and not buff.isSkinned then
  53. buff:SetTemplate("Default")
  54. if C.aura.classcolor_border == true then
  55. buff:SetBackdropBorderColor(T.color.r, T.color.g, T.color.b)
  56. end
  57. buff:SetSize(C.aura.player_buff_size, C.aura.player_buff_size)
  58. icon:SetTexCoord(0.1, 0.9, 0.1, 0.9)
  59. icon:SetPoint("TOPLEFT", buff, 2, -2)
  60. icon:SetPoint("BOTTOMRIGHT", buff, -2, 2)
  61. icon:SetDrawLayer("BORDER")
  62. duration:ClearAllPoints()
  63. duration:SetPoint("CENTER", 2, 1)
  64. duration:SetDrawLayer("ARTWORK")
  65. duration:SetFont(C.font.auras_font, C.font.auras_font_size, C.font.auras_font_style)
  66. duration:SetShadowOffset(C.font.auras_font_shadow and 1 or 0, C.font.auras_font_shadow and -1 or 0)
  67. count:ClearAllPoints()
  68. count:SetPoint("BOTTOMRIGHT", 2, 0)
  69. count:SetDrawLayer("ARTWORK")
  70. count:SetFont(C.font.auras_font, C.font.auras_font_size, C.font.auras_font_style)
  71. count:SetShadowOffset(C.font.auras_font_shadow and 1 or 0, C.font.auras_font_shadow and -1 or 0)
  72. buff.isSkinned = true
  73. end
  74. end
  75. local function UpdateFlash(self, elapsed)
  76. local index = self:GetID()
  77. self:SetAlpha(1)
  78. end
  79. local function UpdateDuration(auraButton, timeLeft)
  80. local duration = auraButton.duration
  81. if timeLeft and C.aura.show_timer == true then
  82. duration:SetFormattedText(GetFormattedTime(timeLeft))
  83. duration:SetVertexColor(1, 1, 1)
  84. duration:Show()
  85. else
  86. duration:Hide()
  87. end
  88. end
  89. local function UpdateBuffAnchors()
  90. local buttonName = "BuffButton"
  91. local buff, previousBuff, aboveBuff
  92. local numBuffs = 0
  93. local numAuraRows = 0
  94. local slack = BuffFrame.numEnchants
  95. local mainhand, _, _, offhand = GetWeaponEnchantInfo()
  96. for index = 1, BUFF_ACTUAL_DISPLAY do
  97. StyleBuffs(buttonName, index)
  98. local buff = _G[buttonName..index]
  99. numBuffs = numBuffs + 1
  100. index = numBuffs + slack
  101. buff:ClearAllPoints()
  102. if (index > 1) and (mod(index, rowbuffs) == 1) then
  103. numAuraRows = numAuraRows + 1
  104. buff:SetPoint("TOP", aboveBuff, "BOTTOM", 0, -3)
  105. aboveBuff = buff
  106. elseif index == 1 then
  107. numAuraRows = 1
  108. buff:SetPoint("TOPRIGHT", BuffsAnchor, "TOPRIGHT", 0, 0)
  109. else
  110. if numBuffs == 1 then
  111. if mainhand and offhand and not UnitHasVehicleUI("player") then
  112. buff:SetPoint("RIGHT", TempEnchant2, "LEFT", -3, 0)
  113. elseif ((mainhand and not offhand) or (offhand and not mainhand)) and not UnitHasVehicleUI("player") then
  114. buff:SetPoint("RIGHT", TempEnchant1, "LEFT", -3, 0)
  115. else
  116. buff:SetPoint("TOPRIGHT", BuffsAnchor, "TOPRIGHT", 0, 0)
  117. end
  118. else
  119. buff:SetPoint("RIGHT", previousBuff, "LEFT", -3, 0)
  120. end
  121. end
  122. previousBuff = buff
  123. end
  124. end
  125. local function UpdateDebuffAnchors(buttonName, index)
  126. _G[buttonName..index]:Hide()
  127. end
  128. hooksecurefunc("BuffFrame_UpdateAllBuffAnchors", UpdateBuffAnchors)
  129. hooksecurefunc("DebuffButton_UpdateAnchors", UpdateDebuffAnchors)
  130. hooksecurefunc("AuraButton_UpdateDuration", UpdateDuration)
  131. hooksecurefunc("AuraButton_OnUpdate", UpdateFlash)