Advertisement
Incomprehensible

turret computer

Apr 4th, 2025 (edited)
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.30 KB | None | 0 0
  1. local monitor = peripheral.find("monitor")
  2. local modem = peripheral.find("modem", rednet.open) -- doing it like this finds all modem peripherals and then opens rednet on them
  3. local tPos
  4. local pos
  5. --- MAIN
  6. monitor.clear()
  7. monitor.setCursorPos(1,1)
  8. monitor.setTextScale(0.5)
  9. monitor.write("Hello, ID: " .. os.computerID()) --the id of the computer
  10.  
  11. function vec3ToString(vec3)
  12.     local str = ("(x:" .. math.floor(vec3.x+0.5) .. ", y:" .. math.floor(vec3.y+0.5) .. ", z:" .. math.floor(vec3.z+0.5) .. ")")
  13.     return str
  14. end
  15.  
  16. function receivePosMessage()
  17.     local id, message = rednet.receive(nil,0.5)
  18.     if (message == nil) then return end
  19.     tPos = message
  20.  
  21. end
  22.  
  23. function update()
  24.     pos = ship.getWorldspacePosition()
  25.     receivePosMessage()
  26.     if(tPos == nil or pos == nil) then
  27.         return
  28.     end
  29.     monitor.clear()
  30.     monitor.setCursorPos(1,1)
  31.     monitor.write("Message from control: " .. vec3ToString(tPos))
  32.     monitor.setCursorPos(1,2)
  33.     monitor.write("Our position: " .. vec3ToString(pos))
  34.    
  35.     local deltaPos = vector.new(tPos.x-pos.x,0.0,tPos.z-pos.z)
  36.     local ang = (math.atan2(deltaPos.z,deltaPos.x))
  37.     local yaw = ship.getEulerAnglesXYZ().y
  38.     monitor.setCursorPos(1,3)
  39.     monitor.write("ANG: " .. ang .. ", MY ANG: " .. yaw)
  40.     print("ANG: " .. ang .. ", MY ANG: " .. yaw)
  41. end
  42.  
  43. while true do
  44.     sleep(0.5)
  45.     update()
  46. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement