You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
2.1 KiB

local GlobalAddonName, ExRT = ...
-- RELOAD UI short command
SLASH_RELOADUI1 = "/rl"
SlashCmdList["RELOADUI"] = ReloadUI
if ExRT.isClassic then
if not SpecializationSpecName then
CreateFrame("Frame"):CreateFontString("SpecializationSpecName")
end
end
if C_Spell and C_Spell.GetSpellInfo then --11.0
ExRT.F.GetSpellInfo = function(spellID)
if not spellID then
return nil;
end
local spellInfo = C_Spell.GetSpellInfo(spellID)
if spellInfo then
return spellInfo.name, nil, spellInfo.iconID, spellInfo.castTime, spellInfo.minRange, spellInfo.maxRange, spellInfo.spellID, spellInfo.originalIconID
end
end
ExRT.F.GetSpellCooldown = function(spellID)
local spellCooldownInfo = C_Spell.GetSpellCooldown(spellID)
if spellCooldownInfo then
return spellCooldownInfo.startTime, spellCooldownInfo.duration, spellCooldownInfo.isEnabled, spellCooldownInfo.modRate
end
end
local null_table_charges = {currentCharges = 0, maxCharges = 0, cooldownStartTime = 0, cooldownDuration = 0, chargeModRate = 0}
ExRT.F.GetSpellCharges = function(spellID)
local chargeInfo = C_Spell.GetSpellCharges(spellID) or null_table_charges
return chargeInfo.currentCharges, chargeInfo.maxCharges, chargeInfo.cooldownStartTime, chargeInfo.cooldownDuration
end
end
if C_SpecializationInfo and C_SpecializationInfo.GetTalentInfo then
--Interface/AddOns/Blizzard_DeprecatedSpecialization/Deprecated_Specialization_Mists.lua
ExRT.F.GetTalentInfoMoP = function(talentTier, talentColumn, specGroupIndex, isInspect, target)
local talentInfoQuery = {};
talentInfoQuery.tier = talentTier;
talentInfoQuery.column = talentColumn;
talentInfoQuery.groupIndex = specGroupIndex;
talentInfoQuery.isInspect = isInspect;
talentInfoQuery.target = target;
local talentInfo = C_SpecializationInfo.GetTalentInfo(talentInfoQuery);
if not talentInfo then
return nil;
end
return talentInfo.talentID, talentInfo.name, talentInfo.icon, talentInfo.selected,
talentInfo.available, talentInfo.spellID, talentInfo.isPVPTalentUnlocked, talentInfo.tier,
talentInfo.column, talentInfo.known, talentInfo.isGrantedByAura;
end
end