if ( not LIB_OPEN_RAID_CAN_LOAD ) then
return
end
local openRaidLib = LibStub : GetLibrary ( " LibOpenRaid-1.0 " )
--comm prefix deprecated
openRaidLib.commPrefixDeprecated = {
}
local spamLimit = { }
local showDeprecatedMessage = function ( deprecatedCall , newCall )
local debugTrace = debugstack ( 3 , 1 , 1 )
if ( debugTrace : find ( " AddOns \\ WeakAuras " ) ) then
local auraName = debugTrace : gsub ( " %[string \" Error in: " , " " ) : gsub ( " ':'.* " , " " )
openRaidLib.DeprecatedMessage ( " |cFFEEEEEE " .. deprecatedCall .. " |r is deprecated|cFFEEEEEE, please use " .. newCall .. " \n From a weakaura named: " .. auraName .. " " )
else
debugTrace = debugTrace : gsub ( " %[.-%] " , " " )
debugTrace = debugTrace : gsub ( " \n " , " " )
openRaidLib.DeprecatedMessage ( " |cFFEEEEEE " .. deprecatedCall .. " |r is deprecated|cFFEEEEEE, please use " .. newCall .. " \n From line " .. debugTrace .. " " )
end
end
--deprecated: 'RequestAllPlayersInfo' has been replaced by 'RequestAllData'
function openRaidLib . RequestAllPlayersInfo ( )
if ( not spamLimit [ " openRaidLib.RequestAllData " ] ) then
spamLimit [ " openRaidLib.RequestAllData " ] = true
showDeprecatedMessage ( " openRaidLib.RequestAllPlayersInfo() " , " openRaidLib.RequestAllData() " )
end
end
--deprecated: 'playerInfoManager' has been replaced by 'UnitInfoManager'
openRaidLib.playerInfoManager = { }
local deprecatedMetatable = {
__newindex = function ( )
if ( not spamLimit [ " openRaidLib.UnitInfoManager " ] ) then
openRaidLib.DeprecatedMessage ( " openRaidLib.playerInfoManager table is deprecated, please use openRaidLib.UnitInfoManager. " )
showDeprecatedMessage ( " " , " " )
spamLimit [ " openRaidLib.UnitInfoManager " ] = true
end
return
end ,
__index = function ( t , key )
return rawget ( t , key ) or showDeprecatedMessage ( " openRaidLib.playerInfoManager " , " openRaidLib.UnitInfoManager " )
end ,
}
function openRaidLib . playerInfoManager . GetPlayerInfo ( )
if ( not spamLimit [ " openRaidLib.playerInfoManager.GetPlayerInfo " ] ) then
showDeprecatedMessage ( " openRaidLib.playerInfoManager.GetPlayerInfo(unitName) " , " openRaidLib.GetUnitInfo(unitId) " )
spamLimit [ " openRaidLib.playerInfoManager.GetPlayerInfo " ] = true
end
end
function openRaidLib . playerInfoManager . GetAllPlayersInfo ( )
if ( not spamLimit [ " openRaidLib.playerInfoManager.GetAllPlayersInfo " ] ) then
showDeprecatedMessage ( " openRaidLib.playerInfoManager.GetAllPlayersInfo() " , " openRaidLib.GetAllUnitsInfo() " )
spamLimit [ " openRaidLib.playerInfoManager.GetAllPlayersInfo " ] = true
end
end
setmetatable ( openRaidLib.playerInfoManager , deprecatedMetatable )
--deprecated: 'gearManager' has been replaced by 'GearManager'
openRaidLib.gearManager = { }
local deprecatedMetatable = {
__newindex = function ( )
if ( not spamLimit [ " openRaidLib.gearManager__newindex " ] ) then
showDeprecatedMessage ( " openRaidLib.gearManager " , " openRaidLib.GearManager " )
spamLimit [ " openRaidLib.gearManager__newindex " ] = true
end
return
end ,
__index = function ( t , key )
return rawget ( t , key ) or showDeprecatedMessage ( " openRaidLib.gearManager " , " openRaidLib.GearManager " )
end ,
}
function openRaidLib . gearManager . GetAllPlayersGear ( )
if ( not spamLimit [ " openRaidLib.gearManager.GetAllPlayersGear " ] ) then
showDeprecatedMessage ( " openRaidLib.gearManager.GetAllPlayersGear() " , " openRaidLib.GetAllUnitsGear() " )
spamLimit [ " openRaidLib.gearManager.GetAllPlayersGear " ] = true
end
end
function openRaidLib . gearManager . GetPlayerGear ( )
if ( not spamLimit [ " openRaidLib.gearManager.GetPlayerGear " ] ) then
showDeprecatedMessage ( " openRaidLib.gearManager.GetPlayerGear() " , " openRaidLib.GetUnitGear(unitId) " )
spamLimit [ " openRaidLib.gearManager.GetPlayerGear " ] = true
end
end
setmetatable ( openRaidLib.gearManager , deprecatedMetatable )
--deprecated: 'cooldownManager' has been replaced by 'CooldownManager'
openRaidLib.cooldownManager = { }
local deprecatedMetatable = {
__newindex = function ( )
if ( not spamLimit [ " openRaidLib.cooldownManager__newindex " ] ) then
showDeprecatedMessage ( " openRaidLib.cooldownManager " , " openRaidLib.CooldownManager " )
spamLimit [ " openRaidLib.cooldownManager__newindex " ] = true
end
return
end ,
__index = function ( t , key )
return rawget ( t , key ) or showDeprecatedMessage ( " openRaidLib.cooldownManager " , " openRaidLib.CooldownManager " )
end ,
}
function openRaidLib . cooldownManager . GetAllPlayersCooldown ( )
if ( not spamLimit [ " openRaidLib.cooldownManager.GetAllPlayersCooldown " ] ) then
showDeprecatedMessage ( " openRaidLib.cooldownManager.GetAllPlayersCooldown() " , " openRaidLib.GetAllUnitsCooldown() " )
spamLimit [ " openRaidLib.cooldownManager.GetAllPlayersCooldown " ] = true
end
end
function openRaidLib . cooldownManager . GetPlayerCooldowns ( )
if ( not spamLimit [ " openRaidLib.cooldownManager.GetPlayerCooldowns " ] ) then
showDeprecatedMessage ( " openRaidLib.cooldownManager.GetPlayerCooldowns() " , " openRaidLib.GetUnitCooldowns(unitId) " )
spamLimit [ " openRaidLib.cooldownManager.GetPlayerCooldowns " ] = true
end
end
setmetatable ( openRaidLib.cooldownManager , deprecatedMetatable )