Skip to content

Commit 15976bf

Browse files
committed
13.55
2 parents 19808de + e96da96 commit 15976bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+835
-254
lines changed

ElvUI/Core/Modules/Blizzard/ColorPicker.lua ElvUI/Classic/Modules/Blizzard/ColorPicker.lua

+43-42
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ local tonumber, floor, strsub = tonumber, floor, strsub
1414
local CreateFrame = CreateFrame
1515
local IsControlKeyDown = IsControlKeyDown
1616
local IsModifierKeyDown = IsModifierKeyDown
17+
18+
local ColorPickerFrame = ColorPickerFrame
19+
1720
local CALENDAR_COPY_EVENT, CALENDAR_PASTE_EVENT = CALENDAR_COPY_EVENT, CALENDAR_PASTE_EVENT
1821
local CLASS, DEFAULT = CLASS, DEFAULT
1922

@@ -62,7 +65,7 @@ end
6265

6366
local function UpdateColorTexts(r, g, b, box)
6467
if not (r and g and b) then
65-
r, g, b = _G.ColorPickerFrame:GetColorRGB()
68+
r, g, b = ColorPickerFrame:GetColorRGB()
6669

6770
if box then
6871
if box == _G.ColorPPBoxH then
@@ -93,7 +96,7 @@ end
9396

9497
local function UpdateColor()
9598
local r, g, b = GetHexColor(_G.ColorPPBoxH)
96-
_G.ColorPickerFrame:SetColorRGB(r, g, b)
99+
ColorPickerFrame:SetColorRGB(r, g, b)
97100
_G.ColorSwatch:SetColorTexture(r, g, b)
98101
end
99102

@@ -129,7 +132,7 @@ local function onColorSelect(frame, r, g, b)
129132
if not frame:IsVisible() then
130133
delayCall()
131134
elseif not delayFunc then
132-
delayFunc = _G.ColorPickerFrame.func
135+
delayFunc = ColorPickerFrame.func
133136
E:Delay(delayWait, delayCall)
134137
end
135138
end
@@ -144,10 +147,10 @@ local function onValueChanged(_, value)
144147

145148
UpdateAlphaText(alpha)
146149

147-
if not _G.ColorPickerFrame:IsVisible() then
150+
if not ColorPickerFrame:IsVisible() then
148151
delayCall()
149152
else
150-
local opacityFunc = _G.ColorPickerFrame.opacityFunc
153+
local opacityFunc = ColorPickerFrame.opacityFunc
151154
if delayFunc and (delayFunc ~= opacityFunc) then
152155
delayFunc = opacityFunc
153156
elseif not delayFunc then
@@ -160,22 +163,20 @@ end
160163
function BL:EnhanceColorPicker()
161164
if E:IsAddOnEnabled('ColorPickerPlus') then return end
162165

163-
local Picker = _G.ColorPickerFrame
164-
165166
if E.Retail then
166-
Picker.Border:Hide()
167+
ColorPickerFrame.Border:Hide()
167168
end
168169

169-
local Header = Picker.Header or _G.ColorPickerFrameHeader
170+
local Header = ColorPickerFrame.Header or _G.ColorPickerFrameHeader
170171
Header:StripTextures()
171172
Header:ClearAllPoints()
172-
Header:Point('TOP', Picker, 0, 5)
173+
Header:Point('TOP', ColorPickerFrame, 0, 5)
173174

174175
_G.ColorPickerCancelButton:ClearAllPoints()
175176
_G.ColorPickerOkayButton:ClearAllPoints()
176-
_G.ColorPickerCancelButton:Point('BOTTOMRIGHT', Picker, 'BOTTOMRIGHT', -6, 6)
177-
_G.ColorPickerCancelButton:Point('BOTTOMLEFT', Picker, 'BOTTOM', 0, 6)
178-
_G.ColorPickerOkayButton:Point('BOTTOMLEFT', Picker,'BOTTOMLEFT', 6,6)
177+
_G.ColorPickerCancelButton:Point('BOTTOMRIGHT', ColorPickerFrame, 'BOTTOMRIGHT', -6, 6)
178+
_G.ColorPickerCancelButton:Point('BOTTOMLEFT', ColorPickerFrame, 'BOTTOM', 0, 6)
179+
_G.ColorPickerOkayButton:Point('BOTTOMLEFT', ColorPickerFrame,'BOTTOMLEFT', 6,6)
179180
_G.ColorPickerOkayButton:Point('RIGHT', _G.ColorPickerCancelButton,'LEFT', -4,0)
180181
S:HandleSliderFrame(_G.OpacitySliderFrame)
181182
S:HandleButton(_G.ColorPickerOkayButton)
@@ -186,9 +187,9 @@ function BL:EnhanceColorPicker()
186187
_G.OpacitySliderFrame:SetScript('OnValueChanged', onValueChanged)
187188

188189
-- Keep the colors updated
189-
Picker:SetScript('OnColorSelect', onColorSelect)
190+
ColorPickerFrame:SetScript('OnColorSelect', onColorSelect)
190191

191-
Picker:HookScript('OnShow', function(frame)
192+
ColorPickerFrame:HookScript('OnShow', function(frame)
192193
-- get color that will be replaced
193194
local r, g, b = frame:GetColorRGB()
194195
_G.ColorPPOldColorSwatch:SetColorTexture(r,g,b)
@@ -213,25 +214,25 @@ function BL:EnhanceColorPicker()
213214

214215
-- move the Color Swatch
215216
_G.ColorSwatch:ClearAllPoints()
216-
_G.ColorSwatch:Point('TOPLEFT', Picker, 'TOPLEFT', 215, -45)
217+
_G.ColorSwatch:Point('TOPLEFT', ColorPickerFrame, 'TOPLEFT', 215, -45)
217218
local swatchWidth, swatchHeight = _G.ColorSwatch:GetSize()
218219

219220
-- add Color Swatch for original color
220-
local originalColor = Picker:CreateTexture('ColorPPOldColorSwatch')
221+
local originalColor = ColorPickerFrame:CreateTexture('ColorPPOldColorSwatch')
221222
originalColor:Size(swatchWidth*0.75, swatchHeight*0.75)
222223
originalColor:SetColorTexture(0,0,0)
223224
-- OldColorSwatch to appear beneath ColorSwatch
224225
originalColor:SetDrawLayer('BORDER')
225226
originalColor:Point('BOTTOMLEFT', 'ColorSwatch', 'TOPRIGHT', -(swatchWidth*0.5), -(swatchHeight/3))
226227

227228
-- add Color Swatch for the copied color
228-
local copiedColor = Picker:CreateTexture('ColorPPCopyColorSwatch')
229+
local copiedColor = ColorPickerFrame:CreateTexture('ColorPPCopyColorSwatch')
229230
copiedColor:SetColorTexture(0,0,0)
230231
copiedColor:Size(swatchWidth, swatchHeight)
231232
copiedColor:Hide()
232233

233234
-- add copy button to the ColorPickerFrame
234-
local copyButton = CreateFrame('Button', 'ColorPPCopy', Picker, 'UIPanelButtonTemplate')
235+
local copyButton = CreateFrame('Button', 'ColorPPCopy', ColorPickerFrame, 'UIPanelButtonTemplate')
235236
copyButton:SetText(CALENDAR_COPY_EVENT)
236237
copyButton:Size(60, 22)
237238
copyButton:Point('TOPLEFT', 'ColorSwatch', 'BOTTOMLEFT', 0, -5)
@@ -240,34 +241,34 @@ function BL:EnhanceColorPicker()
240241
-- copy color into buffer on button click
241242
copyButton:SetScript('OnClick', function()
242243
-- copy current dialog colors into buffer
243-
colorBuffer.r, colorBuffer.g, colorBuffer.b = Picker:GetColorRGB()
244+
colorBuffer.r, colorBuffer.g, colorBuffer.b = ColorPickerFrame:GetColorRGB()
244245

245246
-- enable Paste button and display copied color into swatch
246247
_G.ColorPPPaste:Enable()
247248
_G.ColorPPCopyColorSwatch:SetColorTexture(colorBuffer.r, colorBuffer.g, colorBuffer.b)
248249
_G.ColorPPCopyColorSwatch:Show()
249250

250-
colorBuffer.a = (Picker.hasOpacity and _G.OpacitySliderFrame:GetValue()) or nil
251+
colorBuffer.a = (ColorPickerFrame.hasOpacity and _G.OpacitySliderFrame:GetValue()) or nil
251252
end)
252253

253254
-- class color button
254-
local classButton = CreateFrame('Button', 'ColorPPClass', Picker, 'UIPanelButtonTemplate')
255+
local classButton = CreateFrame('Button', 'ColorPPClass', ColorPickerFrame, 'UIPanelButtonTemplate')
255256
classButton:SetText(CLASS)
256257
classButton:Size(80, 22)
257258
classButton:Point('TOP', 'ColorPPCopy', 'BOTTOMRIGHT', 0, -7)
258259
S:HandleButton(classButton)
259260

260261
classButton:SetScript('OnClick', function()
261262
local color = E:ClassColor(E.myclass, true)
262-
Picker:SetColorRGB(color.r, color.g, color.b)
263+
ColorPickerFrame:SetColorRGB(color.r, color.g, color.b)
263264
_G.ColorSwatch:SetColorTexture(color.r, color.g, color.b)
264-
if Picker.hasOpacity then
265+
if ColorPickerFrame.hasOpacity then
265266
_G.OpacitySliderFrame:SetValue(0)
266267
end
267268
end)
268269

269270
-- add paste button to the ColorPickerFrame
270-
local pasteButton = CreateFrame('Button', 'ColorPPPaste', Picker, 'UIPanelButtonTemplate')
271+
local pasteButton = CreateFrame('Button', 'ColorPPPaste', ColorPickerFrame, 'UIPanelButtonTemplate')
271272
pasteButton:SetText(CALENDAR_PASTE_EVENT)
272273
pasteButton:Size(60, 22)
273274
pasteButton:Point('TOPLEFT', 'ColorPPCopy', 'TOPRIGHT', 2, 0)
@@ -276,17 +277,17 @@ function BL:EnhanceColorPicker()
276277

277278
-- paste color on button click, updating frame components
278279
pasteButton:SetScript('OnClick', function()
279-
Picker:SetColorRGB(colorBuffer.r, colorBuffer.g, colorBuffer.b)
280+
ColorPickerFrame:SetColorRGB(colorBuffer.r, colorBuffer.g, colorBuffer.b)
280281
_G.ColorSwatch:SetColorTexture(colorBuffer.r, colorBuffer.g, colorBuffer.b)
281-
if Picker.hasOpacity then
282+
if ColorPickerFrame.hasOpacity then
282283
if colorBuffer.a then --color copied had an alpha value
283284
_G.OpacitySliderFrame:SetValue(colorBuffer.a)
284285
end
285286
end
286287
end)
287288

288289
-- add defaults button to the ColorPickerFrame
289-
local defaultButton = CreateFrame('Button', 'ColorPPDefault', Picker, 'UIPanelButtonTemplate')
290+
local defaultButton = CreateFrame('Button', 'ColorPPDefault', ColorPickerFrame, 'UIPanelButtonTemplate')
290291
defaultButton:SetText(DEFAULT)
291292
defaultButton:Size(80, 22)
292293
defaultButton:Point('TOPLEFT', 'ColorPPClass', 'BOTTOMLEFT', 0, -7)
@@ -298,9 +299,9 @@ function BL:EnhanceColorPicker()
298299
-- paste color on button click, updating frame components
299300
defaultButton:SetScript('OnClick', function(btn)
300301
local colors = btn.colors
301-
Picker:SetColorRGB(colors.r, colors.g, colors.b)
302+
ColorPickerFrame:SetColorRGB(colors.r, colors.g, colors.b)
302303
_G.ColorSwatch:SetColorTexture(colors.r, colors.g, colors.b)
303-
if Picker.hasOpacity then
304+
if ColorPickerFrame.hasOpacity then
304305
if colors.a then
305306
_G.OpacitySliderFrame:SetValue(colors.a)
306307
end
@@ -317,7 +318,7 @@ function BL:EnhanceColorPicker()
317318

318319
-- set up edit box frames and interior label and text areas
319320
for i, rgb in next, { 'R', 'G', 'B', 'H', 'A' } do
320-
local box = CreateFrame('EditBox', 'ColorPPBox'..rgb, Picker, 'InputBoxTemplate')
321+
local box = CreateFrame('EditBox', 'ColorPPBox'..rgb, ColorPickerFrame, 'InputBoxTemplate')
321322
box:Point('TOP', 'ColorPickerWheel', 'BOTTOM', 0, -15)
322323
box:SetFrameStrata('DIALOG')
323324
box:SetAutoFocus(false)
@@ -390,20 +391,20 @@ function BL:EnhanceColorPicker()
390391
_G.ColorPPBoxB:SetScript('OnTabPressed', function() _G.ColorPPBoxH:SetFocus() end)
391392
_G.ColorPPBoxA:SetScript('OnTabPressed', function() _G.ColorPPBoxR:SetFocus() end)
392393

393-
-- make the color picker movable.
394-
local mover = CreateFrame('Frame', nil, Picker)
395-
mover:Point('TOPLEFT', Picker, 'TOP', -60, 0)
396-
mover:Point('BOTTOMRIGHT', Picker, 'TOP', 60, -15)
397-
mover:SetScript('OnMouseDown', function() Picker:StartMoving() end)
398-
mover:SetScript('OnMouseUp', function() Picker:StopMovingOrSizing() end)
394+
-- make the color ColorPickerFrame movable.
395+
local mover = CreateFrame('Frame', nil, ColorPickerFrame)
396+
mover:Point('TOPLEFT', ColorPickerFrame, 'TOP', -60, 0)
397+
mover:Point('BOTTOMRIGHT', ColorPickerFrame, 'TOP', 60, -15)
398+
mover:SetScript('OnMouseDown', function() ColorPickerFrame:StartMoving() end)
399+
mover:SetScript('OnMouseUp', function() ColorPickerFrame:StopMovingOrSizing() end)
399400
mover:EnableMouse(true)
400401

401402
-- make the frame a bit taller, to make room for edit boxes
402-
Picker:Height(Picker:GetHeight() + 40)
403+
ColorPickerFrame:Height(ColorPickerFrame:GetHeight() + 40)
403404

404405
-- skin the frame
405-
Picker:SetTemplate('Transparent')
406-
Picker:SetClampedToScreen(true)
407-
Picker:SetUserPlaced(true)
408-
Picker:EnableKeyboard(false)
406+
ColorPickerFrame:SetTemplate('Transparent')
407+
ColorPickerFrame:SetClampedToScreen(true)
408+
ColorPickerFrame:SetUserPlaced(true)
409+
ColorPickerFrame:EnableKeyboard(false)
409410
end
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
<Ui xmlns='http://www.blizzard.com/wow/ui/'>
2+
<Script file='ColorPicker.lua'/>
23
<Script file='..\..\..\Core\Modules\Blizzard\QuestWatch.lua'/>
34
</Ui>

ElvUI/Classic/Modules/Skins/Misc.lua

+5
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ function S:BlizzardMiscFrames()
4545
_G.ReadyCheckFrameText:ClearAllPoints()
4646
_G.ReadyCheckFrameText:Point('TOP', 0, -15)
4747

48+
_G.PVPReadyDialog:StripTextures()
49+
_G.PVPReadyDialog:SetTemplate('Transparent')
50+
S:HandleButton(_G.PVPReadyDialogEnterBattleButton)
51+
S:HandleButton(_G.PVPReadyDialogHideButton)
52+
4853
_G.ReadyCheckListenerFrame:SetAlpha(0)
4954
ReadyCheckFrame:HookScript('OnShow', FixReadyCheckFrame)
5055

ElvUI/Core/General/API.lua

+15-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ local IsXPUserDisabled = IsXPUserDisabled
3131
local RequestBattlefieldScoreData = RequestBattlefieldScoreData
3232
local UIParent = UIParent
3333
local UIParentLoadAddOn = UIParentLoadAddOn
34-
local UnitAura = UnitAura
3534
local UnitFactionGroup = UnitFactionGroup
3635
local UnitGroupRolesAssigned = UnitGroupRolesAssigned
3736
local UnitHasVehicleUI = UnitHasVehicleUI
@@ -41,6 +40,10 @@ local UnitIsMercenary = UnitIsMercenary
4140
local UnitIsPlayer = UnitIsPlayer
4241
local UnitIsUnit = UnitIsUnit
4342

43+
local GetAuraDataByIndex = C_UnitAuras and C_UnitAuras.GetAuraDataByIndex
44+
local UnpackAuraData = AuraUtil and AuraUtil.UnpackAuraData
45+
local UnitAura = UnitAura
46+
4447
local GetSpecialization = (E.Classic or E.Wrath) and LCS.GetSpecialization or GetSpecialization
4548
local GetSpecializationInfo = (E.Classic or E.Wrath) and LCS.GetSpecializationInfo or GetSpecializationInfo
4649

@@ -275,6 +278,14 @@ do
275278
end
276279

277280
do
281+
function E:GetAuraData(unitToken, index, filter)
282+
if E.Retail then
283+
return UnpackAuraData(GetAuraDataByIndex(unitToken, index, filter))
284+
else
285+
return UnitAura(unitToken, index, filter)
286+
end
287+
end
288+
278289
local function FindAura(key, value, unit, index, filter, ...)
279290
local name, _, _, _, _, _, _, _, _, spellID = ...
280291

@@ -286,16 +297,16 @@ do
286297
return ...
287298
else
288299
index = index + 1
289-
return FindAura(key, value, unit, index, filter, UnitAura(unit, index, filter))
300+
return FindAura(key, value, unit, index, filter, E:GetAuraData(unit, index, filter))
290301
end
291302
end
292303

293304
function E:GetAuraByID(unit, spellID, filter)
294-
return FindAura('spellID', spellID, unit, 1, filter, UnitAura(unit, 1, filter))
305+
return FindAura('spellID', spellID, unit, 1, filter, E:GetAuraData(unit, 1, filter))
295306
end
296307

297308
function E:GetAuraByName(unit, name, filter)
298-
return FindAura('name', name, unit, 1, filter, UnitAura(unit, 1, filter))
309+
return FindAura('name', name, unit, 1, filter, E:GetAuraData(unit, 1, filter))
299310
end
300311
end
301312

ElvUI/Core/General/Core.lua

+13-2
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,22 @@ function E:GrabColorPickerValues(r, g, b)
195195
local oldR, oldG, oldB = _G.ColorPickerFrame:GetColorRGB()
196196

197197
-- set and define the new values
198-
_G.ColorPickerFrame:SetColorRGB(r or 1, g or 1, b or 1)
198+
if E.Retail then
199+
_G.ColorPickerFrame.Content.ColorPicker:SetColorRGB(r or 1, g or 1, b or 1)
200+
else
201+
_G.ColorPickerFrame:SetColorRGB(r or 1, g or 1, b or 1)
202+
end
203+
199204
r, g, b = _G.ColorPickerFrame:GetColorRGB()
200205

201206
-- swap back to the old values
202-
if oldR then _G.ColorPickerFrame:SetColorRGB(oldR, oldG, oldB) end
207+
if oldR then
208+
if E.Retail then
209+
_G.ColorPickerFrame.Content.ColorPicker:SetColorRGB(oldR, oldG, oldB)
210+
else
211+
_G.ColorPickerFrame:SetColorRGB(oldR, oldG, oldB)
212+
end
213+
end
203214

204215
-- free it up..
205216
_G.ColorPickerFrame.noColorCallback = nil

ElvUI/Core/General/Fonts.lua

+1
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ function E:UpdateBlizzardFonts()
246246
E:SetFont(_G.QuestFont_Larger, NORMAL, (blizz and 16) or unscale or big) -- Wrath
247247
E:SetFont(_G.SystemFont_Large, NORMAL, (blizz and 16) or unscale or big)
248248
E:SetFont(_G.SystemFont_Shadow_Large, NORMAL, (blizz and 16) or unscale or big, 'SHADOW')
249+
E:SetFont(_G.SystemFont16_Shadow_ThickOutline, NORMAL, (blizz and 16) or unscale or big, outline) -- Talent & Profession SpendText
249250
E:SetFont(_G.Game18Font, NORMAL, (blizz and 18) or unscale or big) -- MissionUI Bonus Chance
250251
E:SetFont(_G.GameFontNormalLarge2, NORMAL, (blizz and 18) or unscale or big, 'SHADOW') -- Garrison Follower Names
251252
E:SetFont(_G.QuestFont_Huge, NORMAL, (blizz and 18) or unscale or big) -- Quest rewards title, Rewards

ElvUI/Core/General/Tags.lua

+4-3
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ local UnitPVPRank = UnitPVPRank
6262
local UnitReaction = UnitReaction
6363
local UnitSex = UnitSex
6464
local UnitStagger = UnitStagger
65+
local UnitInPartyIsAI = UnitInPartyIsAI
6566

6667
local GetUnitPowerBarTextureInfo = GetUnitPowerBarTextureInfo
6768
local C_PetJournal_GetPetTeamAverageLevel = C_PetJournal and C_PetJournal.GetPetTeamAverageLevel
@@ -556,7 +557,7 @@ E:AddTag('selectioncolor', 'UNIT_NAME_UPDATE UNIT_FACTION INSTANCE_ENCOUNTER_ENG
556557
end)
557558

558559
E:AddTag('classcolor', 'UNIT_NAME_UPDATE UNIT_FACTION INSTANCE_ENCOUNTER_ENGAGE_UNIT', function(unit)
559-
if UnitIsPlayer(unit) then
560+
if UnitIsPlayer(unit) or (E.Retail and UnitInPartyIsAI(unit)) then
560561
local _, unitClass = UnitClass(unit)
561562
local cs = ElvUF.colors.class[unitClass]
562563
return (cs and Hex(cs.r, cs.g, cs.b)) or '|cFFcccccc'
@@ -787,7 +788,7 @@ E:AddTag('arena:number', 'UNIT_NAME_UPDATE', function(unit)
787788
end)
788789

789790
E:AddTag('class', 'UNIT_NAME_UPDATE', function(unit)
790-
if not UnitIsPlayer(unit) then return end
791+
if not (UnitIsPlayer(unit) or (E.Retail and UnitInPartyIsAI(unit))) then return end
791792

792793
local _, classToken = UnitClass(unit)
793794
if UnitSex(unit) == 3 then
@@ -1237,7 +1238,7 @@ do
12371238
}
12381239

12391240
E:AddTag('class:icon', 'PLAYER_TARGET_CHANGED', function(unit)
1240-
if not UnitIsPlayer(unit) then return end
1241+
if not (UnitIsPlayer(unit) or (E.Retail and UnitInPartyIsAI(unit))) then return end
12411242

12421243
local _, class = UnitClass(unit)
12431244
local icon = classIcons[class]

ElvUI/Core/General/Toolkit.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -535,14 +535,14 @@ local function addapi(object)
535535
if mk.SetTexCoord then hooksecurefunc(mk, 'SetTexCoord', DisablePixelSnap) end
536536
if mk.SetTexture then hooksecurefunc(mk, 'SetTexture', DisablePixelSnap) end
537537

538-
if E.Wrath and mk.SetStatusBarTexture then
538+
if not E.Classic and mk.SetStatusBarTexture then
539539
hooksecurefunc(mk, 'SetStatusBarTexture', DisablePixelSnap)
540540
end
541541

542542
mk.DisabledPixelSnap = true
543543
end
544544

545-
if not E.Wrath and not object.fixTheStatusBarsPlease and mk.SetStatusBarTexture then
545+
if E.Classic and not object.fixTheStatusBarsPlease and mk.SetStatusBarTexture then
546546
hooksecurefunc(mk, 'SetValue', FixMinCurDuringValue)
547547
hooksecurefunc(mk, 'SetStatusBarTexture', FixMinCurDuringTexture)
548548

0 commit comments

Comments
 (0)