Advertisement
GalactusX

op modem rednet

Mar 6th, 2013
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.56 KB | None | 0 0
  1.    
  2.  
  3.     --                           FUNCIONAMIENTO / OPERATION
  4.     -- Spanish
  5.     --------------------------------------------------------------------------------
  6.     -- 1º Si hay presente un moden, activa la rednet en el 1º lado que lo encuentre
  7.     -- 2º si no hay un modem, pero esta activa la rednet, lo desactiva    
  8.     -- 3º Si no hay un modem, sale del programa
  9.     --------------------------------------------------------------------------------
  10.     -- English
  11.     --------------------------------------------------------------------------------
  12.     -- 1º If present a moden, active it in the 1st RedNet side who finds
  13.     -- 2º if no modem, but is RedNet activated, it disabled
  14.     -- 3º If no modem, exit the program
  15.     --------------------------------------------------------------------------------
  16.      
  17.     -- Limpia la pantalla
  18.     -- clean the screen
  19.     function Limpiar()
  20.     term.clear()
  21.     term.setCursorPos(1,1)
  22.     end
  23.     -- Escribe el texto letra a letra
  24.     -- Write the text letter by letter
  25.     sp2 = textutils.slowPrint
  26.      
  27.     -- English / Spanish translate
  28.     local translate = {["top"] = "Arriba", ["bottom"] = "Abajo", ["left"] = "Izquierda", ["right"] = "Derecha", ["front"] = "Delante", ["back"] = "Detras"}
  29.      
  30.     -- Funcion para conectar RedNet
  31.     -- Function to connect RedNet
  32.     function ConetarRedNet()
  33.             for side, label in ipairs(rs.getSides()) do
  34.                     Limpiar()
  35.                     print("looking modem")
  36.     --              print("Buscando modem")
  37.                     term.setCursorPos(15,1)
  38.                     sp2(".............")
  39.                     if peripheral.isPresent(label) then
  40.                             if peripheral.getType(label) == "modem" then
  41.                                     rednet.open(label)
  42.                     lado = translate[label]
  43.                                     Limpiar()
  44.                                     print("Modem enabled: ", lado)
  45.     --                              print("Modem activado: ", lado)
  46.                                     sp2("Closing program ....")
  47.     --                              sp2("Cerrando programa....")
  48.                                     sleep(2)
  49.                                     Limpiar()
  50.                                     return(true)
  51.                             end
  52.                     end
  53.      
  54.                     if not peripheral.isPresent(label) then
  55.                             if rednet.isOpen(label) == true then
  56.                     lado = translate[label]
  57.                                     Limpiar()
  58.                                     print("Active RedNet on: "..lado..", but is not a modem added in that position, add one")
  59.     --                              print("RedNet activo en: "..lado..", pero no se encuentra añadido un modem en esa posición, añada uno.")
  60.                                     sleep(3)
  61.                                     sp2("Closing connection RedNet....")
  62.     --                              sp2("Cerrando conexión a RedNet....")
  63.                                     rednet.close(label)
  64.                                     sleep(3)
  65.                                     Limpiar()
  66.                                     return(true)
  67.                             end
  68.                     end                    
  69.         end
  70.                     sp2("No modem, no connection, add one to the device")
  71.                     --sp2("No hay modem, imposible conexion, añada uno al dispositivo")
  72.                     sleep(4)
  73.                     Limpiar()
  74.         return(false)
  75.     end
  76.     ConetarRedNet()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement