mirror of
https://github.com/Kiritow/OpenComputerScripts.git
synced 2024-03-22 13:10:46 +08:00
Add fallback code for WaitEvent
This commit is contained in:
parent
9d07e3fedf
commit
028d215107
36
libevent.lua
36
libevent.lua
|
@ -269,14 +269,40 @@ function RemoveEventListener(ListenerID)
|
||||||
return event.ignore(event.handlers[ListenerID].key,event.handlers[ListenerID].callback)
|
return event.ignore(event.handlers[ListenerID].key,event.handlers[ListenerID].callback)
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Usage: WaitEvent([timeout],[event name],[other filter value])
|
-- Usage: WaitEventEx([timeout],[event name],[other filter value])
|
||||||
-- Example: WaitEvent() WaitEvent(1) WaitEvent("touch") WaitEvent(1,"touch")
|
-- Example: WaitEventEx() WaitEventEx(1) WaitEventEx("touch") WaitEventEx(1,"touch")
|
||||||
-- WaitEvent("touch",nil,nil,"somebody")
|
-- WaitEventEx("touch",nil,nil,"somebody")
|
||||||
-- WaitEvent(1,"touch",nil,nil,"somebody")
|
-- WaitEventEx(1,"touch",nil,nil,"somebody")
|
||||||
function WaitEvent(...)
|
function WaitEventEx(...)
|
||||||
return TranslateEvent(table.pack(event.pull(...)))
|
return TranslateEvent(table.pack(event.pull(...)))
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Usage: WaitEvent([timeout],[event name]) or
|
||||||
|
-- WaitEvent([event name],[timeout]) -- Fallback usage
|
||||||
|
function WaitEvent(a,b)
|
||||||
|
if(a==nil) then
|
||||||
|
return WaitEventEx()
|
||||||
|
elseif(type(a)=="string") then
|
||||||
|
if(b==nil) then
|
||||||
|
return WaitEventEx(a)
|
||||||
|
elseif(type(b)=="number") then
|
||||||
|
return WaitEventEx(b,a)
|
||||||
|
else
|
||||||
|
error("Second param must be number or nil")
|
||||||
|
end
|
||||||
|
elseif(type(a)=="number") then
|
||||||
|
if(b==nil) then
|
||||||
|
return WaitEventEx(a)
|
||||||
|
elseif(type(b)=="string") then
|
||||||
|
return WaitEventEx(a,b)
|
||||||
|
else
|
||||||
|
error("Second param must be string or nil")
|
||||||
|
end
|
||||||
|
else
|
||||||
|
error("First param must be string or number or nil")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
-- Usage: WaitMultipleEvent([timeout],Event1,Event2,...)
|
-- Usage: WaitMultipleEvent([timeout],Event1,Event2,...)
|
||||||
function WaitMultipleEvent(...)
|
function WaitMultipleEvent(...)
|
||||||
-- event.pullMultiple will check the param
|
-- event.pullMultiple will check the param
|
||||||
|
|
Loading…
Reference in New Issue
Block a user