Browse Source

made event.lua work with the new restrictions on the scheduler and such

pull/1/head
XeonSquared 4 years ago
parent
commit
180a5a9a78
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      lib/event.lua

+ 2
- 5
lib/event.lua View File

@@ -23,16 +23,13 @@ function event.pull(t,...) -- return an event, optionally with timeout *t* and f
end

function event.listen(e,f) -- run function *f* for every occurance of event *e*
local op = os.getenv("parent")
os.setenv("parent",cPid)
os.spawn(function() while true do
local tEv = {coroutine.yield()}
if tEv[1] == e then
f(table.unpack(tEv))
end
if not tTasks[os.getenv("parent")] or (tEv[1] == "unlisten" and tEv[2] == e and tEv[3] == tostring(f)) then break end
end end,string.format("[%d] %s listener",cPid,e))
os.setenv("parent",op)
if not os.taskInfo(os.taskInfo().parent) or (tEv[1] == "unlisten" and tEv[2] == e and tEv[3] == tostring(f)) then break end
end end,string.format("[%d] %s listener",os.pid(),e))
end

function event.ignore(e,f) -- stop function *f* running for every occurance of event *e*


Loading…
Cancel
Save