Advertisement
Guest User

pult.lua

a guest
Jun 12th, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.57 KB | None | 0 0
  1. rednet.open("back")
  2. local sx,sy = term.getSize()
  3. term.clear()
  4. term.setBackgroundColor(colors.white)
  5. term.clear()
  6. term.setTextColor(colors.black)
  7. term.write("Pairing...")
  8. local turtleId = ""
  9. while true do
  10.   rednet.broadcast("pair","tmzst")
  11.   local senderId, message, protocol = rednet.receive(5)
  12.   if (protocol == "tmzst") then
  13.     term.setBackgroundColor(colors.lime)
  14.     term.clear()
  15.     local wifi = paintutils.loadImage("/img/wifi.nfp")
  16.     paintutils.drawImage(wifi,0,2)    
  17.     term.setTextColor(colors.white)
  18.     term.setBackgroundColor(colors.lime)
  19.     local txt = "Eto vasha cherepaha?"
  20.     term.setCursorPos(sx/2-(txt:len()/2)+1,11)
  21.     term.write(txt)
  22.     local txt = "ID: "..message
  23.     term.setCursorPos(sx/2-(txt:len()/2)+1,12)
  24.     term.write(txt)
  25.     term.setCursorPos(3,14)
  26.     term.setBackgroundColor(colors.white)
  27.     term.setTextColor(colors.black)
  28.     term.write("Da")
  29.     term.setCursorPos(7,14)
  30.     term.write("Net")
  31.     while true do
  32.       local event, button, x, y = os.pullEvent( "mouse_click" )
  33.       if (y == 14) then
  34.         if (x >= 3) and (x <= 5) then
  35.           term.clear()
  36.           turtleId = message
  37.           break
  38.         end
  39.       end
  40.     end
  41.     break
  42.   end
  43. end
  44. term.setBackgroundColor(colors.white)
  45. term.clear()
  46. term.setBackgroundColor(colors.black)
  47. term.setTextColor(colors.white)
  48. local txt = "Cherepha: "..turtleId
  49. term.setCursorPos(sx/2 - (txt:len()/2)+1,1)
  50. term.write(txt)
  51. local txt = "Ispolzui W/S/D/A dly dvizzhenija"
  52. term.setCursorPos(sx/2 - (txt:len()/2)+1,4)
  53. term.write(txt)
  54. local txt = "Shift - Up | Ctrl - Down"
  55. term.setCursorPos(sx/2-txt:len()/2+1,5)
  56. term.write(txt)
  57. local txt = "E - Lomat | Q - Stavit"
  58. term.setCursorPos(sx/2-txt:len()/2+1,6)
  59. term.write(txt)
  60. local function trs(txtt)
  61.   rednet.send(turtleId,txtt,"tmzst")
  62. end
  63. local function control()
  64.   while true do
  65.     local event, key, isHeld = os.pullEvent("key")
  66.     if key == keys.w then
  67.       trs("w")  
  68.     elseif key == keys.s then
  69.       trs("s")
  70.     elseif key == keys.a then
  71.       trs("a")
  72.     elseif key == keys.d then
  73.       trs("d")
  74.     elseif key == keys.leftShift then
  75.       trs("shift")
  76.     elseif key == keys.leftCtrl then
  77.       trs("ctrl")
  78.     elseif key == keys.e then
  79.       trs("e")
  80.     elseif key == keys.q then
  81.       trs("q")
  82.  end
  83.   end
  84. end
  85. local function receive()
  86.   while true do
  87.   local senderId, message, protocol = rednet.receive()
  88.   if (senderId == turtleId) and (protocol == "tmzst") then
  89.     term.setCursorPos(1,sy)
  90.     term.write("Fuel: "..message)
  91.   end
  92.   end
  93. end
  94. parallel.waitForAll(control,receive)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement