Change all use of heroclass to use RAID_CLASS_COLORS instead. This can be changed to CUSTOM_CLASS_COLORS later with a color picker for each class, but to support CoA classes need to go back to being colored properly.

Fix remaining lua errors covered by ascension patches

Add Addon Skins
Add Enhanced Friends List
This commit is contained in:
Andrew6810
2022-10-28 07:12:13 -07:00
parent 60ef8a38af
commit df7cc26a64
205 changed files with 18480 additions and 35 deletions
@@ -0,0 +1,91 @@
local E, L, V, P, G = unpack(ElvUI)
local S = E:GetModule("Skins")
local AS = E:GetModule("AddOnSkins")
if not AS:IsAddonLODorEnabled("Carbonite") then return end
local pairs = pairs
local lshift = bit.lshift
-- Carbonite 3.34
S:AddCallbackForAddon("Carbonite", "Carbonite", function()
if not E.private.addOnSkins.Carbonite then return end
local function ColorConvert(r, g, b, a)
if not a then a = 1 end
local clr = r * 255
clr = lshift(clr, 8) + g * 255
clr = lshift(clr, 8) + b * 255
clr = lshift(clr, 8) + a * 255
return clr
end
local borderColor = ColorConvert(unpack(E.media.bordercolor))
local backdropColor = ColorConvert(unpack(E.media.backdropfadecolor))
local backdrop
if E.private.general.pixelPerfect then
backdrop = {
bgFile = E.media.blankTex,
edgeFile = E.media.blankTex,
tile = false, tileSize = 0, edgeSize = E.mult,
insets = {left = 0, right = 0, top = 0, bottom = 0}
}
else
backdrop = {
bgFile = E.media.blankTex,
edgeFile = E.media.blankTex,
tile = false, tileSize = 0, edgeSize = E.mult,
insets = {left = -E.mult, right = -E.mult, top = -E.mult, bottom = -E.mult}
}
end
Nx.Ski1["ElvUI"] = {
["Folder"] = "",
["WinBrH"] = "WinBrH",
["WinBrV"] = "WinBrV",
["TabOff"] = "TabOff",
["TabOn"] = "TabOn",
["Backdrop"] = backdrop,
["BdCol"] = borderColor,
["BgCol"] = backdropColor,
}
for i, v in ipairs(Nx.OpD) do
if v.N == "Skin" then
table.insert(Nx.OpD[i], {N = "ElvUI", F = "NXCmdSkin", Dat = "ElvUI"})
break
end
end
Nx.Tit.Frm:SetTemplate("Transparent")
for win in pairs(Nx.Win.Win2) do
win.Frm:SetTemplate("Transparent")
end
for men in pairs(Nx.Men.Men1) do
men.MaF:SetTemplate("Transparent")
end
S:RawHook(Nx.Win, "Cre", function(self, ...)
local win = S.hooks[self].Cre(self, ...)
win.Frm:SetTemplate("Transparent")
return win
end)
S:RawHook(Nx.Men, "Cre", function(self, ...)
local men = S.hooks[self].Cre(self, ...)
men.MaF:SetTemplate("Transparent")
return men
end)
S:RawHook(Nx.Ski, "GFSBGC", function(self)
return E.media.backdropfadecolor
end, true)
Nx.Ski:Set("ElvUI")
end)