Advertisement
ultranoob

Extended Turtle API v1.11a

Mar 28th, 2013
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.73 KB | None | 0 0
  1. --Extended Turtle API ("turt") - k8NAxnFc
  2. --Developed by UltraNoobian
  3. --version = v1.11a
  4.  
  5. if not turtle then
  6.     error( "Cannot load turtle API on computer" )
  7. end
  8.  
  9. function cut() --Simple dig() with block detection
  10.     while turtle.detect() == true do
  11.         turtle.dig()
  12.         sleep(0.45)
  13.     end
  14. end
  15. function dirCut(direction)
  16.     if string.match(string.sub(direction, 1, 1), '[uU]') then
  17.         while turtle.detectUp() == true do
  18.             turtle.digUp()
  19.             sleep(0.45)
  20.         end
  21.     elseif string.match(string.sub(direction, 1, 1), '[dD]') then
  22.         while turtle.detectDown() == true do
  23.             turtle.digDown()
  24.             sleep(0.45)
  25.         end
  26.     elseif string.match(string.sub(direction, 1, 1), '[fF]') then
  27.         while turtle.detect() == true do
  28.             turtle.dig()
  29.             sleep(0.45)
  30.         end
  31.     end
  32. end
  33. function cyclicCut()
  34.     dirCut("u")
  35.     cut()
  36.     dirCut("d")
  37. end
  38.  
  39. function moveForward(arg1)
  40.     local movement = 0
  41.     local distance = 0
  42.     if arg1 then
  43.         distance = tonumber(arg1)
  44.         while movement < distance do
  45.             if turtle.forward() then
  46.                 movement = movement + 1
  47.             elseif turtle.detect() then
  48.                 turtle.dig()
  49.             else
  50.                 turtle.attack()
  51.             end
  52.         end
  53.     end
  54. end
  55.  
  56. function moveRight(arg1)  --Shift 'arg1' to the right
  57.     turtle.turnRight()
  58.     if arg1 then
  59.         moveForward(arg1)
  60.     else
  61.         turtle.forward()
  62.     end
  63.     turtle.turnLeft()
  64. end
  65. function moveLeft(arg1)  -- Shift 'arg1' to the left
  66.     turtle.turnLeft()
  67.     if arg1 then
  68.         moveForward(arg1)
  69.     else
  70.         turtle.forward()
  71.     end
  72.     turtle.turnRight()
  73. end
  74. function turnAround() --Rotate
  75.     turtle.turnRight()
  76.     turtle.turnRight()
  77. end
  78. function reverseRight()
  79.     turtle.turnRight()
  80.     cut()
  81.     turt.moveForward(1)
  82.     turtle.turnRight()
  83. end
  84.  
  85. function reverseLeft()
  86.     turtle.turnLeft()
  87.     cut()
  88.     turt.moveForward(1)
  89.     turtle.turnLeft()
  90. end
  91.  
  92. function straightCut(xheight) --Advanced vertical dig()
  93.     local reqHeight = 0
  94.         local currHeight = 1
  95.        
  96.     reqHeight = tonumber(xheight)
  97.    
  98.     if reqHeight < 1 then
  99.         term.clear()
  100.             term.setCursorPosition(1,1)
  101.             print("BAKA BAKA BAKA BAKA!!!")
  102.             print("ps. That means idiot in japansese...idiot")
  103.     end --Guarenteed to not dig negative number.
  104.    
  105.     --Initial positioning
  106.     while turtle.detect() do
  107.         checkSpace(currHeight)
  108.             turtle.dig()
  109.         sleep(0.45) --Wait for any falling blocks to fall
  110.     end
  111.     while not turtle.forward() do
  112.             turtle.attack()
  113.             os.sleep(0.1)
  114.         end
  115.     --End Initial positioning
  116.    
  117.     --Start Digging
  118.     while currHeight < reqHeight do
  119.         while turtle.detectUp() do
  120.                 checkSpace(currHeight)
  121.                 turtle.digUp()
  122.                 sleep(0.45)
  123.             end
  124.             if currHeight == reqHeight - 1 then
  125.         break
  126.             end
  127.             if turtle.up() then
  128.             currHeight = currHeight + 1
  129.             else
  130.         turtle.attackUp()
  131.         end
  132.     end
  133.    
  134.     --Lowering back down
  135.     while currHeight > 1 do
  136.         if turtle.down() == true then
  137.         currHeight = currHeight - 1
  138.         else
  139.                turtle.digDown()
  140.                 turtle.attackDown()
  141.         end
  142.     end
  143. end
  144.  
  145. function hasModem() --Simple peripheral check
  146.     if peripheral.getType("right") == "modem" then
  147.         return true
  148.     else
  149.         return false
  150.     end
  151. end
  152.  
  153. function checkSpace(currHeight) --Placeholder: Simple check for slot 15.
  154.     if turtle.getItemSpace(15) < 64 then
  155.         dropBox(currHeight)
  156.     end
  157. end
  158.  
  159. function dropBox(currHeight)
  160.     local xHeight = currHeight
  161.     while xHeight > 1 do
  162.         if turtle.down() == true then
  163.             xHeight = xHeight - 1
  164.         else
  165.             turtle.digDown()
  166.         end
  167.     end
  168.     turtle.select(16)
  169.     turnAround()
  170.     turtle.place()
  171.     for slot = 1, 15, 1 do
  172.         turtle.select(slot)
  173.         turtle.drop()
  174.     end
  175.     turtle.select(1)
  176.     turnAround()
  177.     while xHeight < currHeight do
  178.         if turtle.up() == true then
  179.             xHeight = xHeight + 1
  180.         else
  181.             turtle.dig()
  182.         end
  183.     end
  184. end
  185. function straightUp(xheight)
  186.     local reqHeight = 0
  187.     local currHeight = 1
  188.     reqHeight = tonumber(xheight)
  189.  
  190.     if reqHeight < 1 then
  191.         print "HALT"
  192.         print "Exception: Invalid Number (Must be 1 or greater)"
  193.         print "Press any key to Continue."
  194.         read()
  195.     end
  196.  
  197.     --Initial positioning
  198.     while turtle.detect() do --Block Detection
  199.         checkSpace(currHeight)
  200.         turtle.dig()
  201.         sleep(0.5)
  202.     end
  203.     if not turtle.forward() then --Mob Detection
  204.         turtle.attack()
  205.     end
  206.  
  207.     while currHeight < reqHeight do
  208.     while turtle.detectUp() do
  209.             checkSpace(currHeight)
  210.             turtle.digUp()
  211.             sleep(0.5)
  212.         end
  213.         if turtle.up() then
  214.         currHeight = currHeight + 1
  215.         else
  216.         turtle.attackUp()
  217.     end
  218.     end
  219. end
  220.  
  221. function straightDown(xdepth)
  222.     local reqDepth = 0
  223.     local currDepth = 1
  224.     reqDepth = tonumber(xdepth)
  225.  
  226.     if reqDepth < 1 then
  227.     print "HALT"
  228.     print "Exception: Invalid Number (Must be 1 or greater)"
  229.     print "Press any key to Continue."
  230.     read()
  231.     end
  232.  
  233.     --Initial positioning
  234.     while turtle.detect() do
  235.     checkSpace((reqDepth-currDepth + 1))
  236.         turtle.dig()
  237.     sleep(0.45) --Wait for any falling blocks to fall
  238.     end
  239.     if not turtle.forward() then
  240.         turtle.attack()
  241.     end
  242.     --Start Digging
  243.     while currDepth < reqDepth do
  244.     while turtle.detectDown() do
  245.             checkSpace((reqDepth-currDepth + 1))
  246.             turtle.digDown()
  247.         end
  248.         if turtle.down() then
  249.         currDepth = currDepth + 1
  250.         else
  251.         turtle.attackDown()
  252.     end
  253.     end
  254. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement