Adds processes, next step is to replace them in the current MC and ticker

This commit is contained in:
Graham Lloyd
2015-02-19 05:09:35 -05:00
parent 3acfc51c45
commit 8364c3de2d
17 changed files with 263 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/datum/controller/process/pipenet/setup()
name = "pipenet"
schedule_interval = 20 // every 2 seconds
/datum/controller/process/pipenet/doWork()
for(var/datum/pipe_network/pipeNetwork in pipe_networks)
if(istype(pipeNetwork) && !pipeNetwork.disposed)
pipeNetwork.process()
scheck()
continue
pipe_networks.Remove(pipeNetwork)