Advertisement
Guest User

Drones v4.2a1

a guest
Nov 17th, 2012
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 23.23 KB | None | 0 0
  1. --[[
  2.  
  3. ===================================
  4.     DRONES v4.2alpha1
  5. ===================================
  6.  
  7. Originally created by Pooslice <[email protected]> (replace underscore with dot)
  8.  
  9. Changes to previous version:
  10. * (v4.2) Turtles now use up all their fuel and are collected by the main turtle after finishing the chunk
  11. * (v4.2) The floppy disk is erased (partially) on setup which allows for reuse of the same disk on following runs
  12. * (v4.1) Fixed a wrong loop-condition that prevented initial startup
  13. * Fixed a bug where drones could get confused if two controller turtles were used directly next to each other.
  14. * Finished turtles now get picked up by the main turtle at the end and are placed in their respective chest.
  15. * Introduced the 'force' parameter to start immediately without further user interaction.
  16. * Improved some of the pathfinding for handling unexpected blocks in the turtle's way during maintenance.
  17. * Improved fuel management during vertical digging (after hitting bedrock).
  18. * Reduced some waiting times.
  19.  
  20. For more information read the forum post: http://www.computercraft.info/forums2/index.php?/topic/5241-14-the-lazy-mans-way-to-clear-a-chunk/
  21. ]]--
  22.  
  23. STARTUPTIME = os.clock()
  24.  
  25. -- get call parameters
  26. local tArgs = { ... }
  27.  
  28. -- get the script name and path. a bit hacky, but it works ...
  29. SCRIPTPATH = shell.getRunningProgram()
  30. if string.find(SCRIPTPATH, "/") then
  31.     SCRIPTNAME = string.reverse(SCRIPTPATH)
  32.     SCRIPTNAME = string.reverse(string.sub(SCRIPTNAME, 0, string.find(SCRIPTNAME, "/")-1))
  33. else
  34.     SCRIPTNAME = SCRIPTPATH
  35. end
  36.  
  37. -- constants
  38. -- values below 100 make no sense as the distance to the refuel station will be that high already
  39. -- 4 coal per turtle -> one stack of coal initially plus one coal for the floppy setup
  40. REFUELTHRESHOLD = 96 * 4
  41. DEBUGMODE = false
  42. LOGFILENAME = nil
  43. -- untested and therefore not yet accessible
  44. DILIGENTMODE = false
  45.  
  46. function debug(message)
  47.     if DEBUGMODE then print(message) end
  48.     if LOGFILENAME then
  49.         local fp = fs.open(LOGFILENAME, "a")
  50.         if fp then
  51.             fp.writeLine(message)
  52.             fp.close()
  53.         end
  54.     end
  55. end
  56.  
  57. debug("Startup-Time: " .. STARTUPTIME)
  58.  
  59. -- compensate for fuelless mode
  60. FUELLESS = false
  61. if turtle.getFuelLevel() == "unlimited" then
  62.     FUELLESS = true
  63.     turtle.getFuelLevel = function()
  64.         return 2 + REFUELTHRESHOLD
  65.     end
  66. end
  67.  
  68. -- don't care where
  69. rednet.open("right")
  70. rednet.open("left")
  71. rednet.open("top")
  72. rednet.open("bottom")
  73. rednet.open("front")
  74. rednet.open("back")
  75.  
  76. -- try to clear the space above the turtle
  77. function clearUp()
  78.     debug("clearUp()")
  79.     if not turtle.detectUp() then
  80.         while turtle.attackUp() do end
  81.     end
  82.     turtle.digUp()
  83.     return not turtle.detectUp()
  84. end
  85.  
  86. -- see clearUp()
  87. function clearDown()
  88.     debug("clearDown()")
  89.     if not turtle.detectDown() then
  90.         while turtle.attackDown() do end
  91.     end
  92.     turtle.digDown()
  93.     return not turtle.detectDown()
  94. end
  95.  
  96. -- see clearUp()
  97. function clearForward()
  98.     debug("clearForward()")
  99.     if not turtle.detect() then
  100.         while turtle.attack() do end
  101.     end
  102.     turtle.dig()
  103.     return not turtle.detect()
  104. end
  105.  
  106. -- as clearUp(), but also tries to move in that direction
  107. function tryUp()
  108.     debug("tryUp()")
  109.     if turtle.up() then
  110.         return true
  111.     end
  112.     clearUp()
  113.     return turtle.up()
  114. end
  115.  
  116. -- see tryUp()
  117. function tryDown()
  118.     debug("tryDown()")
  119.     if turtle.down() then
  120.         return true
  121.     end
  122.     clearDown()
  123.     return turtle.down()
  124. end
  125.  
  126. -- see tryUp()
  127. -- with our digging strategy a maximum of 2 blocks must be digged out (one normal and one if it is falling sand or gravel)
  128. -- we add one try in case something went wrong or there was some lag
  129. function tryForward()
  130.     debug("tryForward()")
  131.     for i = 1, 3 do
  132.         if turtle.forward() then
  133.             return true
  134.         end
  135.         if not turtle.detect() then
  136.             while turtle.attack() do end
  137.         end
  138.         turtle.dig()
  139.     end
  140.     return turtle.forward()
  141. end
  142.  
  143. -- try to use one item from the inventory as fuel
  144. function refuelOneFromInventory()
  145.     for i = 1, 16 do
  146.         local fl = turtle.getFuelLevel()
  147.         turtle.select(i)
  148.         turtle.refuel(1)
  149.         if turtle.getFuelLevel() > fl then
  150.             return true
  151.         end
  152.     end
  153.     return false
  154. end
  155.  
  156. -- check if turtle's inventory is completely full
  157. function isInventoryFull()
  158.     debug("isInventoryFull()")
  159.     for i = 1, 16 do
  160.         if turtle.getItemCount(i) == 0 then
  161.             return false
  162.         end
  163.     end
  164.     return true
  165. end
  166.  
  167. -- return to our chest, drop everything there and refuel if necessary
  168. -- returns new x, y, z and face which should be the same as when calling the function
  169. function maintenance(refuelId, x, y, z, face)
  170.     debug("maintenance(" .. refuelId .. ", " .. x .. ", " .. y .. ", " .. z .. ", ??)")
  171.     local dx, dy, dz, dface = x, y, z, face
  172.     -- move below our chest
  173.     while y > 4 do
  174.         if tryUp() then
  175.             y = y - 1
  176.         end
  177.     end
  178.     -- could come across other turtles -> no digging
  179.     while y > 0 do
  180.         while not turtle.up() do sleep(1) end
  181.         y = y - 1
  182.     end
  183.     if face then
  184.         turtle.turnRight()
  185.         turtle.turnRight()
  186.     end
  187.     while x > 0 do
  188.         while not turtle.forward() do sleep(1) end
  189.         x = x - 1
  190.     end
  191.     turtle.turnRight()
  192.     turtle.turnRight()
  193.     -- Try to refuel from inventory if necessary
  194.     while turtle.getFuelLevel() < REFUELTHRESHOLD and refuelOneFromInventory() do
  195.         debug("Refuelled one from inventory. New level: " .. turtle.getFuelLevel())
  196.     end
  197.     -- drop all into the chest - overflow is ignored
  198.     for i = 1, 16 do
  199.         turtle.select(i)
  200.         turtle.dropUp()
  201.     end
  202.     -- refuel from station if still necessary
  203.     if turtle.getFuelLevel() < REFUELTHRESHOLD then
  204.         debug("Refuel needed: " .. turtle.getFuelLevel() .. " < " .. REFUELTHRESHOLD)
  205.         debug("Going to refuel at the station")
  206.         -- go to fuel station
  207.         -- from now on we could cross other turtles' lanes and will therefore only move, not dig
  208.         while not turtle.forward() do sleep(1) end
  209.         turtle.turnRight()
  210.         while z > 0 do
  211.             while not turtle.forward() do sleep(1) end
  212.             z = z - 1
  213.         end
  214.         turtle.turnRight()
  215.         turtle.turnRight()
  216.         while not turtle.up() do sleep(1) end
  217.         while not turtle.up() do sleep(1) end
  218.         -- refuel
  219.         while true do
  220.             -- refuel all and send fuel level until >  REFUELTHRESHOLD
  221.             for i = 1, 16 do
  222.                 turtle.select(i)
  223.                 turtle.refuel()
  224.             end
  225.             local message = {}
  226.             message["message"] = "fuelLevel"
  227.             message["fuelLevel"] = turtle.getFuelLevel()
  228.             rednet.send(refuelId, textutils.serialize(message))
  229.             if message["fuelLevel"] > REFUELTHRESHOLD then
  230.                 break
  231.             end
  232.         end
  233.         debug("Refuelling at station successful. Returning to lane.")
  234.         -- go back to lane
  235.         if dz == 0 then
  236.             turtle.turnRight()
  237.             while not turtle.forward() do sleep(1) end
  238.             while not turtle.down() do sleep(1) end
  239.             while not turtle.down() do sleep(1) end
  240.             while not turtle.down() do sleep(1) end
  241.             while not turtle.back() do sleep(1) end
  242.             while not turtle.back() do sleep(1) end
  243.             x = 0
  244.             y = 1
  245.             z = 0
  246.         else
  247.             while z < dz do
  248.                 while not turtle.forward() do sleep(1) end
  249.                 z = z + 1
  250.             end
  251.             turtle.turnRight()
  252.             while not turtle.down() do sleep(1) end
  253.             while not turtle.down() do sleep(1) end
  254.             y = 0
  255.             while not turtle.back() do sleep(1) end
  256.             x = 0
  257.         end
  258.     end
  259.     face = true
  260.     -- go back to old position
  261.     debug("Returning to old position before maintenance-call.")
  262.     while x < dx do
  263.         while not turtle.forward() do sleep(1) end
  264.         x = x + 1
  265.     end
  266.     if face ~= dface then
  267.         turtle.turnRight()
  268.         turtle.turnRight()
  269.         face = dface
  270.     end
  271.     while y < dy and y < 4 do
  272.         while not turtle.down() do sleep(1) end
  273.         y = y + 1
  274.     end
  275.     while y < dy do
  276.         while not tryDown() do sleep(1) end
  277.         y = y + 1
  278.     end
  279.     return x, y, z, face
  280. end
  281.  
  282. function diglane(lane, refuelId)
  283.     debug("digLane(" .. lane .. ", " .. refuelId .. ")")
  284.     -- x is forward (lane direction), y is depth below start (positive int), z is lane, true means facing in positive x direction
  285.     local x, y, z, face = 1, 0, lane, true
  286.     -- near bedrock we switch the digging strategy to vertical shafts instead of horizontal tunnels
  287.     local digVertical = false
  288.     -- big loop with many if-statements that magically does the right next step
  289.     while true do
  290.         -- check if we have enough fuel for returning to the station
  291.         local distToRefuelStation = y + x + 1 + z + 2
  292.         -- check if we have enough fuel for clearing the next row and returning to the refuel station (if not mining vertically)
  293.         -- 15 forward, 3 down, 15 backward, 3 up
  294.         local distToRefuelStationAfterNextLane = 15 + 3 + 15 + 3 + distToRefuelStation
  295.         debug("Digging ... distToRefuelStation: " .. distToRefuelStation .. ", Fuel: " .. turtle.getFuelLevel())
  296.         if turtle.getFuelLevel() - distToRefuelStation < 5 then -- some safety margin that was chosen arbitrarily
  297.             debug("Trying to refuel from inventory.")
  298.             -- try to refuel from inventory
  299.             if not refuelOneFromInventory() then
  300.                 debug("Inventory was not enough. Starting maintenance routine.")
  301.                 -- did not work or was not enough -> start maintenance routine
  302.                 x, y, z, face = maintenance(refuelId, x, y, z, face)
  303.             end
  304.         elseif (x == 0) and (not digVertical) and (turtle.getFuelLevel() - distToRefuelStationAfterNextLane < 3) then
  305.             debug("Trying to refuel from inventory.")
  306.             -- try to refuel from inventory
  307.             if not refuelOneFromInventory() then
  308.                 debug("Inventory was not enough. Starting maintenance routine.")
  309.                 -- did not work or was not enough -> start maintenance routine
  310.                 x, y, z, face = maintenance(refuelId, x, y, z, face)
  311.             end
  312.         elseif isInventoryFull() then
  313.             debug("Inventory is full. Starting maintenance routine.")
  314.             x, y, z, face = maintenance(refuelId, x, y, z, face)
  315.         else
  316.             -- dig
  317.             if not digVertical then
  318.                 if y % 3 > 0 then
  319.                     if tryDown() then
  320.                         y = y + 1
  321.                     else
  322.                         debug("Hit the ground. Will go to vertical mode.")
  323.                         digVertical = "start"
  324.                     end
  325.                 else
  326.                     if not clearUp() then
  327.                         debug("Seems, we moved one too far. Going back.")
  328.                         -- can only be the case if we accidently moved into a bedrock "gap"
  329.                         turtle.turnRight()
  330.                         turtle.turnRight()
  331.                         tryForward()
  332.                         turtle.turnRight()
  333.                         turtle.turnRight()
  334.                         if face then
  335.                             x = x - 1
  336.                         else
  337.                             x = x + 1
  338.                         end
  339.                         if tryUp() then
  340.                             y = y - 1
  341.                         end
  342.                         debug("And starting vertical mode.")
  343.                         digVertical = "start"
  344.                     else
  345.                         if (not clearDown()) or (not tryForward()) then
  346.                             debug("Could not clear down or go forward. Starting vertical mode.")
  347.                             digVertical = "start"
  348.                         else
  349.                             if face then
  350.                                 x = x + 1
  351.                             else
  352.                                 x = x - 1
  353.                             end
  354.                             clearUp()
  355.                             if x == 0 or x == 15 then
  356.                                 turtle.turnRight()
  357.                                 turtle.turnRight()
  358.                                 face = not face
  359.                                 if not tryDown() then
  360.                                     debug("At a border and could not go down. Starting vertical mode.")
  361.                                     digVertical = "start"
  362.                                 else
  363.                                     y = y + 1
  364.                                 end
  365.                             end
  366.                         end
  367.                     end
  368.                 end
  369.             else
  370.                 if digVertical == "start" then
  371.                     -- make next step towards x15 with face towards x0
  372.                     if not face then
  373.                         turtle.turnRight()
  374.                         turtle.turnRight()
  375.                         face = not face
  376.                     end
  377.                     if x < 15 then
  378.                         debug("Moving towards the end of the lane.")
  379.                         if not tryForward() then
  380.                             if tryUp() then
  381.                                 y = y - 1
  382.                             else
  383.                                 -- need to backtrack
  384.                                 debug("Moved into a gap. Backtracking ...")
  385.                                 turtle.turnRight()
  386.                                 turtle.turnRight()
  387.                                 if tryForward() then
  388.                                     x = x - 1
  389.                                 end
  390.                                 if tryUp() then
  391.                                     y = y - 1
  392.                                 end
  393.                                 turtle.turnRight()
  394.                                 turtle.turnRight()
  395.                             end
  396.                         else
  397.                             x = x + 1
  398.                         end
  399.                     else
  400.                         debug("In position for vertical digging")
  401.                         digVertical = "digVertical"
  402.                         turtle.turnRight()
  403.                         turtle.turnRight()
  404.                         face = not face
  405.                     end
  406.                 elseif digVertical == "digVertical" then
  407.                     -- because we are in the last stages and hit bedrock, we have a clearer estimate (upper bound) of how much fuel we need for the rest
  408.                     if (z == 0) then
  409.                         -- as below, but the cost for returning to the lane is 6 (see maintenance routine)
  410.                         REFUELTHRESHOLD = 10 * x + 2 * y + 14
  411.                     else
  412.                         -- back to lane, 2 down, 1 back, x forward, y down, at most 4 down and 4 up, 4 up plus 4 down plus 1 forward per unfinished field, then y to our chest
  413.                         -- REFUELTHRESHOLD = z + 2 + 1 + x + y + 4 + 4 + x * (1 + 4 + 4) + y
  414.                         REFUELTHRESHOLD = 10 * x + 2 * y + z + 11
  415.                     end
  416.                     if tryDown() then
  417.                         y = y + 1
  418.                     else
  419.                         if x > 0 then
  420.                             debug("At the bottom. Going to next field.")
  421.                             -- bedrock has 5 layers at most
  422.                             -- also clear any 'gaps' we might encounter when diligent mode is enabled
  423.                             if DILIGENTMODE then
  424.                                 for i = 1, 3 do
  425.                                     clearForward()
  426.                                     turtle.turnRight()
  427.                                     turtle.turnRight()
  428.                                     clearForward()
  429.                                     while not tryUp() do sleep(1) end
  430.                                 end
  431.                                 turtle.turnRight()
  432.                                 turtle.turnRight()
  433.                                 while not tryUp() do sleep(1) end
  434.                             else
  435.                                 while not tryUp() do sleep(1) end
  436.                                 while not tryUp() do sleep(1) end
  437.                                 while not tryUp() do sleep(1) end
  438.                                 while not tryUp() do sleep(1) end
  439.                             end
  440.                             y = y - 4
  441.                             while not tryForward() do sleep(1) end
  442.                             x = x - 1
  443.                         else
  444.                             debug("Cleared the last block. Returning now.")
  445.                             break
  446.                         end
  447.                     end
  448.                 end
  449.             end
  450.         end
  451.     end
  452.     -- TODO: DILIGENTMODE ...
  453.    
  454.     -- we should be at x0. so we go up and drop everything to our chest
  455.     while y > 4 do
  456.         while not tryUp() do sleep(1) end
  457.         y = y - 1
  458.     end
  459.     -- could cross other turtles' paths -> no digging
  460.     while y > 0 do
  461.         while not turtle.up() do sleep(1) end
  462.         y = y - 1
  463.     end
  464.     debug("Dropping everything into the chest.")
  465.     for i = 1, 16 do
  466.         if turtle.getItemCount(i) > 0 then
  467.             turtle.select(i)
  468.             turtle.dropUp()
  469.         end
  470.     end
  471.     turtle.turnRight()
  472.     turtle.turnRight()
  473.     face = not face
  474.     -- deplete the last fuel to make the turtles stackable again
  475.     local upordown = true
  476.     while turtle.getFuelLevel() > 0 do
  477.         if upordown then
  478.             if tryDown() then
  479.                 upordown = not upordown
  480.             end
  481.         else
  482.             if tryUp() then
  483.                 upordown = not upordown
  484.             end
  485.         end
  486.     end
  487.     -- send finished to control
  488.     local m = {}
  489.     m["message"] = "laneFinished"
  490.     rednet.send(refuelId, textutils.serialize(m))
  491. end
  492.  
  493. function setuplane()
  494.     -- copy program from disk to local dir
  495.     fs.copy(SCRIPTPATH, SCRIPTNAME)
  496.  
  497.     turtle.turnLeft()
  498.    
  499.     local lane, refuelId
  500.     while true do
  501.         -- say hello
  502.         local broadcast = {}
  503.         broadcast["message"] = "hello"
  504.         rednet.broadcast(textutils.serialize(broadcast))
  505.         -- get welcome with our lane number
  506.         local id, message, distance = rednet.receive(5)
  507.         if message and distance < 1.4 then
  508.             local m = {}
  509.             m = textutils.unserialize(message)
  510.             if m["message"] == "welcome" and m["lane"] > -1 then
  511.                 lane = m["lane"] + 0
  512.                 refuelId = id
  513.                 break
  514.             end
  515.         end
  516.     end
  517.  
  518.     -- send fuel level, then get and use one fuel
  519.     for i = 1, 16 do
  520.         if turtle.getItemCount(i) == 0 then
  521.             turtle.select(i)
  522.             break
  523.         end
  524.     end
  525.     local message = {}
  526.     message["message"] = "fuelLevel"
  527.     message["fuelLevel"] = turtle.getFuelLevel()
  528.     message["lane"] = lane
  529.     rednet.send(refuelId, textutils.serialize(message))
  530.     local chestSlot
  531.     while true do
  532.         -- refuel all and send fuel level until >  REFUELTHRESHOLD
  533.         while (not FUELLESS) and (not refuelOneFromInventory()) do sleep(1) end
  534.         -- select lowest empty slot (to detect chest placement later on)
  535.         for i = 1, 16 do
  536.             if turtle.getItemCount(i) == 0 then
  537.                 chestSlot = i
  538.                 break
  539.             end
  540.         end
  541.         message["fuelLevel"] = turtle.getFuelLevel()
  542.         rednet.send(refuelId, textutils.serialize(message))
  543.         if message["fuelLevel"] > REFUELTHRESHOLD then
  544.             break
  545.         end
  546.     end
  547.     -- get chest
  548.     while turtle.getItemCount(chestSlot) < 1 do sleep(1) end
  549.     -- only the first turtle needs to clear a path
  550.     if lane == 15 then
  551.         while not tryDown() do sleep(1) end
  552.     else
  553.         while not turtle.down() do sleep(1) end
  554.     end
  555.     -- dig/go to our lane
  556.     for i = 1, lane do
  557.         if lane == 15 then
  558.             while not tryForward() do sleep(1) end
  559.         else
  560.             while not turtle.forward() do sleep(1) end
  561.         end
  562.     end
  563.     turtle.turnRight()
  564.     -- place chest
  565.     turtle.select(chestSlot)
  566.     clearUp()
  567.     clearDown()
  568.     turtle.placeUp()
  569.     while not tryForward() do sleep(1) end
  570.     if lane == 0 then
  571.         -- get back the floppy disk and disk drive
  572.         local floppySlot = 1
  573.         for i = 1, 16 do
  574.             if turtle.getItemCount(i) < 1 then
  575.                 floppySlot = i
  576.                 turtle.select(i)
  577.                 break
  578.             end
  579.         end
  580.         turtle.suckUp()
  581.         local diskdriveSlot = 1
  582.         for i = 1, 16 do
  583.             if turtle.getItemCount(i) < 1 then
  584.                 diskdriveSlot = i
  585.                 turtle.select(i)
  586.                 break
  587.             end
  588.         end
  589.         while not tryUp() do sleep(1) end
  590.         turtle.turnRight()
  591.         turtle.turnRight()
  592.         turtle.select(floppySlot)
  593.         turtle.drop()
  594.         turtle.select(diskdriveSlot)
  595.         turtle.drop()
  596.         turtle.turnRight()
  597.         turtle.turnRight()
  598.         while not tryDown() do sleep(1) end
  599.     end
  600.  
  601.     -- dig lane
  602.     shell.run(SCRIPTNAME, "diglane", lane, refuelId)
  603. end
  604.  
  605. function refuelStation(workers)
  606.     debug("refuelStation: " .. textutils.serialize(workers))
  607.     if not workers then
  608.         workers = {}
  609.         for i = 0, 15 do
  610.             workers[i] = -1
  611.         end
  612.     end
  613.     print("Waiting for refuel requests. Will automatically exit if all lanes are complete. Press SPACE to exit early.")
  614.     print()
  615.     while true do
  616.         local allDone = true
  617.         for i = 0, 15 do
  618.             if workers[i] > -1 then
  619.                 allDone = false
  620.                 break
  621.             end
  622.         end
  623.         if allDone then
  624.             print("All lanes are done.")
  625.             break
  626.         end
  627.         local event, id, message, distance = os.pullEvent()
  628.         if event == "rednet_message" and distance < 1.4 and message then
  629.             local m = {}
  630.             m = textutils.unserialize(message)
  631.             if m["message"] == "fuelLevel" and m["fuelLevel"] <= REFUELTHRESHOLD then
  632.                 for i = 5, 16 do
  633.                     if turtle.getItemCount(i) > 0 then
  634.                         turtle.select(i)
  635.                         turtle.drop(1)
  636.                         break
  637.                     end
  638.                 end
  639.             end
  640.         elseif event == "rednet_message" and message then
  641.             local m = {}
  642.             m = textutils.unserialize(message)
  643.             if m["message"] == "laneFinished" then
  644.                 for i = 0, 15 do
  645.                     if workers[i] == id then
  646.                         debug("Received laneFinished from " .. id .. " and cleared workers[" .. i .. "]")
  647.                         workers[i] = -1
  648.                         break
  649.                     end
  650.                 end
  651.             end
  652.         elseif event == "key" and id == 57 then
  653.             break
  654.         end
  655.     end
  656.    
  657.     -- collect the drones (should stack)
  658.     turtle.select(1)
  659.     tryForward()
  660.     turtle.turnRight()
  661.     turtle.turnRight()
  662.     while not tryDown() do sleep(1) end
  663.     while not tryDown() do sleep(1) end
  664.     while not tryForward() do sleep(1) end
  665.     turtle.turnRight()
  666.     clearDown()
  667.     for i = 1, 15 do
  668.         while not tryForward() do sleep(1) end
  669.         clearDown()
  670.     end
  671.     turtle.turnRight()
  672.     turtle.turnRight()
  673.     for i = 1, 15 do
  674.         while not tryForward() do sleep(1) end
  675.     end
  676.     turtle.turnLeft()
  677.     while not tryForward() do sleep(1) end
  678.     while not tryUp() do sleep(1) end
  679.     while not tryUp() do sleep(1) end
  680.     turtle.turnRight()
  681.     turtle.turnRight()
  682.     while not tryForward() do sleep(1) end
  683.     turtle.turnRight()
  684.     -- fetch the floppy disk and disk drive from the first chest (the drone from lane 0 placed them there)
  685.     turtle.select(3)
  686.     turtle.suckDown()
  687.     turtle.select(4)
  688.     turtle.suckDown()
  689. end
  690.  
  691. function setup(force)
  692.     local force = force or false
  693.    
  694.     print("Please put ...")
  695.     print("... 16 wireless mining turtles in slot 1.")
  696.     print("... 16 iron or better chests in slot 2.")
  697.     print("... a floppy disk in slot 3.")
  698.     print("... a disk drive in slot 4.")
  699.     print("... fuel of any kind in slots 5-16.")
  700.     print()
  701.     print("Press RETURN to start or SPACE to exit.")
  702.     print()
  703.    
  704.     while not force do
  705.         local event, id, message = os.pullEvent()
  706.         if event == "key" and id == 28 then
  707.             break
  708.         elseif event == "key" and id == 57 then
  709.             return
  710.         end
  711.     end
  712.  
  713.     -- need fuel to place the floppy and cleanup after finish
  714.     while turtle.getFuelLevel() < 42 do
  715.         for i = 1, 16 do
  716.             turtle.select(i)
  717.             if turtle.refuel(1) then
  718.                 break
  719.             end
  720.         end
  721.         sleep(1)
  722.     end
  723.    
  724.     -- need some space below me
  725.     if not tryDown() then
  726.         print("No space below me")
  727.         return
  728.     end
  729.    
  730.     -- clear the floppy block
  731.     turtle.turnRight()
  732.     if not tryForward() then
  733.         print("Could not clear block in front for the floppy.")
  734.         return
  735.     end
  736.     while not turtle.back() do sleep(1) end
  737.    
  738.     -- place the disk drive and insert floppy
  739.     turtle.select(4)
  740.     while not turtle.place() do sleep(1) end
  741.     turtle.select(3)
  742.     while not turtle.drop() do sleep(1) end
  743.    
  744.     -- write startup file to floppy
  745.     if fs.exists("disk/" .. SCRIPTNAME) then
  746.         fs.delete("disk/" .. SCRIPTNAME)
  747.     end
  748.     fs.copy(SCRIPTPATH, "disk/" .. SCRIPTNAME)
  749.     local fp = fs.open("disk/startup", "w")
  750.     fp.writeLine("shell.run(\"disk/".. SCRIPTNAME .. "\", \"setuplane\")")
  751.     fp.close()
  752.    
  753.     -- move back to our position
  754.     while not tryUp() do sleep(1) end
  755.    
  756.     -- list of worker computerIDs
  757.     local workers = {}
  758.    
  759.     -- place, refuel and send off 16 drones
  760.     for i = 0, 15 do
  761.         print("Placing drone " .. i + 1 .. " of 16.")
  762.         print()
  763.         -- place the drone
  764.         turtle.select(1)
  765.         while turtle.detectDown() do sleep(1) end
  766.         turtle.placeDown()
  767.         -- boot the drone, thanks to dustpuppy for reminding me about the peripheral API
  768.         peripheral.call("bottom", "turnOn")
  769.         -- wait for announce, send lane number, wait for confirmation
  770.         -- the drone id is stored in the workers table
  771.         while true do
  772.             local id, message, distance = rednet.receive(5)
  773.             local m = {}
  774.             if message then
  775.                 m = textutils.unserialize(message)
  776.             end
  777.             if m["message"] == "hello" and distance < 1.4 then
  778.                 local answer = {}
  779.                 answer["message"] = "welcome"
  780.                 answer["lane"] = 15 - i
  781.                 rednet.send(id, textutils.serialize(answer))
  782.             elseif m and m["message"] == "fuelLevel" and m["lane"] == 15 - i then
  783.                 workers[15 - i] = id
  784.                 break
  785.             end
  786.         end
  787.         -- refuel drone to at least the threshold
  788.         if not FUELLESS then
  789.             while true do
  790.                 for j = 5, 16 do
  791.                     if turtle.getItemCount(j) > 0 then
  792.                         turtle.select(j)
  793.                         turtle.dropDown(1)
  794.                         break
  795.                     end
  796.                 end
  797.                 local id, message, distance = rednet.receive(5)
  798.                 local m = {}
  799.                 if message then
  800.                     m = textutils.unserialize(message)
  801.                 end
  802.                 if m["message"] == "fuelLevel" and m["fuelLevel"] > REFUELTHRESHOLD then
  803.                     break
  804.                 end
  805.             end
  806.         end
  807.         -- place chest in drone inventory
  808.         turtle.select(2)
  809.         turtle.dropDown(1)
  810.     end
  811.    
  812.     -- All drones placed. We switch to refuelling mode
  813.     shell.run(SCRIPTNAME, "refuelstation", textutils.serialize(workers))
  814. end
  815.  
  816. function printUsage()
  817.     print("Usage of " .. SCRIPTNAME .. " command:")
  818.     print()
  819.     print(SCRIPTNAME .. " setup|force|setuplane|diglane <laneNo> <refuelId>|refuelstation <serializedIdList>")
  820.     print("If you are not sure, you probably want the setup.")
  821.     print()
  822. end
  823.  
  824. -- =========================================
  825. --                  MAIN
  826. -- =========================================
  827.  
  828. if tArgs[1] == "setup" then
  829.     setup()
  830. elseif tArgs[1] == "force" then
  831.     setup(true)
  832. elseif tArgs[1] == "setuplane" then
  833.     setuplane()
  834. elseif tArgs[1] == "diglane" and tArgs[2] and tArgs[3] and tArgs[2] + 0 > -1 and tArgs[3] + 0 > -1 then
  835.     diglane(tArgs[2] + 0, tArgs[3] + 0)
  836. elseif tArgs[1] == "refuelstation" and tArgs[2] then
  837.     refuelStation(textutils.unserialize(tArgs[2]))
  838. else
  839.     printUsage()
  840. end
  841.  
  842. rednet.close("right")
  843. rednet.close("left")
  844. rednet.close("top")
  845. rednet.close("bottom")
  846. rednet.close("front")
  847. rednet.close("back")
  848.  
  849. ENDTIME = os.clock()
  850. print("Starttime:" .. STARTUPTIME)
  851. print("Endtime: " .. ENDTIME)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement