Initial dump of BfA compatibility

Updated for:
- SPELL_POWER_* constants becoming Enum.PowerType.*
- Rank no longer existing in return values for UnitAura, UnitBuff, UnitDebuff, UnitCastingInfo, UnitChannelInfo
- UNIT_POWER event becoming UNIT_POWER_UPDATE
- UnitPopupFrames no longer existing
- Removed events: PLAYER_PET_CHANGED, UNIT_MAXPOWER, PET_BAR_CHANGED, UNIT_DYNAMIC_FLAGS
- Texture return value from UnitAura type changing (name -> id)
- All Warlock specializations using soul shards
- Death Knight rune changes

Haven't tested all classes/specializations yet, so I'm sure I missed some stuff.
Probably need to add support for the new circular cooldown wipe flourish added in the base client.
Saw a problem with cooldown flashes being delayed on DK runes becoming available that probably need to be fixed.
This commit is contained in:
Parnic
2018-06-06 22:57:35 -05:00
parent 0f7a2ff4f1
commit 89ef91b9b3
31 changed files with 353 additions and 83 deletions

View File

@ -19,6 +19,11 @@ for _, v in ipairs(RtBBuffs) do
RtBSet[v] = true
end
local SPELL_POWER_COMBO_POINTS = SPELL_POWER_COMBO_POINTS
if IceHUD.WowVer >= 80000 then
SPELL_POWER_COMBO_POINTS = Enum.PowerType.ComboPoints
end
-- Constructor --
function RollTheBones.prototype:init()
RollTheBones.super.prototype.init(self, "RollTheBones", "player")
@ -43,7 +48,7 @@ function RollTheBones.prototype:Enable(core)
RollTheBones.super.prototype.Enable(self, core)
self:RegisterEvent("UNIT_AURA", "UpdateRollTheBones")
self:RegisterEvent("UNIT_POWER", "ComboPointsChanged")
self:RegisterEvent(IceHUD.UnitPowerEvent, "ComboPointsChanged")
if not self.moduleSettings.alwaysFullAlpha then
self:Show(false)
@ -59,7 +64,7 @@ function RollTheBones.prototype:Disable(core)
end
function RollTheBones.prototype:ComboPointsChanged(...)
if select('#', ...) >= 3 and select(1, ...) == "UNIT_POWER" and select(3, ...) ~= "COMBO_POINTS" then
if select('#', ...) >= 3 and select(1, ...) == IceHUD.UnitPowerEvent and select(3, ...) ~= "COMBO_POINTS" then
return
end
@ -212,8 +217,12 @@ end
function RollTheBones.prototype:GetBuffDuration(unitName, ids)
local i = 1
local buff, rank, texture, type, duration, endTime, remaining, spellId
buff, _, _, _, type, duration, endTime, _, _, _, spellId = UnitBuff(unitName, i)
local buff, _, type, duration, endTime, spellId
if IceHUD.WowVer < 80000 then
buff, _, _, _, type, duration, endTime, _, _, _, spellId = UnitBuff(unitName, i)
else
buff, _, _, type, duration, endTime, _, _, _, spellId = UnitBuff(unitName, i)
end
local realDuration, remaining, count
local now = GetTime()
@ -230,7 +239,11 @@ function RollTheBones.prototype:GetBuffDuration(unitName, ids)
i = i + 1;
buff, _, _, _, type, duration, endTime, _, _, _, spellId = UnitBuff(unitName, i)
if IceHUD.WowVer < 80000 then
buff, _, _, _, type, duration, endTime, _, _, _, spellId = UnitBuff(unitName, i)
else
buff, _, _, type, duration, endTime, _, _, _, spellId = UnitBuff(unitName, i)
end
end