mirror of
https://github.com/Kiritow/OpenComputerScripts.git
synced 2024-03-22 13:10:46 +08:00
47 lines
1.4 KiB
Lua
47 lines
1.4 KiB
Lua
drone=component.proxy(component.list("drone")())
|
|
drone.setStatusText("Drone v3.0")
|
|
modem=component.proxy(component.list("modem")())
|
|
modem.open(98)
|
|
handlers={}
|
|
handlers["modem_message"]={}
|
|
table.insert(handlers["modem_message"],function(event)
|
|
local sender=event[3]
|
|
local tag=event[6]
|
|
local cmd=event[7]
|
|
if(tag~=nil and cmd~=nil and tag=='execute_command') then
|
|
local ok,err=pcall(function()
|
|
local f=load(cmd)
|
|
local cmdok,cmdresult=pcall(f)
|
|
if(not cmdok) then
|
|
modem.send(sender,99,"Failed to execute: " .. cmdresult)
|
|
else
|
|
modem.send(sender,99,cmdresult)
|
|
end
|
|
end)
|
|
if(not ok) then
|
|
modem.send(sender,99,"Command Execute Failed: " .. err)
|
|
end
|
|
end
|
|
end)
|
|
handle_event=function(raw_event)
|
|
if(handlers[raw_event[1]]~=nil) then
|
|
for idx,callback in ipairs(handlers[raw_event[1]]) do
|
|
pcall(function()
|
|
callback(raw_event)
|
|
end)
|
|
end
|
|
end
|
|
end
|
|
sleep=function(sec)
|
|
local deadline=computer.uptime() + sec
|
|
while true do
|
|
local raw_event=table.pack(computer.pullSignal(deadline-computer.uptime()))
|
|
if(raw_event[1]==nil) then break
|
|
else handle_event(raw_event)
|
|
end
|
|
end
|
|
end
|
|
|
|
while true do
|
|
handle_event(table.pack(computer.pullSignal()))
|
|
end |