Files
Yogstation/code/controllers/subsystem/timer.dm
2016-01-25 12:03:00 -06:00

84 lines
1.9 KiB
Plaintext

var/datum/subsystem/timer/SStimer
/datum/subsystem/timer
name = "Timer"
wait = 5
priority = 1
display = 3
var/list/datum/timedevent/processing
var/list/hashes
/datum/subsystem/timer/New()
NEW_SS_GLOBAL(SStimer)
processing = list()
hashes = list()
/datum/subsystem/timer/stat_entry(msg)
..("P:[processing.len]")
/datum/subsystem/timer/fire()
if(!processing.len)
can_fire = 0 //nothing to do, lets stop firing.
return
for(var/datum/timedevent/event in processing)
if(!event.thingToCall || qdeleted(event.thingToCall))
qdel(event)
if(event.timeToRun <= world.time)
runevent(event)
qdel(event)
/datum/subsystem/timer/proc/runevent(datum/timedevent/event)
set waitfor = 0
call(event.thingToCall, event.procToCall)(arglist(event.argList))
/datum/timedevent
var/thingToCall
var/procToCall
var/timeToRun
var/argList
var/id
var/hash
var/static/nextid = 1
/datum/timedevent/New()
id = nextid
nextid++
/datum/timedevent/Destroy()
SStimer.processing -= src
SStimer.hashes -= hash
return QDEL_HINT_IWILLGC
/proc/addtimer(thingToCall, procToCall, wait, unique = FALSE, ...)
if (!SStimer) //can't run timers before the mc has been created
return
if (!thingToCall || !procToCall || wait <= 0)
return
if (!SStimer.can_fire)
SStimer.can_fire = 1
SStimer.next_fire = world.time + SStimer.wait
var/datum/timedevent/event = new()
event.thingToCall = thingToCall
event.procToCall = procToCall
event.timeToRun = world.time + wait
event.hash = list2text(args)
if(args.len > 4)
event.argList = args.Copy(5)
// Check for dupes if unique = 1.
if(unique)
if(event.hash in SStimer.hashes)
return
// If we are unique (or we're not checking that), add the timer and return the id.
SStimer.processing += event
SStimer.hashes += event.hash
return event.id
/proc/deltimer(id)
for(var/datum/timedevent/event in SStimer.processing)
if(event.id == id)
qdel(event)
return 1
return 0