pulse_timer.tgz

Uploaded: 27 Dec, 2006
Previous uploads by this submitter: 0

Author: Justice

Downloads: 91

Code to handle delayed events in the mud. Internally uses a hashtable w/ ordered lists for efficiency.

C++/template based, with simple interface.

To add:
timer.push(value, delay);

To use:
timer.advance();
while((cur = timer.pop()))
{…}

Included:
timer.h (source)
readme.txt (detailed info)