Download
(59Kb)
Download
Updated: 05-29-09 07:16 AM
Pictures
File Info
Updated:05-29-09 07:16 AM
Created:10-27-08 06:48 AM
Downloads:56,893
Favorites:251
MD5:

CooldownWatch  Popular! (More than 5000 hits)

Version: 1.16a
by: Tifi [More]

Bad news, everyone: I quit WoW, my account expires on August 11th. So tick that "Load out of date AddOns" check box and hope for the best!
I just wanted to say thanks for using my AddOns and for all the support, feedback, bug reports, and kind words. Very much appreciated. Bye!


Description
Displays cooldowns of your spells, items or equipment slots. Every cooldown has an icon, the time left, an optional bar, and an optional, user-defined label ("trinket 1" for example).
I wrote this AddOn because I wanted to get rid of all those action buttons, taking up a big part of my screen. I use hotkeys for almost every spell I have, so I don't need buttons. After I hid all those buttons, I was missing two things: Range detection and cooldowns. This AddOn takes care of the cooldown part.

Features
- Speed: I have a slow computer, and I like optimizing code, so I designed the addon to be as fast as possible.
- Watches cooldowns of spells, items or equipment slots
- Fixed, user-defined order: I don't want my cooldowns sorted by time. If I need to know the cooldown of Taunt, I don't want to spend time looking for it, I need it to always be in the same place.
- Disable the bars: If you don't like bars (or want to make the addon run even faster), you can disable them. CooldownWatch will only display the icon and the time left.
- Auto-hide (optional): Hides the cooldown frame if the ability or item is off cooldown to save screen real estate.
- Customizable layout: You can change the bar texture, bar colors, the text color, and the font. Some of these features require SharedMediaLib/SharedMedia-1.0 (not included). Try the addon SharedMedia if you're interested.
You can also change the list layout, i.e. the order of the cooldowns in the list. The default is top to bottom, available options are bottom->top, left->right, right->left.
- Drag-and-drop interface: See below. Or just try it out.

Usage
Enter /cooldownwatch or /cw to toggle the config mode. A small anchor frame is visible if you're in config mode. CooldownWatch automatically activates the config mode if it runs for the first time on a toon. In config mode you can do the following:
Move the cooldown frames: Drag the anchor.
Add a cooldown: Drag and drop a spell or item to the anchor frame to add it at the end of the list.
Or drop it on another cooldown to insert it at that position, and use that cooldown's settings.
Note: If you drag an item from your bags, the item itself will be added as the cooldown. If you drag an item from your character frame, the equipment slot it came from will be watched. That way, you can watch for example the cooldowns of the trinkets you're currently wearing.
Remove a cooldown: Middle click the cooldown frame.
Reorder cooldowns: Drag the cooldown frame.
Access cooldown specific options: Right-click the cooldown frame.
Access global options: Right-click the anchor frame.

IMPORTANT: While you're in config mode, cooldowns won't get updated. You have to leave config mode in order to make cooldowns work.

Things you might be missing (ToDo list)
- Currently there's only one list of cooldowns. Maybe I will add multiple lists someday.

Features CooldownWatch doesn't have, and never will (NoDo list)
- Cooldowns of other players or mobs.
- Automatically add cooldowns.
- Automatic sorting.
- You can't change the format or graining of the time displayed. For example if the cooldown is 2h34m11s, CooldownWatch will display 3h (which means 3h or less) until it's less than 120m. At that point of time it will switch to minutes, and at less than 120s it will display seconds. It's unlikely that I'm going to change this.
- Localization of the config menus. I don't see a real need.

Bugs/Issues
- Drag and drop doesn't work for pet spells, not sure why they disabled this in WoW. Pet spells are not supported at the moment.
- If one spell triggers multiple cooldowns, the results may be unexpected, because CooldownWatch tries to avoid scanning all watched spell cooldowns. Let's say you're watching Shield Bash and Pummel: If you use Pummel, only the cooldown frame of Pummel will be updated. However, if you hide and show the interface (Alt-Z), or reload the UI, or exit config mode, CooldownWatch has to scan all watched cooldowns, and will detect that Shield Bash is on cooldown, too. There's no way for CooldownWatch to know that multiple spells share the same cooldown, unless I add all those combinations manually. Which I'm not going to do.

Notes
The main feature of CooldownWatch is speed. Cooldowns have to use OnUpdate code, which is executed in every frame, i.e. every time WoW redraws the screen.
Most timer addons update the text that displays the time left in every frame. The default interface also does this if you enable the display of buff/debuff duration. Let's say a cooldown has 15 minutes left, so for the next few minutes, the text will only change once per minute. Let's say you have a frame rate of 15fps, that's 900 frames per minute. That means 899 out of 900 times, updating the text is just wasting CPU, because the text won't change anyways. CooldownWatch, on the other hand, only updates the text when it's needed.
Another example: Let's say the cooldown bar has a width of 90 pixels. Again, other cooldown addons would update this bar every frame. For longer cooldowns, most of these updates won't actually change the bar, just waste CPU. It's 90 pixels, so the bar only needs 90 updates, which is exactly what CooldownWatch will do.
One more example: There's an option in CooldownWatch to disable the bar of a cooldown. Most addons would work like this: In every frame they would check if the cooldown has a bar, and update it if there is one. Checking for that bar is CPU overhead; the addon (and your frame rate) becomes a little slower, just because hiding the bar is optional. Most addons look up options in their database, which requires multiple table lookups. Now image you're a programmer. You would know beforehand if you want a bar or not. Since you're a programmer, you can write the code accordingly; you don't need to check if there's a bar or not, you just write the code to update the bar if there is one, or leave that code out, if there is no bar. CooldownWatch works exactly like this, it actually writes the code itself. That way, CooldownWatch can have optional features, without spending time on these checks.

As a small test, I compared CooldownWatch to the addons "Cooldown Timer Bars" and "Cooldown Bars 2.0" from curse. I configured them all to have bars of size 90x18. Then I triggered four cooldowns, and measured the CPU times for each addon with WoW's CPU profiling feature for 30s while all four cooldowns were still running.
CooldownBars 257.6ms
CooldownTimers2 99.2ms
CooldownWatch 15.4ms

1.16a
Bugfix: Item and equipment slot cooldowns cannot be unlearned anymore (e.g. Managems).
Bugfix: CooldownWatchConfig is not always loaded, only when entering config mode.
Bugfix: After learning a tracked cooldown talent, the frame is now initialized properly (auto-hide).

1.16
Added setting to adjust the spacing between bars.
Bugfix: The icon height equals the frame's height now.

1.15
Learning/unlearning talents will now show/hide the corresponding cooldown frames.
Bugfix: Unlearned spells are now initialized properly as collapsed.
TOC interface version bump to 3.1.

1.14b
New: Added option to toggle the Blizzard default icon border.

1.14a
Bugfix: If an ability comes off cooldown earlier (Readiness, Sword&Board, etc), the corresponding frame now resets properly.

1.14
New: The layout being mirrored (icons left, bars shrink from left to right)
is now optional, but still the default.

1.13
Bugfix: If the computer was running for more than 10 days, the addon would
stop working.

1.12
New slash command options:
/cw debug <level>: Sets the debug level, 3 is a good start.
/cw debug: Disables debugging.
/cw log: Shows an ugly frame to copy the debug output.
Ignore cooldowns that are triggered but not started (like Feign Death, Inner Focus, etc).

1.11
If the texture or font was not found (for example because the addon providing
it was deleted), revert do default.
Bugfix: If a cooldown started before the computer was booted, the remaining
time displayed was wrong. (Untested on Mac and Linux).
Bugfix: Faerie Fire (Feral) should work now.

1.10
Bugfix: Spells with a cooldown that doesn't start immediately should work
correctly now (like Inner Focus, but also potions in combat).

1.9
Fixed stuff for 3.0.
.toc version bump.
Added LibSharedMedia-3.0 as an optional dependency.
Removed Dongle.
Bugfix: If the addon was disabled, the anchor's position was reset.
Optional Files (0)


Post A Reply Comment Options
Unread 03-23-10, 05:36 PM  
Ascension346
A Kobold Labourer

Forum posts: 0
File comments: 3
Uploads: 0
3.3.3 appears to have broken this addon for me. I've never been able to find another addon that is even close to as good for what I need as this one, so if anyone knows how to fix it (or knows another addon that works similarly) I'd really appreciate the help.
Report comment to moderator  
Reply With Quote
Unread 03-02-10, 06:58 PM  
mornaistar
A Deviate Faerie Dragon
 
mornaistar's Avatar
AddOn Author - Click to view AddOns

Forum posts: 15
File comments: 49
Uploads: 2
i've packed all up and u can download it here:

http://www.wowinterface.com/download...ownWatch2.html

thanks for the fix
Report comment to moderator  
Reply With Quote
Unread 12-26-09, 10:30 AM  
Capricorn180
A Murloc Raider

Forum posts: 7
File comments: 4
Uploads: 0
Thanks for this, fixes for 3.3

Originally posted by Stijn
This seems to fix the error that appeared in 3.3 when logging in.
In CooldownWatch.lua replace
Code:
		if event == 'VARIABLES_LOADED' then
			CooldownWatch:Initialize()
			frame:UnregisterEvent('VARIABLES_LOADED')
with
Code:
		if event == 'ADDON_LOADED' and arg1 == 'CooldownWatch' then
			CooldownWatch:Initialize()
			CooldownWatchAnchor:RegisterEvent('PLAYER_TALENT_UPDATE')
			CooldownWatch:CheckTalents()
			frame:UnregisterEvent('ADDON_LOADED')
Also replace
Code:
	CooldownWatchAnchor:RegisterEvent('VARIABLES_LOADED')
with
Code:
	CooldownWatchAnchor:RegisterEvent('ADDON_LOADED')
Remove
Code:
	CooldownWatchAnchor:RegisterEvent('PLAYER_TALENT_UPDATE')
Report comment to moderator  
Reply With Quote
Unread 12-24-09, 08:20 PM  
Stijn
A Murloc Raider

Forum posts: 7
File comments: 14
Uploads: 0
This seems to fix the error that appeared in 3.3 when logging in.
In CooldownWatch.lua replace
Code:
		if event == 'VARIABLES_LOADED' then
			CooldownWatch:Initialize()
			frame:UnregisterEvent('VARIABLES_LOADED')
with
Code:
		if event == 'ADDON_LOADED' and arg1 == 'CooldownWatch' then
			CooldownWatch:Initialize()
			CooldownWatchAnchor:RegisterEvent('PLAYER_TALENT_UPDATE')
			CooldownWatch:CheckTalents()
			frame:UnregisterEvent('ADDON_LOADED')
Also replace
Code:
	CooldownWatchAnchor:RegisterEvent('VARIABLES_LOADED')
with
Code:
	CooldownWatchAnchor:RegisterEvent('ADDON_LOADED')
Remove
Code:
	CooldownWatchAnchor:RegisterEvent('PLAYER_TALENT_UPDATE')
Last edited by Stijn : 12-24-09 at 08:24 PM.
Report comment to moderator  
Reply With Quote
Unread 11-27-09, 06:12 AM  
Kogasu
A Kobold Labourer
 
Kogasu's Avatar

Forum posts: 0
File comments: 109
Uploads: 0
Excellent Add-On. Someone Please pick this up!
Report comment to moderator  
Reply With Quote
Unread 10-09-09, 01:36 PM  
Aruku
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Sadness!

After trying a lot of other cooldown addons, I always found this one to be the best bang for the very low CPU usage. I'm very sad to see it's not going to be updated anymore! Thanks for all the time of bringing this great addon to us though.
Report comment to moderator  
Reply With Quote
Unread 09-26-09, 05:01 PM  
uncaringbear
A Kobold Labourer

Forum posts: 1
File comments: 16
Uploads: 0
I'm so sad to see that this great addon will no longer be developed. It was one of the few addons that really nailed the functionality of what it was intended to do. Despite a few quirks, it did its job well. Thank you to the author for all the work on this addon.
Report comment to moderator  
Reply With Quote
Unread 08-16-09, 04:19 AM  
Zveroboi
A Murloc Raider

Forum posts: 5
File comments: 69
Uploads: 0
Hi!
1)Is it possible change icons height limit to 0-100?
2)Is it possible to make bars locked on ther current positions w/o grow? Make em binded to place plz coz keep eye on growing up(down) bar and looking for needed CD arent comfortable sometimes.
3)Any chansed make ButtonFocade support?

P.S oh fuck, this addon too?! wtf with all cd-tracink addons?! no CooldownButtons and CooldownWatch...how i can track my CD's now with all bars hiden?! ;(
__________________
Yes, my english = worst english ever...sry
Last edited by Zveroboi : 08-17-09 at 12:05 AM.
Report comment to moderator  
Reply With Quote
Unread 07-22-09, 01:10 AM  
ballagarba
A Fallenroot Satyr
 
ballagarba's Avatar

Forum posts: 22
File comments: 472
Uploads: 0
One more request, the ability to show the time with one decimal (i.e. 2.3s) when it's like less than 3s left or whatever.
Report comment to moderator  
Reply With Quote
Unread 07-15-09, 06:36 AM  
ballagarba
A Fallenroot Satyr
 
ballagarba's Avatar

Forum posts: 22
File comments: 472
Uploads: 0
Would it be possible to add a very basic support for adding custom icon borders? For example, just check for border.tga in CooldownWatch\ and use it, otherwise use the default?

Oh and a possibility to reverse everything. Like so (but not up-side-down, obviously ):

Last edited by ballagarba : 07-16-09 at 01:01 AM.
Report comment to moderator  
Reply With Quote
Unread 07-12-09, 05:24 AM  
p4aved
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
hidden cooldowns

i did a brief search of the comments and wasn't able to spot anything about this but I'm wondering if its at all possible for cooldownwatch to track internal/hidden cool downs?

for example eclipse has a 15s duration but a 30s internal cool down from when the buff procs (i think those numbers are correct).

anyway fantastic addon!
Report comment to moderator  
Reply With Quote
Unread 07-11-09, 10:23 PM  
Maldazzar
A Kobold Labourer

Forum posts: 0
File comments: 154
Uploads: 0
Originally posted by uncaringbear
Certain talents such as Multi-Shot and Aimed Shot share the same cooldown.

Is it possible to have these abilities show their cooldown if a linked talent has been used? For example, I have Aimed Shot on the cooldownwatch bars, but choose not to have Multi-Shot on the bars. If I use Multi-Shot, I would like to see the cooldown bar activated for Aimed Shot.
quoting this as something that would be incredibly useful
using this for hunter dps, i would prefer to not have to put freezing trap, frost trap, snake trap, freezing arrow and black arrow on the watch list just to keep track of one cooldown

an option to "link" spells would simplify everything a lot

if you'd like, i can provide you a full list of linked spells for all classes
Last edited by Maldazzar : 07-11-09 at 10:23 PM.
Report comment to moderator  
Reply With Quote
Unread 07-10-09, 01:13 PM  
Blauwmuts
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Feature request: configurable colours for each bar

This is a great addon. Thank you for making it.

I have one feature request: make it possible for each bar to have a different (configurable) colour. This way you can train yourself to watch the orange bar for Penance, and the blue bar for Prayer of Mending.
Report comment to moderator  
Reply With Quote
Unread 07-09-09, 09:51 PM  
ilovemrdoe
A Kobold Labourer

Forum posts: 0
File comments: 13
Uploads: 0
An option to have text over the bar instead on an icon would be nice (just so it matches up with my debuff timer abrs :P). Other than that this addon is excellent, exactly what I was looking for, a small non bloated addon to keep track of few cooldowns.

edit: just realised you can name a bar, so maybe just an option to hide the icon?
Last edited by ilovemrdoe : 07-09-09 at 09:55 PM.
Report comment to moderator  
Reply With Quote
Unread 07-03-09, 02:04 AM  
Promega
A Defias Bandit

Forum posts: 2
File comments: 4
Uploads: 0
Great looking mod. As a rogue I have to throw my voice in with those asking for a different list tied to primary and seconary specs as I swap between Killing Spree, Adrenaline Rush and Bladefurry while in combat PvE (or CB while muti 1 cd = lawl I know) and Shadow Step, Shadow Dance, prep and premed etc while subt PvP.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: