Advertisement
Guest User

obopresence-robot.lua

a guest
Sep 28th, 2014
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.92 KB | None | 0 0
  1. local component = require("component")
  2. local robot = require("robot")
  3. local event = require("event")
  4. local server = component.tunnel
  5.  
  6. function handleCommand(command, arguments)
  7.   print(command.."("..arguments..")")
  8.   if command == "forward" then
  9.     return tostring(robot.forward())
  10.   elseif command == "turnLeft" then
  11.     return tostring(robot.turnLeft())
  12.   end
  13.   return ""
  14. end
  15.  
  16. server.send("online")
  17. print("Waiting for server response.")
  18. local _, _, _, _, distance, response = event.pull("modem_message", server.address)
  19. print("Recieved response: "..response.." from "..distance)
  20. local lastCommand = ""
  21. local lastArguments = ""
  22. while true do
  23.   local _, _, _, _, _, command, arguments = event.pull("modem_message", server.address)
  24.   if command ~= lastCommand and arguments ~= lastArguments then
  25.     lastCommand = command
  26.     lastArguments = arguments
  27.     server.send(handleCommand(command, arguments))
  28.   else
  29.     server.send("loop")
  30.   end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement