Advertisement
Guest User

Untitled

a guest
May 29th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.30 KB | None | 0 0
  1. -- 'Hole' program, version 1.4
  2. -- Created by Pyro_
  3. -- Credit:
  4. --      theoriginalbit
  5. -- Also:
  6. --      BigSHinyToys
  7. --      BombMan
  8.  
  9. -- Stores data about current mode
  10. local speedy = false
  11. local noFuel = false
  12. local fuelChest = false
  13.  
  14. -- Stores turtle status data
  15. local isRefuelling = false
  16. local fuelLevel = 0
  17.  
  18. -- Stores dimensions for the hole
  19. local sizeX, sizeZ, depth = 0,0,0
  20.  
  21. -- Stores current turtle position, relative to start point
  22. local xPos, yPos, zPos = 0,0,0
  23.  
  24.  
  25. -- Stores current direction, positive x is directly forwards from start point
  26. -- positive z is directly right
  27. local xDir, zDir = 1,0
  28.  
  29. -- Stores last saved position (Save 1)
  30. local xSav1, ySav1, zSav1 = 0,0,0
  31. local xDirSav1, zDirSav1 = 0,0
  32. local save1Mutex = 0
  33.  
  34. -- Save 2
  35. local xSav2, ySav2, zSav2 = 0,0,0
  36. local xDirSav2, zDirSav2 = 0,0
  37. local save2Mutex = 0
  38.  
  39. -- Function is required in movement functions
  40. -- Calculates distance to home, with small buffer
  41. local function distToHome()
  42.     local distance
  43.     distance = xPos + yPos + zPos + 5
  44.     return distance
  45. end
  46.  
  47. -- **************************************************
  48. -- Movement / Turning functions
  49. local function moveForwardRF()
  50.     local retVal = true
  51.     -- Account for falling blocks, such as sand and gravel
  52.     if not speedy then
  53.         while turtle.detect() do
  54.             turtle.dig()
  55.             sleep(0.8)
  56.         end
  57.     else
  58.         turtle.dig()
  59.     end
  60.     -- If there is any mob infront of the turtle, or we are out of fuel
  61.     -- DEV NOTE: Will be modified later to refuel, or message over rednet wifi
  62.     while not turtle.forward() do
  63.         turtle.attack()
  64.     end
  65.    
  66.     -- Update position
  67.     xPos = xPos + xDir
  68.     zPos = zPos + zDir
  69.    
  70.     if not noFuel then
  71.         -- Update fuel info
  72.         fuelLevel = fuelLevel - 1
  73.    
  74.         -- Fuel checking
  75.         if distToHome() >= fuelLevel then
  76.             retVal = false
  77.         end
  78.     end
  79.    
  80.     return retVal
  81. end
  82.  
  83. local function moveUpRF()
  84.     local retVal = true
  85.     -- Account for falling blocks
  86.     if not speedy then
  87.         while turtle.detectUp() do
  88.             turtle.digUp()
  89.             sleep(0.8)
  90.         end
  91.     else
  92.         turtle.digUp()
  93.     end
  94.     --Update position
  95.     yPos = yPos + 1
  96.    
  97.     while not turtle.up() do
  98.         turtle.attackUp()
  99.     end
  100.    
  101.     if not noFuel then
  102.         -- Update fuel info
  103.         fuelLevel = fuelLevel - 1
  104.    
  105.         -- Fuel checking
  106.         if distToHome() >= fuelLevel then
  107.             retVal = false
  108.         end
  109.     end
  110.    
  111.     return retVal
  112. end
  113.  
  114. local function moveDownRF()
  115.     local retVal = true
  116.     -- No need to account for falling blocks
  117.     turtle.digDown()
  118.    
  119.     -- Update position
  120.     yPos = yPos - 1
  121.    
  122.     while not turtle.down() do
  123.         turtle.attackDown()
  124.     end
  125.    
  126.     if not noFuel then
  127.         -- Update fuel info
  128.         fuelLevel = fuelLevel - 1
  129.        
  130.         -- Fuel checking
  131.         if distToHome() >= fuelLevel then
  132.             retVal = false
  133.         end
  134.     end
  135.    
  136.     return retVal
  137. end
  138.  
  139. -- Move functions, with fuel checking (will be ignored if noFuel mode is selected)
  140. local function moveForward()
  141.     if not moveForwardRF() then
  142.         refuel()
  143.     end
  144. end
  145.  
  146. local function moveUp()
  147.     if not moveUpRF() then
  148.         refuel()
  149.     end
  150. end
  151.  
  152. local function moveDown()
  153.     if not moveDownRF() then
  154.         refuel()
  155.     end
  156. end
  157.  
  158. local function turnLeft()
  159.     -- Update direction vector
  160.     zDir, xDir = -xDir, zDir
  161.    
  162.     turtle.turnLeft()
  163. end
  164.  
  165. local function turnRight()
  166.     -- Update direction vector
  167.     zDir, xDir = xDir, -zDir
  168.    
  169.     turtle.turnRight()
  170. end
  171.  
  172. local function turnAround()
  173.     -- Update direction
  174.     zDir, xDir = -zDir, -xDir
  175.    
  176.     turtle.turnLeft()
  177.     turtle.turnLeft()
  178. end
  179.  
  180. -- Turns the turtle to the prompted direction
  181. local function turnToDir(x, z)
  182.     if x == 1 and xDir == 0 then
  183.         if zDir == 1 then
  184.             turnLeft()
  185.         else
  186.             turnRight()
  187.         end
  188.     elseif x == 1 and xDir == -1 then
  189.         turnAround()
  190.     elseif x == -1 and xDir == 0 then
  191.         if zDir == 1 then
  192.             turnRight()
  193.         else
  194.             turnLeft()
  195.         end
  196.     elseif x == -1 and xDir == 1 then
  197.         turnAround()
  198.     elseif z == 1 and zDir == 0 then
  199.         if xDir == 1 then
  200.             turnRight()
  201.         else
  202.             turnLeft()
  203.         end
  204.     elseif z == 1 and zDir == -1 then
  205.         turnAround()
  206.     elseif z == -1 and zDir == 0 then
  207.         if xDir == 1 then
  208.             turnLeft()
  209.         else
  210.             turnRight()
  211.         end
  212.     elseif z == -1 and zDir == 1 then
  213.         turnAround()
  214.     else
  215.         return false
  216.     end
  217.     return true
  218. end
  219.  
  220. -- Takes in a coordinate and moves the turtle there
  221. -- IMPLEMENTATION NOTE: Turtle will be facing in whatever direction it finishes in.
  222. --                      Keep this in mind, as it might affect what happens next.
  223. local function moveToPos(x, y, z)
  224.  
  225.     -- Move the turtle to the required X value
  226.         if x > xPos then
  227.             turnToDir(1, 0)
  228.             while x > xPos do
  229.                 moveForward()
  230.             end
  231.         elseif x < xPos then
  232.             turnToDir(-1, 0)
  233.             while x < xPos do
  234.                 moveForward()
  235.             end
  236.         end
  237.    
  238.     -- Move the turtle to the required Z value
  239.         if z > zPos then
  240.             turnToDir(0, 1)
  241.             while z > zPos do
  242.                 moveForward()
  243.             end
  244.         elseif z < zPos then
  245.             turnToDir(0, -1)
  246.             while z < zPos do
  247.                 moveForward()
  248.             end
  249.         end
  250.        
  251.     -- Move the turtle to the required Y value
  252.         if y > yPos then
  253.             while y > yPos do
  254.                 moveUp()
  255.             end
  256.         else
  257.             while y < yPos do
  258.                 moveDown()
  259.             end
  260.         end
  261. end
  262.  
  263. -- End of movement functions
  264. -- **************************************************
  265.    
  266. -- ++++++++++++++++++++++++++++++++++++++++++++++++++
  267. -- Logic functions
  268.  
  269. -- Saves the current dig position and direction
  270. local function saveDig()
  271.     local retVal = 0
  272.     if save1Mutex == 0 then
  273.         xSav1 = xPos
  274.         ySav1 = yPos
  275.         zSav1 = zPos
  276.         xDirSav1 = xDir
  277.         zDirSav1 = zDir
  278.         save1Mutex = 1
  279.         retVal = 1
  280.     elseif save2Mutex == 0 then
  281.         xSav2 = xPos
  282.         ySav2 = yPos
  283.         zSav2 = zPos
  284.         xDirSav2 = xDir
  285.         zDirSav2 = zDir
  286.         save2Mutex = 1
  287.         retVal = 2
  288.     end
  289.     return retVal
  290. end
  291.  
  292. -- Dumps the load into a chest or thin air
  293. local function dumpLoad()
  294.     for n = 1, 16 do
  295.         turtle.select(n)
  296.         turtle.drop()
  297.     end
  298. end
  299.  
  300.  
  301. -- Moves the turtle back to the last saved position and direction
  302. local function resumeDig(save)
  303.     if save == 1 then
  304.         moveToPos(xSav1, ySav1, zSav1)
  305.         turnToDir(xDirSav1, zDirSav1)
  306.         save1Mutex = 0
  307.     elseif save == 2 then
  308.         moveToPos(xSav2, ySav2, zSav2)
  309.         turnToDir(xDirSav2, xDirSav2)
  310.         save2Mutex = 0
  311.     end
  312. end
  313.  
  314. -- Move the turtle to the home and fuel chests, dump load and refuel, then
  315. -- resume digging
  316. function refuel()
  317.     local save
  318.    
  319.     isRefuelling = 1
  320.    
  321.     save = saveDig()
  322.     moveToPos(0, 0, 0)
  323.     turnToDir(-1, 0)
  324.     dumpLoad()
  325.     turnToDir(0, -1)
  326.     turtle.select(1)
  327.     turtle.suck()
  328.     turtle.refuel()
  329.    
  330.     fuelLevel = turtle.getFuelLevel()
  331.    
  332.     resumeDig(save)
  333.    
  334.     isRefuelling = 0
  335. end
  336.  
  337.  
  338. -- Simply checks if the turtle is full
  339. -- DEV NOTE: this is kind of brute-forcish, I wonder if there's a better way?
  340. local function isFull()
  341.     local retVal = true
  342.     for n = 1, 16 do
  343.         if turtle.getItemCount(n) == 0 then
  344.             retVal = false
  345.         end
  346.     end
  347.     return retVal
  348. end
  349.  
  350. -- Digs the current strip in the current layer
  351. local function digStrip()
  352.     for i = 2, sizeX do
  353.         moveForward()
  354.         if isFull() then
  355.             local save
  356.             save = saveDig()
  357.             moveToPos(0,0,0)
  358.             turnToDir(-1, 0)
  359.             dumpLoad()
  360.             resumeDig(save)
  361.         end
  362.     end
  363. end
  364.  
  365. -- Turns the turtle in the correct direction at the end of digging a strip
  366. local function stripTurn(strips)
  367.     if strips ~= sizeZ - 1 and sizeZ % 2 == 1 then
  368.         if strips % 2 == 1 then
  369.             turnLeft()
  370.             moveForward()
  371.             turnLeft()
  372.         else
  373.             turnRight()
  374.             moveForward()
  375.             turnRight()
  376.         end
  377.     elseif strips ~= sizeZ -1 and sizeZ % 2 == 0 then
  378.         if yPos % 2 == 0 and strips % 2 == 0 then
  379.             turnRight()
  380.             moveForward()
  381.             turnRight()
  382.         elseif yPos % 2 == 1 and strips % 2 == 1 then
  383.             turnRight()
  384.             moveForward()
  385.             turnRight()
  386.         else
  387.             turnLeft()
  388.             moveForward()
  389.             turnLeft()
  390.         end
  391.     end
  392. end
  393.  
  394. -- Digs the current layer
  395. local function digLayer()
  396.     local strips = 0
  397.     print("Beginning layer: "..yPos)
  398.     for i = 1, sizeZ do
  399.         digStrip()
  400.         stripTurn(strips)
  401.         strips = strips + 1
  402.     end
  403. end
  404.  
  405.  
  406. -- This function controls the digging of the hole
  407. local function digOut()
  408. -- This for loop controls how many layers we are going to dig
  409.     for n = 1, depth do
  410.         digLayer()
  411.         -- If this was no the last layer, then start digging the next one, otherwise,
  412.         -- head home and empty contents into the chest
  413.         if n ~= depth then
  414.             turnAround()
  415.             moveDown()
  416.         elseif n == depth then
  417.             moveToPos(0, 0, 0)
  418.             turnToDir(-1, 0)
  419.             dumpLoad()
  420.             turnToDir(1, 0)
  421.         end
  422.     end
  423. end
  424.  
  425. local function validateInputs(argv)
  426.     local retVal = true
  427.     if not type(argv[1], "number") then
  428.         retVal = false
  429.         print("Fail 1")
  430.     elseif not type(argv[2], "number") then
  431.         retVal = false
  432.         print("Fail 2")
  433.     elseif not type(argv[3], "number") then
  434.         retVal = false
  435.         print("Fail 3")
  436.     elseif argv[4] ~= nil and argv[4] ~= "-s" and argv[4] ~= "-fc" then
  437.         retVal = false
  438.         print("Fail 4")
  439.     elseif argv[5] ~= nil and argv[5] ~= "-fc" then
  440.         retVal = false
  441.         print("Fail 5")
  442.     end
  443.     return retVal
  444. end
  445.        
  446.  
  447. -- End of logic functions
  448. -- ++++++++++++++++++++++++++++++++++++++++++++++++++
  449.  
  450. -- Main function controls flow of program
  451. local function main(argc, argv)
  452.     if not validateInputs(argv) then
  453.         --[[print("Usage: hole <size X> <size Z> <depth> -s -fc")
  454.         print("")
  455.         print("-s : speed mode, does not check for falling blocks")
  456.         print("-fc : fuel chest present, should be filled with fuel and placed to the left of the turtle before starting")
  457.         print("")
  458.         print("Created by: Pyro_")
  459.         print("Credit to: theoriginalbit, BigSHinyToys and BombMan")
  460.         return false]]
  461.     end
  462.    
  463.     -- Test if the 'speedy' or 'fuel chest' flags were set
  464.     if argv[4] == "-s" then
  465.         speedy = true
  466.         print("Speed mode")
  467.     elseif argv[4] == "-fc" then
  468.         fuelChest = true
  469.         print("Fuel chest mode")
  470.     else
  471.     -- If we're not in fuel chest mode, then ignore fuel checking
  472.         noFuel = true
  473.     end
  474.    
  475.     -- Since users may want fuel chest mode and speedy mode
  476.     if argv[5] == "-fc" then
  477.         fuelChest = true
  478.         print("Fuel chest mode")
  479.     else
  480.     -- If we're not in fuel chest mode, then ignore fuel checking
  481.         noFuel = true
  482.     end
  483.    
  484.     -- Backwards compatability, think C ternary operation
  485.     -- fuelLevel will be ignored if noFuel flag is set
  486.     fuelLevel = turtle.getFuelLevel and turtle.getFuelLevel() or "unlimited"
  487.    
  488.     -- Will skip fuel checking
  489.     if fuelLevel == "unlimited" then
  490.         noFuel = true
  491.     end
  492.    
  493.     sizeX = tonumber(argv[1])
  494.     sizeZ = tonumber(argv[2])
  495.     depth = tonumber(argv[3])
  496.    
  497.     local dims = string.format("Dimensions: X: %i Z: %i Depth: %i", sizeX, sizeZ, depth)
  498.    
  499.     print("Beginning dig...")
  500.     print(dims)
  501.     digOut()
  502.     print("Finished dig...")
  503.    
  504. end
  505.  
  506. main(#{...}, {...})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement