Advertisement
Inksaver

Direct Turtle command template

Apr 5th, 2020
435
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.07 KB | None | 0 0
  1. --[[
  2.     Template program for using 4 commands:
  3.     f 5 dig translates to move forward 5 blocks, dig anything in the way
  4.     u 3     translates to move up 3 blocks, do not break any blocks.
  5.     d 6 dig translates to move down 6 blocks, digDown anything in the way
  6.     b 4     translates to move back 4 blocks, do not break any blocks
  7.     name your 4 programs f.lua, u.lua, d.lua, b.lua
  8.     Change the direction in line 100 to suit
  9. ]]
  10. args = {...}
  11.  
  12. function checkArgs()
  13.     local numBlocksRequested = 1
  14.     local doDig = false
  15.     if args[1] ~= nil then
  16.         numBlocksRequested = args[1]
  17.     end
  18.     if args[2] ~= nil then
  19.         doDig = true
  20.     end
  21.     return numBlocksRequested, doDig
  22. end
  23.  
  24. function doMoves(numBlocksRequested, doDig, direction)
  25.     local errorMsg = nil
  26.     local numBlocksMoved = 0
  27.     local Move, Dig, Detect
  28.    
  29.     -- re-assign turtle functions to new variables
  30.     if direction == "f" or direction == "b" then
  31.         Move = turtle.forward
  32.         Dig = turtle.dig
  33.         Detect = turtle.detect
  34.     elseif direction == "u" then
  35.         Move = turtle.up
  36.         Dig = turtle.digUp
  37.         Detect = turtle.detectUp
  38.     else
  39.         Move = turtle.down
  40.         Dig = turtle.digDown
  41.         Detect = turtle.detectDown
  42.     end
  43.    
  44.     if direction == "b" then
  45.         turtle.turnRight()
  46.         turtle.turnRight()
  47.     end
  48.    
  49.     for i = 1, numBlocksRequested, 1 do
  50.         local moveOK, moveError = Move() -- try to move forward/up/down
  51.         if doDig then
  52.             if moveOK then
  53.                 numBlocksMoved = numBlocksMoved + 1
  54.             else
  55.                 -- while moveOK == false do -- same effect if you prefer.
  56.                 while not moveOK do -- did not move if obstruction
  57.                     local digOK, digError = Dig()
  58.                     if digOK then
  59.                         sleep(0.5) -- allow sand / gravel to drop if digging forward / up
  60.                     else -- unable to dig, or nothing to dig
  61.                         if digError == "Unbreakable block detected" then
  62.                             errorMsg = digError
  63.                             break
  64.                         end
  65.                     end
  66.                     moveOK, moveError = Move() -- try to move forward/up/down again
  67.                     if moveOK then
  68.                         numBlocksMoved = numBlocksMoved + 1
  69.                     end
  70.                 end
  71.             end
  72.         else
  73.             if moveOK then
  74.                 numBlocksMoved = numBlocksMoved + 1
  75.             else
  76.                 errorMsg = moveError
  77.             end
  78.         end
  79.     end
  80.    
  81.     if direction == "b" then
  82.         turtle.turnRight()
  83.         turtle.turnRight()
  84.     end
  85.    
  86.     return numBlocksMoved, errorMsg
  87. end
  88.  
  89.  
  90. function printLog(numBlocksRequested, numBlocksMoved, errorMsg)
  91.     print("Moved forwards "..numBlocksMoved.. " / ".. numBlocksRequested)
  92.     if errorMsg ~= nil then
  93.         print (errorMsg)
  94.     end
  95. end
  96.  
  97. function main()
  98.     --***********************************************************************************************
  99.     --Change this to "f" or "d" or "u" or "b" to suit application (forward, up, down, back) f.lua, d.lua, u.lua, b.lua
  100.     local direction = "f" -- this is for f.lua
  101.     --***********************************************************************************************
  102.     local numBlocksRequested, doDig = checkArgs()
  103.     if turtle.getFuelLevel() == 0 then
  104.         print("No fuel")
  105.     else
  106.         print("Fuel level: "..turtle.getFuelLevel())
  107.         local numBlocksMoved, errorMsg = doMoves(numBlocksRequested, doDig, direction)
  108.         printLog(numBlocksRequested, numBlocksMoved, errorMsg)
  109.     end
  110. end
  111.  
  112. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement