Advertisement
Lost-Ninja

Tunnel Mk3.02

Oct 10th, 2012
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.29 KB | None | 0 0
  1. -- A revised version of the built in tunnelling script that mines a 3x3 tunnel (as opposed to 3x2)
  2. -- Fills in any missing floor blocks with blocks from slot 1 (in theory)
  3. -- returns to start point (buggy won't refuel)
  4. -- Mk III v0.1
  5. -- changes by LN
  6.  
  7. local tArgs = { ... }
  8. if #tArgs ~= 1 then  -- No length supplied error out with message
  9.   print( "Usage: tunnel <length>" )
  10.   return
  11. end
  12.  
  13. -- If value supplied check to make sure it's positive
  14. local length = tonumber( tArgs[1] )
  15. if length < 1 then
  16.   print( "Tunnel length must be positive" )
  17.   return
  18. end
  19.  
  20. -- some more variables (wtf is depth?)
  21. local depth = 0
  22. local collected = 0
  23. local dbg = 0 -- change to 1 if you want test messages to be displayed (LN)
  24.  
  25. local function collect() -- function works out how much shit you've collected (fails with lapis & redstone iirc)
  26.   collected = collected + 1
  27.   if math.fmod(collected, 25) == 0 then
  28.     print( "Mined "..collected.." items." )
  29.   end
  30. end
  31.  
  32. local function test(txt) -- function to print test/debug messages, bit spammy but shows what turtle thinks it's doing... even when it isn't... :D (LN)
  33.   if dbg == 1 then
  34.     print("Turtle says: " , txt )
  35.     sleep(5) -- change to shorter/longer to speed up/slow down debug
  36.   end
  37. end
  38.  
  39. local function reverseTurtle() -- 180 degree turn (LN)
  40.   turtle.turnRight()
  41.   turtle.turnRight()
  42.   test("Reversing Turtle")
  43. end
  44.  
  45. local function tryDig()
  46.   while turtle.detect() do
  47.     if turtle.dig() then
  48.       collect()
  49.       sleep(0.5)
  50.       test("Dig Fwd")
  51.     else
  52.       test("Dig Fwd Fail")
  53.       return false
  54.     end
  55.   end
  56.   return true
  57.  
  58. end
  59.  
  60. local function tryDigUp()
  61.   while turtle.detectUp() do
  62.     if turtle.digUp() then
  63.       collect()
  64.       sleep(0.5)
  65.       test("Dig Up")
  66.     else
  67.       test("Dig Up Fail")
  68.       return false
  69.     end
  70.   end
  71.   return true
  72.  
  73. end
  74.  
  75. local function tryDigDown()
  76.   while turtle.detectDown() do
  77.     if turtle.digDown() then
  78.       collect()
  79.       sleep(0.5)
  80.       test("Dig Down")
  81.     else
  82.       test("Dig Down Fail")
  83.       return false
  84.     end
  85.   end
  86.   return true
  87.  
  88. end
  89.  
  90. local function refuel()
  91.   local fuelLevel = turtle.getFuelLevel()
  92.   if fuelLevel == "unlimited" or fuelLevel > 0 then
  93.     return
  94.   end
  95.  
  96.   local function tryRefuel()
  97.     for n=1,16 do
  98.       if turtle.getItemCount(n) > 0 then
  99.         turtle.select(n)
  100.         if turtle.refuel(1) then
  101.           turtle.select(1)
  102.           return true
  103.         end
  104.       end
  105.     end
  106.     turtle.select(1)
  107.     return false
  108.   end
  109.  
  110.   if not tryRefuel() then
  111.     print( "Add more fuel to continue." )
  112.     while not tryRefuel() do
  113.       sleep(1)
  114.     end
  115.     print( "Resuming Tunnel." )
  116.   end
  117. end
  118.  
  119. local function tryUp()
  120.   refuel()
  121.   while not turtle.up() do
  122.     if turtle.detectUp() then
  123.       if not tryDigUp() then
  124.         test("Move Up & Dig")
  125.         return false
  126.       end
  127.     elseif turtle.attackUp() then
  128.       collect()
  129.       test("Attacking Up")
  130.     else
  131.       sleep( 0.5 )
  132.     end
  133.   end
  134.   return true
  135.  
  136. end
  137.  
  138. local function tryDown()
  139.   refuel()
  140.   while not turtle.down() do
  141.     if turtle.detectDown() then
  142.       if not tryDigDown() then
  143.         test("Move Down & Dig")
  144.         return false
  145.       end
  146.     elseif turtle.attackDown() then
  147.       collect()
  148.       test("Attacking Down")
  149.     else
  150.       sleep( 0.5 )
  151.     end
  152.   end
  153.   return true
  154.  
  155. end
  156.  
  157. local function tryForward()
  158.   refuel()
  159.   while not turtle.forward() do
  160.     if turtle.detect() then
  161.       if not tryDig() then
  162.         test("Move Fwd & Dig")
  163.         return false
  164.       end
  165.     elseif turtle.attack() then
  166.       collect()
  167.       test("Attacking Fwd")
  168.     else
  169.       sleep( 0.5 )
  170.     end
  171.   end
  172.   return true
  173.  
  174. end
  175.  
  176. print( "Tunnelling..." )
  177.  
  178. --[[ Tunnel cross section
  179. | 1 | 2 | 3 |
  180. | 4 | 5 | 6 |
  181. | 7 | 8 | 9 |
  182. Turtle starts at 7, digs 4, moves 4, digs 1, moves 1, digs 2, moves 2, digs 5 & 3, moves 3, digs 6, moves 6, 9 -> 9, 8 -> 8... and back to 7. Places blocks below at 7, 9 , 8. (in that order)
  183. ]]
  184.  
  185. for n=1,length do
  186.   turtle.placeDown()
  187.   test("Place A")
  188.   tryDigUp()
  189.   tryUp()
  190.   tryDigUp()
  191.   tryUp()
  192.   turtle.turnRight()
  193.   test("Turning Right")
  194.   tryDig()
  195.   tryForward()
  196.   tryDigDown()
  197.   tryDig()
  198.   tryForward()
  199.   tryDigDown()
  200.   tryDown()
  201.   tryDigDown()
  202.   tryDown()
  203.   reverseTurtle()
  204.   test("Reversing direction faced")
  205.   tryDig()
  206.   turtle.placeDown()
  207.   test("Place Down C")
  208.   tryForward()
  209.   turtle.placeDown()
  210.   test("Place Down B")
  211.   tryForward()
  212.   turtle.turnRight()
  213.   test("Turning Right")
  214.  
  215.   if n<length then
  216.     tryDig()
  217.     if not tryForward() then
  218.       print( "Aborting Tunnel." )
  219.       break
  220.     end
  221.   else
  222.     print( "Tunnel complete." )
  223.     print( "Returning to start..." )
  224.  
  225. -- Return to where we started
  226. -- This section is not 100% correct. It should fuel when low on fuel and doesn't, though the tryForward works everywhere else.
  227. -- Does work if the fuel doesn't run out, could just add a manual refuel but that would mean a)in long distances it'd still run out, b)in short dsiatnces I waste fuel... :(
  228.  
  229.     reverseTurtle()
  230.       while length > 0 do
  231.         if tryForward() then
  232.           length = length - 1
  233.         else
  234.         tryDig()
  235.         end
  236.       end
  237.     reverseTurtle()
  238.   end
  239. end
  240.  
  241. print( "Tunnel complete." )
  242. print( "Mined "..collected.." items total." )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement