WoWInterface SVN CoolLine

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 42 to Rev 43
    Reverse comparison

Rev 42 → Rev 43

trunk/CoolLine/CoolLine.toc
2,7 → 2,7
## Title: CoolLine
## Notes: Shows cooldowns on a single bar.
## Author: TotalPackage
## Version: 6.0.001
## Version: 6.0.002
 
## SavedVariables: CoolLineDB
## SavedVariablesPerCharacter: CoolLineCharDB
12,5 → 12,8
## LoadManagers: AddonLoader
## X-LoadOn-Always: delayed
 
embeds.xml
libs\LibStub\LibStub.lua
libs\CallbackHandler-1.0\CallbackHandler-1.0.lua
libs\LibSharedMedia-3.0\LibSharedMedia-3.0.lua
 
core.lua
trunk/CoolLine/core.lua
425,19 → 425,26
 
do -- cache spells that have a cooldown
local GetSpellBookItemName, GetSpellBookItemInfo, GetSpellBaseCooldown = GetSpellBookItemName, GetSpellBookItemInfo, GetSpellBaseCooldown
local N_SEC_COOLDOWN = gsub(SPELL_RECAST_TIME_SEC, "%%%.3g", "(.+)")
local scantip = CreateFrame("GameTooltip")
for i = 1, 5 do
local L, R = scantip:CreateFontString(nil,nil,"GameFontNormal"), scantip:CreateFontString(nil,nil,"GameFontNormal")
scantip:AddFontStrings(L, R)
scantip[i] = R
end
local function CacheBook(btype)
local lastId, spellName
local lastId
local sb = spells[btype]
local _, _, offset, numSpells = GetSpellTabInfo(2)
for i = 1, offset + numSpells, 1 do
spellName = GetSpellBookItemName(i, btype)
local spellName = GetSpellBookItemName(i, btype)
if not spellName then break end
local slotType, spellId = GetSpellBookItemInfo(i, btype)
if spellId and slotType == "FLYOUT" then
local _, _, numSlots, isKnown = GetFlyoutInfo(spellId)
for fi = 1, ((isKnown and numSlots) or 0), 1 do
local flySpellId, _, _, flySpellName, _ = GetFlyoutSlotInfo(spellId, fi)
last = flySpellName
lastId = flySpellId
if flySpellId then
local flycd = GetSpellBaseCooldown(flySpellId)
if flycd and flycd > 2499 then
445,18 → 452,32
end
end
end
elseif spellId and slotType ~= "FUTURESPELL" and spellId ~= last then
last = spellId
local spellcd = GetSpellBaseCooldown(placeholder[spellId] or spellId)
if spellcd and spellcd > 2499 then
sb[spellId] = spellName
if specialspells[spellName] then
sb[ specialspells[spellName] ] = spellName
end
elseif spellId and slotType ~= "FUTURESPELL" and spellId ~= lastId then
lastId = spellId
local _, maxCharges = GetSpellCharges(spellId)
if maxCharges and maxCharges > 0 then
--print(i, spellName, spellID, "CHARGES", maxCharges)
chargespells[btype][spellId] = spellName
else
local currentCharges, maxCharges, cooldownStart, cooldownDuration = GetSpellCharges(spellId)
if maxCharges and maxCharges > 0 then
chargespells[btype][spellId] = spellName
local spellcd = GetSpellBaseCooldown(placeholder[spellId] or spellId)
if spellcd and spellcd > 2499 then
sb[spellId] = spellName
--print(i, spellName, spellID, "COOLDOWN", spellcd)
if specialspells[spellName] then
sb[ specialspells[spellName] ] = spellName
end
elseif spellName ~= GetSpellInfo(spellId) then
scantip:SetOwner(WorldFrame, "ANCHOR_NONE")
scantip:SetSpellBookItem(i, btype)
for j = 2, 3 do
local text = scantip[j]:GetText()
local spellcd = text and (tonumber(strmatch(text, N_SEC_COOLDOWN) or 0) * 1000)
if spellcd and spellcd > 2499 then
--print(i, spellName, spellID, "COOLDOWN", spellcd, "***")
sb[spellId] = spellName
end
end
scantip:Hide()
end
end
end
trunk/CoolLine Property changes : Added: wowi:dirname + CoolLine Added: svn:externals + svn://svn.wowace.com/wow/libstub/mainline/tags/1.0 libs/LibStub svn://svn.wowace.com/wow/callbackhandler/mainline/trunk/CallbackHandler-1.0 libs/CallbackHandler-1.0 svn://svn.wowace.com/wow/libsharedmedia-3-0/mainline/trunk/LibSharedMedia-3.0 libs/LibSharedMedia-3.0