Advertisement
Inksaver

f.lua (forward X blocks)

Apr 27th, 2020 (edited)
2,371
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.79 KB | None | 0 0
  1. version = 20240828.1400
  2. -- https://pastebin.com/KXCakmNn
  3. -- pastebin get KXCakmNn f.lua
  4. -- Last edited: see version YYYYMMDD.HHMM
  5. local usage = {}
  6. usage.backwards = [[
  7. b 10  :moves 10 blocks back unless
  8. obstructed. No blocks broken
  9.  
  10. b 10 d :moves 10 blocks back unless
  11. bedrock. Blocks are removed.
  12.  
  13. 'd' or any character / string is ok]]
  14. usage.down = [[
  15. d 10  :moves 10 blocks down unless
  16. obstructed. No blocks broken
  17.  
  18. d 10 d :moves 10 blocks down unless
  19. bedrock. Blocks are removed.
  20.  
  21. 'd' or any character / string is ok]]
  22. usage.forwards = [[
  23. f 10  :moves 10 blocks forward unless
  24. obstructed. No blocks broken
  25.  
  26. f 10 d :moves 10 blocks forward unless
  27. bedrock. Blocks are removed.
  28.  
  29. Dig blocks above/below use + -
  30.  
  31. f 10 +- forward 10, dig above and below]]
  32. usage.up = [[
  33. u 10  :moves 10 blocks up unless
  34. obstructed. No blocks broken
  35.  
  36. u 10 d :moves 10 blocks up unless
  37. bedrock. Blocks are removed.
  38.  
  39. 'd' or any character / string is ok]]
  40. args = {...}
  41.  
  42. local above = false
  43. local below = false
  44.    
  45. function checkArgs(direction)
  46.     local numBlocksRequested = 1
  47.     local doDig = false
  48.    
  49.     if args[1] ~= nil then
  50.         if args[1]:lower() == "h" then
  51.             term.clear()
  52.             term.setCursorPos(1,1)
  53.             print(usage[direction])
  54.             print("Fuel Level: "..turtle.getFuelLevel())
  55.             error()
  56.         else
  57.             numBlocksRequested = tonumber(args[1])
  58.             if numBlocksRequested == nil then
  59.                 print("Use a number as argument, not "..args[1])
  60.                 error()
  61.             end
  62.         end
  63.         if args[2] ~= nil then -- any character(s) here will work
  64.             doDig = true
  65.             if args[2]:lower():find("+") ~= nil then
  66.                 above = true
  67.             end
  68.             if args[2]:lower():find("-") ~= nil then
  69.                 below = true
  70.             end
  71.         end
  72.     end
  73.     return numBlocksRequested, doDig
  74. end
  75.  
  76. function turnRound()
  77.     turtle.turnRight()
  78.     turtle.turnRight()
  79. end
  80.  
  81. function doMoves(numBlocksRequested, doDig, direction)
  82.     local errorMsg = nil
  83.     local numBlocksMoved = 0
  84.     local Move, Dig, Detect
  85.     local turned = false
  86.    
  87.     -- re-assign turtle functions to new variables
  88.     if direction == "forwards" then
  89.         Move = turtle.forward
  90.         Dig = turtle.dig
  91.         Detect = turtle.detect
  92.     elseif direction == "backwards" then
  93.         Move = turtle.back
  94.         Dig = turtle.dig
  95.         Detect = turtle.detect
  96.     elseif direction == "up" then
  97.         Move = turtle.up
  98.         Dig = turtle.digUp
  99.         Detect = turtle.detectUp
  100.     else
  101.         Move = turtle.down
  102.         Dig = turtle.digDown
  103.         Detect = turtle.detectDown
  104.     end
  105.    
  106.     for i = 1, numBlocksRequested, 1 do
  107.         if above then turtle.digUp() end    -- user added + to arg
  108.         if below then turtle.digDown() end  -- user added - to arg
  109.         local moveOK, moveError = Move()    -- try to move forward/up/down
  110.         if doDig then                       -- true if ANY args passed
  111.             if moveOK then
  112.                 numBlocksMoved = numBlocksMoved + 1
  113.             else                            -- did not move due to obstruction
  114.                 if direction == "backwards" and not turned then
  115.                     turnRound()
  116.                     turned = true
  117.                     Move = turtle.forward
  118.                 end
  119.                 while not moveOK do         -- did not move if obstruction
  120.                     local digOK, digError = Dig()
  121.                     if digOK then
  122.                         sleep(0.5)          -- allow sand / gravel to drop if digging forward / up
  123.                     else                    -- unable to dig, or nothing to dig
  124.                         if digError == "Unbreakable block detected" then
  125.                             return numBlocksMoved, digError
  126.                         end
  127.                     end
  128.                     moveOK, moveError = Move() -- try to move forward/up/down again
  129.                     if moveOK then
  130.                         numBlocksMoved = numBlocksMoved + 1
  131.                     end
  132.                 end
  133.             end
  134.         else
  135.             if moveOK then
  136.                 numBlocksMoved = numBlocksMoved + 1
  137.             else -- move did not succeed
  138.                 errorMsg = moveError
  139.                 break
  140.             end
  141.         end
  142.     end
  143.     if above then turtle.digUp() end
  144.     if below then turtle.digDown() end
  145.     if turned then -- was "backwards" but obstuction rotated 180 so need to turn round again
  146.         turnRound()
  147.     end
  148.    
  149.     return numBlocksMoved, errorMsg
  150. end
  151.  
  152. function printLog(direction, numBlocksRequested, numBlocksMoved, errorMsg)
  153.     print("Moved "..direction.." "..numBlocksMoved.. " / ".. numBlocksRequested)
  154.     if errorMsg ~= nil then
  155.         print (errorMsg)
  156.     end
  157. end
  158.  
  159. function main()
  160.     local directions = {"backwards", "down", "forwards", "up"}
  161.     --***********************************************************************************************
  162.     --Change this to 1-4 to suit application (forwards, up, down, backwards) f.lua, u.lua, d.lua, b.lua
  163.     local directionIndex = 3 -- this is for f.lua
  164.     --***********************************************************************************************
  165.     local direction = directions[directionIndex] -- e.g backwards
  166.     local numBlocksRequested, doDig = checkArgs(direction)
  167.     if turtle.getFuelLevel() == 0 then
  168.         print("No fuel")
  169.     else
  170.         print("Fuel level: "..turtle.getFuelLevel())
  171.         local numBlocksMoved, errorMsg = doMoves(numBlocksRequested, doDig, direction)
  172.         printLog(direction, numBlocksRequested, numBlocksMoved, errorMsg)
  173.     end
  174. end
  175.  
  176. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement