Advertisement
Incomprehensible

create radars

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