Advertisement
Inksaver

data.lua

Apr 30th, 2023 (edited)
1,700
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.80 KB | Software | 0 0
  1. version = 20240926.1230
  2. --[[
  3. https://pastebin.com/fCKDc9Vi
  4. pastebin get fCKDc9Vi data.lua
  5. ]]
  6. local usage = [[usage:
  7. data    block name forward or data 1
  8. data u  block name up      or data 0
  9. data d  block name down    or data 2
  10. data s# item detail slot#  or data s #
  11. ]]
  12. args = {...}
  13.  
  14. local direction = "forward"
  15. --local blockType = ""
  16. --local blockModifier = nil
  17. local success = false
  18. local data = {} --initialise empty table variable
  19. local inspect = turtle.inspect
  20.  
  21. local function clear()
  22.     term.clear()
  23.     term.setCursorPos(1,1)
  24. end
  25.  
  26. local function continue(clearAfter)
  27.     write("Enter to continue...")
  28.     read()
  29.     if clearAfter then clear() end
  30. end
  31.  
  32. local function checkLines(lines)
  33.     if lines > 10 then
  34.         write("Enter to continue")
  35.         read()
  36.         lines = 0
  37.         clear()
  38.         return 0
  39.     end
  40.     return lines + 1
  41. end
  42.  
  43. local function trim(text)
  44.     --[[ trim leading and trailing spaces ]]
  45.     return (text:gsub("^%s*(.-)%s*$", "%1"))
  46. end
  47.  
  48. local function getData(inspect)
  49.     success, data = inspect()
  50.     if success then -- block found
  51.         -- data.name                -- eg "minecraft:log"
  52.         -- data.metadata            -- no longer used
  53.         -- data.state.level         -- in water 0 to 8 0=source
  54.         -- data.state.shape         -- eg straight
  55.         -- data.state.waterlogged   -- bool
  56.         -- data.state.half          -- eg "bottom"
  57.         -- data.state.facing        -- eg "south"
  58.         -- data.state.drag          -- bool eg bubble_column
  59.         clear()
  60.         local lines = 0
  61.         local count = 0
  62.         local isSource = false
  63.        
  64.         print("Block "..direction.."="..data.name)
  65.         for k,v in pairs(data) do
  66.             print(count..":"..k)
  67.             count = count + 1
  68.         end
  69.         continue(false)
  70.         lines = checkLines(lines)
  71.        
  72.         if data.name:find("water") ~= nil then -- allows for bubble_column
  73.             if data.state.level ~= nil then
  74.                 if data.state.level == 0 then
  75.                     isSource = true
  76.                 end
  77.             end
  78.             term.write("data.state.level = "..data.state.level)
  79.             if isSource then
  80.                 term.write(" (source)\n")
  81.             else
  82.                 term.write(" (flowing)\n")
  83.             end
  84.         end
  85.         if data.state ~= nil then
  86.             for k,v in pairs(data.state) do
  87.                 print("data.state."..k.." = "..tostring(v))
  88.                 lines = checkLines(lines)
  89.             end
  90.             continue(true)
  91.         end
  92.         if data.metadata ~= nil then
  93.             -- deprecated. legacy inclusion
  94.             for k,v in pairs(data.metadata) do
  95.                 print("data.metadata."..k.." = "..v)
  96.                 lines = checkLines(lines)
  97.             end
  98.             continue(true)
  99.         end
  100.         if data.tags ~= nil then
  101.             for k,v in pairs(data.tags) do
  102.                 if k:find("minecraft:") ~= nil then
  103.                     k = k:sub(11)
  104.                 end
  105.                 print("tags."..k.."="..tostring(v))
  106.                 lines = checkLines(lines)
  107.             end
  108.         end
  109.     else
  110.         print("Unable to inspect block "..direction)
  111.     end
  112. end
  113.  
  114. local function getItemDetail(text)
  115.     -- eg bow: data.nbt = "552887824c43124013fd24f6edcde0fb"
  116.     -- should be s1 to s16
  117.     -- could be s 1 to s 16
  118.     -- could be >16 or < 1
  119.     local command = trim(text)
  120.     local slot = command:sub(2)
  121.     slot = trim(slot)
  122.     print("Slot '"..slot.."'")
  123.     slot = tonumber(slot)
  124.     if slot ~= nil then
  125.         local data = turtle.getItemDetail(slot)
  126.         if data == nil then
  127.             print("Slot "..slot.." is empty")
  128.         else
  129.             for k,v in pairs(data) do
  130.                 print(k..": "..v)
  131.             end
  132.         end
  133.     else
  134.         print("Unable to parse '"..text.."'")
  135.     end
  136. end
  137.  
  138.  
  139. if args[1] ~= nil then
  140.     --[[
  141.     data s1  args[1] = s1
  142.     data s 1 args[1] = s args[2] = 1
  143.     ]]
  144.     if args[1]:lower() == "h" then
  145.         term.clear()
  146.         term.setCursorPos(1,1)
  147.         print(usage)
  148.         print("Fuel Level: "..turtle.getFuelLevel())
  149.     elseif args[1]:lower() == "u" or args[1] == "0" then
  150.         direction = "up"
  151.         getData(turtle.inspectUp)
  152.     elseif args[1]:lower() == "d" or args[1] == "2" then
  153.         direction = "down"
  154.         getData(turtle.inspectDown)
  155.     elseif args[1]:lower():find("s") ~= nil then -- check slot no
  156.         if args[2] == nil then
  157.             getItemDetail(args[1])
  158.         else
  159.             getItemDetail(args[1]..args[2])
  160.         end
  161.     else
  162.         getData(inspect)
  163.     end
  164. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement