Advertisement
Incomprehensible

create radars

Mar 31st, 2025 (edited)
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.88 KB | None | 0 0
  1. local str = "Hello"
  2. local monitor = peripheral.find("monitor")
  3. local modem = peripheral.find("modem", rednet.open)
  4. --create_radar:monitor is the name of the monitor block from Create Radars
  5. local radar = peripheral.find("create_radar:monitor")
  6.  
  7. local inc = 0
  8. local tracksList = radar.getTracks()
  9. local targetTrack
  10. local playerTrack
  11.  
  12. local computerPos = vector.new(7.3,111.0,4.850)
  13.  
  14. local randomPos = vector.new(25,108.0,15.850)
  15.  
  16. -- REDNET
  17.  
  18. function sendMessagePos(id, pos)
  19.         rednet.send(id, pos)
  20. end
  21.    
  22.  
  23. -- MAIN UPDATE
  24. function update()
  25.     tracksList = radar.getTracks()
  26.     findImportantTracks()
  27.     monitor.clear()
  28.     monitor.setCursorPos(1,1)
  29.     monitor.write("Hi "..inc .. ", num: " .. #tracksList .. ", stuff: "..tracksList[1].id)
  30.     monitor.setCursorPos(1,2)
  31.     if (playerTrack ~= nil) then
  32.         monitor.write("dist between pc and play: " .. distance(computerPos,playerTrack.position))
  33.     end
  34.     --monitor.write("pos1: " .. vec3ToString(computerPos) .. "pos2: " .. vec3ToString(computerPos))
  35.     inc = inc+1
  36.     --printAllTracks()
  37.     printImportantTracks()
  38.     sendMessagePos(5,playerTrack.position)
  39. end
  40. --- MATH
  41. function distance(v1,v2)
  42.     if v1 == nil then return end
  43.     if v2 == nil then return end
  44.     return math.sqrt((v2.x - v1.x) ^ 2 + (v2.y - v1.y) ^ 2 + (v2.z - v1.z) ^ 2 )
  45. end
  46.  
  47. --- PRINT
  48. function printAllTracks()
  49.     local cursorY = 2
  50.     monitor.setCursorPos(1,cursorY)
  51.     for i = 1,#tracksList,1 do
  52.         monitor.write(getTrackInfoString(tracksList[i]))
  53.         cursorY = cursorY + 1
  54.         monitor.setCursorPos(1,cursorY)
  55.         monitor.write("--> POS: " .. vec3ToString(tracksList[i].position))
  56.         cursorY = cursorY + 1
  57.         monitor.setCursorPos(1,cursorY)
  58.     end
  59. end
  60.  
  61. function printImportantTracks()
  62.     local cursorX, cursorY = monitor.getCursorPos()
  63.     monitor.setCursorPos(1,cursorY+1)
  64.     -- player track
  65.     if (playerTrack ~= nil) then
  66.         monitor.write(getTrackInfoString(playerTrack))
  67.         cursorY = cursorY + 1
  68.         monitor.setCursorPos(1,cursorY)
  69.         monitor.write("--> POS: " .. vec3ToString(playerTrack.position))
  70.     end
  71.     --
  72. end
  73.  
  74. function vec3ToString(vec3)
  75.     local str = ("(x:" .. math.floor(vec3.x+0.5) .. ", y:" .. math.floor(vec3.y+0.5) .. ", z:" .. math.floor(vec3.z+0.5) .. ")")
  76.     return str
  77. end
  78.  
  79. --- TRACK UTILS
  80.  
  81. function findImportantTracks()
  82.     --find player track
  83.     for i = 1,#tracksList,1 do
  84.         if tracksList[i].category == "PLAYER" then
  85.             playerTrack = tracksList[i]
  86.         end
  87.     end
  88. end
  89.  
  90. function getTrackInfoString(track)
  91.     -- categories: vs2 ship = "VS2", player = "PLAYER", create contraption = "CONTRAPTION", passive mob = "ANIMAL", hostile mob = "HOSTILE"
  92.     -- vs2 ships get randomly generated id's that are human readable apparently
  93.     -- type just gives you the actual type of the entity, ex: entity.minecraft.pig, VS2:ship
  94.     local str = ("- Cat: " .. track.category .. ", ID:" .. ", type: " .. track.entityType)
  95.     return str
  96. end
  97.  
  98.  
  99.  
  100. --- MAIN
  101. monitor.setTextScale(0.5)
  102.  
  103. while true do
  104.     sleep(0.5)
  105.     update()
  106. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement