Advertisement
Master_Jynx

Untitled

Mar 12th, 2014
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.67 KB | None | 0 0
  1. --[[
  2. Quarry Mining Script v 1.0 Alpha
  3.  
  4.  
  5. by Master_Jynx
  6.  
  7. *******************************************************************************************************
  8. *   Usage:                                                          *
  9. *   The Auto Resume feature requires you to add a command to the startUp file               *
  10. *   <script name> -r                                                        *
  11. *   where <script name> is what you named this script when saving it.                       *
  12. *                                                                   *
  13. *   Place the turtle on the bottom left of the quarry area, it will mine forward and rightward. *
  14. *   Place 1 chest above the turtle's and only place fuel in it                          *
  15. *   Don't use fuel that leave bukkits or other other empty objects behind.                  *
  16. *   Place a chest behind the turtle, for it to unload into.                         *
  17. *                                                                   *
  18. *   Place a chest in slot 15 and a chest cart in slot 14. It will use these to collect the      *
  19. *   contents of chests and chest carts.                                         *
  20. *                                                                   *
  21. *   Leave Slot 16 Empty, the turtle will fill it                                    *
  22. *******************************************************************************************************
  23.  
  24. Directional Notes on Facing values
  25. When facing North F=2 Z-coord decreases by 1
  26. When facing East    F=3 X-coord increases by 1
  27. When facing South F=0 Z-coord increases by 1
  28. When facing West    F=1 X-coord decreases by 1
  29. --]]
  30.  
  31. -- **********************************************
  32. -- *    status variable is used to monitor what *
  33. -- *    the script should be doing          *
  34. -- *    0=script starting                   *
  35. -- *  1=Error, stop script              *
  36. -- *    2=Not resuming, ask for data            *
  37. -- *    3=Trying to resume              *
  38. -- *    4=Quarrying                     *
  39. -- *    5=Go Home to unload or refuel           *
  40. -- *  6=Quarry Done, head to start position *
  41. -- **********************************************
  42.  
  43. local paramFile = "jQuarrySettings.txt"
  44. local resumeFile = "jQuarryResume.txt"
  45. local TrafficY = -1
  46. local status  = 0
  47. local turnDir = 1
  48.  
  49. local QuarryDone = false
  50. local maxDigTry = 16
  51. local goHome = false
  52. local QuarrySize = 0
  53. local QuarryD = 0
  54. local QuarryDone = false
  55.  
  56. local StartX = 0
  57. local StartY = 0
  58. local StartZ = 0
  59.  
  60. local CurrentX = 0
  61. local CurrentY = 0
  62. local CurrentZ = 0
  63.  
  64. local resumeX = 0
  65. local resumeY = 0
  66. local resumeZ = 0
  67.  
  68. local BaseX = 0
  69. local BaseY = 0
  70. local BaseZ = 0
  71.  
  72. local BorderN = 0
  73. local BorderW = 0
  74. local BorderS = 0
  75. local BorderE = 0
  76.  
  77. local LastX = 0
  78. local LastZ = 0
  79. local lastIsEven = nil
  80.  
  81. local Facing = nil
  82. local startFacing = nil
  83. local resumeFacing = nil
  84.  
  85. local minCoal = 10
  86. local minFuel = 100
  87.  
  88. -- *************************************************
  89. -- *    Checks for GPS, current location and checks  *
  90. -- *    command line arguments                 *
  91. -- *************************************************
  92.  
  93. function startUp(...)
  94.     local x,y,z = gps.locate(3)
  95.     if (x == nil) then
  96.         print("GPS system not responding.")
  97.         print("Fix it, then restart this script")
  98.         status = 1
  99.         return
  100.     end
  101.     CurrentX = x
  102.     CurrentY = y
  103.     CurrentZ = z
  104.     if #arg == 0 then
  105.         status = 2
  106.     end
  107.     if #arg > 1 then
  108.         status = 1
  109.         print("Invalid number of arguments")
  110.         return
  111.     end
  112.     if (#arg == 1) then
  113.         if (arg[1] == "-r") then
  114.             status = 3
  115.         else
  116.             status = 1
  117.             print("Invalid argument")
  118.             print("only -r is currently supported")
  119.             print("please correct the error and restart the script")
  120.         end
  121.     end
  122. end
  123. function intro()
  124.     term.clear()
  125.     term.setCursorPos(1,1)
  126.     print("Welcome to Master_Jynx's")
  127.     print("Quarry Script version 1.0.5")
  128.     print("Beginning New Quarry Setup")
  129.     sleep(3)
  130.     while (QuarrySize < 4 or QuarrySize > 20) do
  131.         term.clear()
  132.         term.setCursorPos(1,1)
  133.         print("Quarry Width & Length will be the same")
  134.         print("Quarry Size must be 4 to 20")
  135.         print("Enter Size: ")
  136.         QuarrySize = math.floor(math.abs(tonumber(io.read())))
  137.     end
  138.     while (QuarryD < 5 or QuarryD > 200) do
  139.         term.clear()
  140.         term.setCursorPos(1,1)
  141.         print("What Level to stop on?")
  142.         print("Level 5 is the lowest.")
  143.         print("Will stop @ bedrock")
  144.         print("Enter Depth: ")
  145.         QuarryD = math.floor(math.abs(tonumber(io.read())))
  146.         if QuarryD < 5 then
  147.             print("Depth too low.")
  148.             print("Set Depth to Level 5 or higher")
  149.         end
  150.         if QuarryD > 128 then
  151.             print("Depth too high.")
  152.         end
  153.     end
  154.     sleep(1)
  155.     term.clear()
  156.     term.setCursorPos(1,1)
  157.     print("Place 1 chest cart in slot 14 ")
  158.     print("and 1 chest in slot 15")
  159.     while ((turtle.getItemCount(14) ~= 1) or (turtle.getItemCount(15) ~= 1)) do
  160.         sleep(0.5)
  161.     end
  162.     term.clear()
  163.     term.setCursorPos(1,1)
  164.     print("Thank You")
  165.     print("Turlte will now calibrate itself and begin mining.")
  166.     print("Please close this window and step away.")
  167.     sleep(2)
  168. end
  169.  
  170. -- **************************************************
  171. -- *        Used to find which way turtle is facing *
  172. -- **************************************************
  173.  
  174. function getFacing()
  175.     local loop = 0
  176.     while not turtle.forward() do
  177.         turtle.attack()
  178.         turtle.dig()
  179.         loop = loop + 1
  180.         sleep(0.8)
  181.         if loop > maxDigTry then
  182.             status = 1
  183.             return
  184.         end
  185.     end
  186.     BaseX,BaseY,BaseZ = gps.locate()
  187.     Facing = ((BaseX < CurrentX) and 1 or ((BaseX > CurrentX) and 3 or ((BaseZ < CurrentZ) and 2 or 0)))
  188.     turtle.turnRight()
  189.     turtle.turnRight()
  190.     while loop <= maxDigTry do
  191.         if not turtle.forward() then
  192.             turtle.attack()
  193.             turtle.dig()
  194.             loop = loop + 1
  195.             sleep(0.8)
  196.         else
  197.             loop = 0
  198.             break
  199.         end
  200.     end
  201.     turtle.turnRight()
  202.     turtle.turnRight()
  203. end
  204.  
  205. -- **************************************************
  206. -- *        Used to find which way turtle is facing *
  207. -- **************************************************
  208. function changeFacing(a)
  209.     while (Facing ~= a) do
  210.         turtle.turnRight()
  211.         Facing = Facing + 1
  212.         if (Facing > 3) then
  213.             Facing = 0
  214.         end
  215.     end
  216. end
  217.  
  218. --**** Fueling scripts ****
  219. function checkFuel(count,level)
  220.     local a = 0
  221.     a = (turtle.getFuelLevel() < level) and (a + 1) or a
  222.     a = (turtle.getItemCount(16) < count) and (a + 10) or a
  223.     return a
  224. end
  225.  
  226. function fuelUp(level)
  227.     turtle.select(16)
  228.     while (turtle.getFuelLevel() < level) do
  229.         turtle.refuel(1)
  230.     end
  231.     turtle.select(1)
  232. end
  233.  
  234. function fillTank(count)
  235.     turtle.select(16)
  236.     while (turtle.getItemCount(16) < count) do
  237.         if not turtle.suckUp() then
  238.             term.clear()
  239.             term.write("Add more fuel to fuel chest")
  240.             term.write("I'm waiting to refuel.....")
  241.             sleep(10)
  242.         end
  243.     end
  244.     turtle.select(1)
  245. end
  246.  
  247.  
  248.  
  249. --****  Movement scripts ****
  250.  
  251. function moveForward()
  252.     while not turtle.forward() do
  253.         turtle.attack()
  254.         sleep(0.8)
  255.     end
  256.     if (Facing == 0) then
  257.         CurrentZ = CurrentZ + 1
  258.     end
  259.     if (Facing == 1) then
  260.         CurrentX = CurrentX - 1
  261.     end
  262.     if (Facing == 2) then
  263.         CurrentZ = CurrentZ - 1
  264.     end
  265.     if (Facing == 3) then
  266.         CurrentX = CurrentX + 1
  267.     end
  268. end
  269.  
  270. function moveUp()
  271.     while not turtle.up() do
  272.         if turtle.detectUp()then
  273.             turtle.digUp()
  274.             sleep(0.8)
  275.         else
  276.             turtle.attackUp()
  277.         end
  278.     end
  279.     CurrentY = CurrentY + 1
  280. end
  281.  
  282. function moveDown()
  283.     while not turtle.down() do
  284.         if turtle.detectDown()then
  285.             turtle.digDown()
  286.             sleep(0.8)
  287.         else
  288.             turtle.attackDown()
  289.         end
  290.     end
  291.     CurrentY = CurrentY - 1
  292. end
  293.  
  294. function gotoHome()
  295.     local a = 0
  296.     moveTo(BaseX,StartY,BaseZ)
  297.     moveTo(StartX,StartY,StartZ)
  298.     changeFacing(startFacing)
  299.     if (status ~=6) and (status ~= 1) then
  300.         a = checkFuel(minCoal,minFuel)
  301.         if (a == 10) or (a == 11) then
  302.             fillTank(minCoal)
  303.         end
  304.         if (a == 1) or (a == 11) then
  305.             fuelUp(minFuel)
  306.         end
  307.     end
  308.     turtle.turnLeft()
  309.     turtle.turnLeft()
  310.     for i=1,13 do
  311.         while (turtle.getItemCount(i) ~= 0) do
  312.             turtle.select(i)
  313.             turtle.drop()
  314.         end
  315.     end
  316.     turtle.turnLeft()
  317.     turtle.turnLeft()
  318.     if (status == 6) or (Status == 1) then
  319.         QuarryDone = true
  320.         return
  321.     else
  322.         goHome = false
  323.         status = 4
  324.         moveForward()
  325.         moveTo(resumeX,resumeY,resumeZ)
  326.         changeFacing(resumeFacing)
  327.     end
  328. end
  329.  
  330.  
  331. function moveTo(X1,Y1,Z1)
  332.     local a
  333.     if (CurrentY ~= Y1) then
  334.         while (CurrentY ~= Y1) do
  335.             a = (CurrentY < Y1) and moveUp() or moveDown()
  336.         end
  337.     end
  338.     if (CurrentX ~= X1) then
  339.         changeFacing((CurrentX > X1) and 1 or 3)
  340.         while (CurrentX ~= X1) do
  341.             moveForward()
  342.         end
  343.     end
  344.     if (CurrentZ ~= Z1) then
  345.         changeFacing((CurrentZ > Z1) and 2 or 0)
  346.         while (CurrentZ ~= Z1) do
  347.             moveForward()
  348.         end
  349.     end
  350. end
  351. --*****************************************************
  352. --**    0=South 1=West  2=North 3=East  *
  353. --** When facing North F=2 Z-coord decreases by 1   *
  354. --** When facing East   F=3 X-coord increases by 1  *
  355. --** When facing South F=0 Z-coord increases by 1   *
  356. --** When facing West   F=1 X-coord decreases by 1  *
  357. --*****************************************************
  358.  
  359. function nextLevel()
  360.     turnDir = 1
  361.     local depth = CurrentY - QuarryD
  362.     if depth <= 1 then
  363.         status = 6
  364.         QuarryDone = true
  365.         dataSwap1()
  366.         gotoHome()
  367.         return
  368.     end
  369.     if depth == 2 then
  370.         moveDown()
  371.     end
  372.     if depth == 3 then
  373.         moveDown()
  374.         moveDown()
  375.     end
  376.     if depth >= 4 then
  377.         moveDown()
  378.         moveDown()
  379.         moveDown()
  380.     end
  381. end
  382.  
  383. function dataSwap1()
  384.     resumeX = CurrentX
  385.     resumeY = CurrentY
  386.     resumeZ = CurrentZ
  387.     resumeFacing = Facing
  388. end
  389.  
  390. --*****************************************************
  391. --** Starting calibration. doesn't run on resume.   *
  392. --** sets Borders, starting position and facing     *
  393. --*****************************************************
  394. --*****************************************************
  395. --**    0=South 1=West  2=North 3=East  *
  396. --** When facing North F=2 Z-coord decreases by 1   *
  397. --** When facing East   F=3 X-coord increases by 1  *
  398. --** When facing South F=0 Z-coord increases by 1   *
  399. --** When facing West   F=1 X-coord decreases by 1  *
  400. --*****************************************************
  401.  
  402. function calibrate()
  403.     StartX = CurrentX
  404.     StartY = CurrentY
  405.     StartZ = CurrentZ
  406.     getFacing()
  407.     startFacing = Facing
  408.     if (Facing == 0) then
  409.         BorderS = StartZ + (QuarrySize)
  410.         BorderW = StartX - (QuarrySize - 1)
  411.         BorderN = StartZ + 1
  412.         BorderE = StartX
  413.     end
  414.     if (Facing == 1) then
  415.         BorderS = StartZ
  416.         BorderW = StartX - (QuarrySize)
  417.         BorderN = StartZ - (QuarrySize - 1)
  418.         BorderE = StartX + 1
  419.     end
  420.     if (Facing == 2) then
  421.         BorderS = StartZ + 1
  422.         BorderW = StartX
  423.         BorderN = StartZ - (QuarrySize)
  424.         BorderE = StartX + (QuarrySize - 1)
  425.     end
  426.     if (Facing == 3) then
  427.         BorderS = StartZ + (QuarrySize - 1)
  428.         BorderW = StartX + 1
  429.         BorderN = StartZ
  430.         BorderE = StartX + (QuarrySize)
  431.     end
  432.     findEnd()
  433.     TrafficY = StartY
  434. end
  435.  
  436. function findEnd()
  437.     lastIsEven = (QuarrySize == math.floor(QuarrySize/2)*2) and true or false
  438.     if lastIsEven then
  439.         if Facing == 0 then
  440.             LastX = BorderW
  441.             LastZ = BorderN
  442.         end
  443.         if Facing == 1 then
  444.             LastX = BorderE
  445.             LastZ = BorderN
  446.         end
  447.         if Facing == 2 then
  448.             LastX = BorderE
  449.             LastZ = BorderS
  450.         end
  451.         if Facing == 3 then
  452.             LastX = BorderW
  453.             LastZ = BorderS
  454.         end
  455.     else
  456.         if Facing == 0 then
  457.             LastX = BorderW
  458.             LastZ = BorderS
  459.         end
  460.         if Facing == 1 then
  461.             LastX = BorderW
  462.             LastZ = BorderN
  463.         end
  464.         if Facing == 2 then
  465.             LastX = BorderE
  466.             LastZ = BorderN
  467.         end
  468.         if Facing == 3 then
  469.             LastX = BorderE
  470.             LastZ = BorderS
  471.         end
  472.     end
  473. end
  474.  
  475. --**** File Operations ****
  476. function saveParam()
  477.     local file = fs.open(paramFile,"w")
  478.     file.writeLine(QuarrySize)
  479.     file.writeLine(QuarryD)
  480.     file.writeLine(StartX)
  481.     file.writeLine(StartY)
  482.     file.writeLine(StartZ)
  483.     file.writeLine(startFacing)
  484.     file.writeLine(BorderN)
  485.     file.writeLine(BorderW)
  486.     file.writeLine(BorderS)
  487.     file.writeLine(BorderE)
  488.     file.writeLine(LastX)
  489.     file.writeLine(LastZ)
  490.     file.close()
  491. end
  492. function saveResume()
  493.     local file = fs.open(resumeFile,"w")
  494.     file.writeLine(CurrentX)
  495.     file.writeLine(CurrentY)
  496.     file.writeLine(CurrentZ)
  497.     file.writeLine(Facing)
  498.     file.writeLine(goHome)
  499.     file.writeLine(QuarryDone)
  500.     file.close()
  501. end
  502.  
  503.  
  504. -- *************************************************
  505. -- *    Tries to load Resume Data from the 2 files   *
  506. -- *************************************************
  507.  
  508. function tryResume()
  509.     local file
  510.     local file1 = fs.exists(paramFile)
  511.     local file2 = fs.exists(resumeFile)
  512.     if (file1 == false or file2 == false) then
  513.         print("Resume files not found.")
  514.         print("Unable to continue.")
  515.         status = 1
  516.         gotoHome()
  517.         return
  518.     end
  519.     if (status ~= 1) then
  520.         file = fs.open(paramFile,"r")
  521.         local fileData = {}
  522.         local line = file.readLine()
  523.         while (line ~= nil) do
  524.             table.insert(fileData,line)
  525.             line = file.readLine()
  526.         end
  527.         file.close()
  528.         for i=1,#fileData do
  529.             if (fileData[1] == nil) then
  530.             status = 1
  531.             end
  532.         end
  533.         if (#fileData ~= 11) then
  534.             status = 1
  535.         end
  536.         if (status ~= 1) then
  537.             QuarrySize = fileData[1]
  538.             QuarryD = fileData[2]
  539.             StartX = fileData[3]
  540.             StartY = fileData[4]
  541.             StartZ = fileData[5]
  542.             startFacing = fileData[6]
  543.             BorderN = fileData[7]
  544.             BorderW = fileData[8]
  545.             BorderS = fileData[9]
  546.             BorderE = fileData[10]
  547.             LastX = fileData[11]
  548.             LastZ = fileData[12]
  549.             TrafficY = StartY
  550.         end
  551.         if (status ~= 1) then
  552.             file = fs.open(resumeFile,"r")
  553.             fileData = {}
  554.             line = file.readLine()
  555.             while (line ~= nil) do
  556.                 table.insert(fileData,line)
  557.                 line = file.readLine()
  558.             end
  559.             file.close()
  560.             for i=1,#fileData do
  561.                 if (fileData[1] == nil) then
  562.                 status = 1
  563.                 end
  564.             end
  565.             if (#fileData ~= 6) then
  566.                 status = 1
  567.             end
  568.             if (status ~= 1) then
  569.                 resumeX = fileData[1]
  570.                 resumeY = fileData[2]
  571.                 resumeZ = fileData[3]
  572.                 resumeFacing = fileData[4]
  573.                 goHome = fileData[5]
  574.                 QuarryDOne = fileData[6]
  575.  
  576.             end
  577.         end
  578.     end
  579.  
  580. end
  581.  
  582. --**** Mining script ****
  583. -- **********************************************************
  584. -- *    0=South 1=West  2=North 3=East          *
  585. -- **********************************************************
  586.  
  587. function doMine(loops)
  588.     local d = CurrentY - 1
  589.     local a,b,c = false,0,0
  590.     if not countEmptySlots(2) then
  591.         dataSwap1()
  592.         gotoHome()
  593.     end
  594.     for i=1,loops do
  595.         if (CurrentX == LastX and CurrentZ == LastZ) then
  596.             if QuarryD >= d then
  597.                 status = 6
  598.                 gotoHome()
  599.             else
  600.                 turtle.digUp()
  601.                 turtle.digDown()
  602.                 moveTo(BaseX,CurrentY,BaseZ)
  603.                 dataSwap1()
  604.                 resumeFacing = startFacing
  605.                 gotoHome()
  606.                 I = loops + 1
  607.                 nextLevel()
  608.                 return
  609.             end
  610.         end
  611.  
  612.         if (Facing == 0) then
  613.             if (CurrentZ == BorderS) then
  614.                 if (turnDir == 1) then
  615.                     a,b,c = true,1,2
  616.                     turnDir = 2
  617.                 else
  618.                     a,b,c = true,3,2
  619.                     turnDir = 1
  620.                 end
  621.             end
  622.         elseif (Facing == 1) then
  623.             if (CurrentX == BorderW) then
  624.                 if (turnDir == 1) then
  625.                     a,b,c = true,2,3
  626.                     turnDir = 2
  627.                 else
  628.                     a,b,c = true,0,3
  629.                     turnDir = 1
  630.                 end
  631.             end
  632.         elseif (Facing == 2) then
  633.             if (CurrentZ == BorderN) then
  634.                 if (turnDir == 1) then
  635.                     a,b,c = true,3,0
  636.                     turnDir = 2
  637.                 else
  638.                     a,b,c = true,1,0
  639.                     turnDir = 1
  640.                 end
  641.             end
  642.         elseif (Facing == 3) then
  643.             if (CurrentX == BorderE) then
  644.                 if (turnDir == 1) then
  645.                     a,b,c = true,0,1
  646.                     turnDir = 2
  647.                 else
  648.                     a,b,c = true,2,1
  649.                     turnDir = 1
  650.                 end
  651.             end
  652.         end
  653. term.clear()
  654. term.setCursorPos(1,1)
  655. print("Current XYZ: "..CurrentX.."  "..CurrentY.."  "..CurrentZ)
  656. print("Loops:   "..loops)
  657. print("Fuel Level:   "..turtle.getFuelLevel())
  658. print("Status:    "..status)
  659. print("goHome:    "..tostring(goHome))
  660.         if a then
  661.             changeFacing(b)
  662.         end
  663.         tryDig()
  664.         moveForward()
  665.         if a then
  666.             changeFacing(c)
  667.         end
  668.  
  669.     end
  670. end
  671. function tryDig()
  672.     loop = 0
  673.     checkChest()
  674.     checkChestUp()
  675.     checkChestDown()
  676.     turtle.digUp()
  677.     turtle.digDown()
  678.     while (turtle.detect() and loop <= maxDigTry) do
  679.         turtle.dig()
  680.         sleep(0.8)
  681.         loop = loop + 1
  682.     end
  683.     if (loop > maxDigTry) then
  684.         status = 6
  685.         return false
  686.     else
  687.         return true
  688.     end
  689. end
  690.  
  691.  
  692. -- ****************************************************
  693. -- *    Checks for and empties chests and chest carts   *
  694. -- *    Will unload and refuel first, if needed     *
  695. -- ****************************************************
  696. function checkChest()
  697.     local slotMatch = false
  698.     local room = countEmptySlots(6)
  699.     if not room then
  700.         dataSwap1()
  701.         status = 5
  702.         goHome = true
  703.         gotoHome()
  704.         status = 4
  705.     end
  706.     if (turtle.detect()) then
  707.         turtle.select(14)
  708.         slotMatch = (turtle.compare()) and true or false
  709.         turtle.select(15)
  710.         slotMatch = (turtle.compare()) and true or false
  711.  
  712.     end
  713.     if slotMatch then
  714.         while (turtle.suck()) do
  715.         end
  716.     end
  717. end
  718.  
  719. function checkChestUp()
  720.     local slotMatch = false
  721.     local room = countEmptySlots(6)
  722.     if not room then
  723.         dataSwap1()
  724.         status = 5
  725.         goHome = true
  726.         gotoHome()
  727.         status = 4
  728.     end
  729.     if (turtle.detectUp()) then
  730.         turtle.select(14)
  731.         slotMatch = (turtle.compareUp()) and true or false
  732.         turtle.select(15)
  733.         slotMatch = (turtle.compareUp()) and true or false
  734.     end
  735.     if slotMatch then
  736.         while (turtle.suckUp()) do
  737.         end
  738.     end
  739. end
  740.  
  741. function checkChestDown()
  742.     local slotMatch = false
  743.     local room = countEmptySlots(6)
  744.     if not room then
  745.         dataSwap1()
  746.         status = 5
  747.         goHome = true
  748.         gotoHome()
  749.         status = 4
  750.     end
  751.     if (turtle.detectDown()) then
  752.         turtle.select(14)
  753.         slotMatch = (turtle.compareDown()) and true or false
  754.         turtle.select(15)
  755.         slotMatch = (turtle.compareDown()) and true or false
  756.     end
  757.     if slotMatch then
  758.         while (turtle.suckDown()) do
  759.         end
  760.     end
  761. end
  762. function countEmptySlots (num)
  763.     local a = 0
  764.     for i=1,13 do
  765.         a = (turtle.getItemCount(i) > 0) and a + 1 or a
  766.     end
  767.     return (a <= num) and true or false
  768. end
  769.  
  770.  
  771. --********************************************************************
  772.  
  773. -- **********************************************
  774. -- *    Status Codes                    *
  775. -- *    0=script starting                   *
  776. -- *  1=Error, stop script              *
  777. -- *    2=Not resuming, ask for data            *
  778. -- *    3=Trying to resume              *
  779. -- *    4=Quarrying                     *
  780. -- *    5=Go Home to unload or refuel           *
  781. -- *  6=Quarry Done, head to start position *
  782. -- **********************************************
  783.  
  784. -- **********************************************
  785. -- *        Main Program                        *
  786. -- **********************************************
  787.  
  788.  
  789. startUp()
  790. if (status == 1) then return end
  791.  
  792. if (status == 3) then
  793.     tryResume()
  794.     if (status == 1) then
  795.         print("Could not load Resume Data.")
  796.         print("File corruption file errors found.")
  797.         print("Resume not possible")
  798.         return
  799.     end
  800.     if not goHome then
  801.         moveTo(resumeX,resumeY,resumeZ)
  802.         changeFacing(resumeFacing)
  803.         status = 4
  804.     else
  805.         status = 5
  806.         gotoHome()
  807.     end
  808. end
  809.  
  810.  
  811. if (status == 2) then
  812.     local a = 0
  813.     intro()
  814.     a = checkFuel(minCoal,minFuel)
  815.     if (a == 10) or (a == 11) then
  816.         fillTank(minCoal)
  817.     end
  818.     if (a == 1) or (a == 11) then
  819.         fuelUp(minFuel)
  820.     end
  821.     calibrate()
  822.     saveParam()
  823.     saveResume()
  824.     moveForward()
  825.     status = 4
  826. end
  827. -- **********************************
  828. -- *    Main Script Flow Control    *
  829. -- **********************************
  830.  
  831. while ((status == 4) and not QuarryDone) do
  832.     local a = 0
  833.     a = checkFuel(minCoal,minFuel)
  834.     if (a == 10) or (a == 11) then
  835.         fillTank(minCoal)
  836.     end
  837.     if (a == 1) or (a == 11) then
  838.         fuelUp(minFuel)
  839.     end
  840.     doMine(5)
  841.     if (QuarryDone) then
  842.         return
  843.     end
  844. end
  845.  
  846. -- *********************************************************************************
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement