Advertisement
kittle

matrun

Mar 3rd, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.25 KB | None | 0 0
  1. local matrows=113
  2. local builders=1
  3.  
  4. local mainID="ndqJqjTw"
  5. local layers = {
  6. "B1A1TnCF",
  7. "hmazJDeS",
  8. "kjUFdFK7",
  9. "w7u9Mhpq",
  10. "qYmBmfbu",
  11. "kaK2NXEC",
  12. "ZVr8Rbi8",
  13. "6hdMymxS",
  14. "L7mkdeR4",
  15. "Zy11EGps",
  16. "nBHn9D1L",
  17. "GrjEAa72",
  18. "UjgcztQN",
  19. "ETAwVbfa",
  20. "ZANYTrMA",
  21. "YZq82Mak",
  22. "g5m70R2r",
  23. "DJG273DU",
  24. "JU9AUh5r",
  25. "yU06jVnK",
  26. "MusMy4p3",
  27. "L1gbpFfy"
  28. }
  29.  
  30. function checkFuel()
  31. -- refuel the turtle and ensure there is at least 1 fuel block in slot 1
  32. while turtle.getFuelLevel() < 10 do
  33. print("refueling")
  34. turtle.select(1)
  35. turtle.refuel(1)
  36. while turtle.getItemCount(1) < 1 do
  37. getFuel()
  38. end
  39. end
  40. while turtle.getItemCount(1) < 1 do
  41. getFuel()
  42. end
  43. end
  44.  
  45. function getFuel()
  46. -- get some fuel from the nearby chest
  47. while turtle.getItemCount(1) < 1 do
  48. print("out of fuel. refueling from chest")
  49. turtle.forward()
  50. turtle.turnLeft()
  51. turtle.select(1)
  52. while not turtle.suck() do
  53. print("Fuel chest appears to be empty")
  54. print("Please add fuel to the chest and press enter")
  55. io.read()
  56. end
  57. turtle.turnRight()
  58. turtle.back()
  59. end
  60. end
  61.  
  62. function checkMarkers()
  63. -- make sure there is at least 1 marker block in slot 3
  64. if turtle.getItemCount(3) < 1 then
  65. print("out of marker blocks. getting some from chest")
  66. while not turtle.forward() do
  67. end
  68. while not turtle.up() do
  69. print("ERROR: space nexto chest #1 is blocked. remove block and press enter to continue")
  70. io.read()
  71. end
  72. turtle.turnLeft()
  73. turtle.select(3)
  74. while not turtle.suck() do
  75. print("Chest #1 appears to be empty")
  76. print("Please fill the chest and press enter")
  77. io.read()
  78. end
  79. turtle.turnRight()
  80. turtle.down()
  81. turtle.back()
  82. end
  83. end
  84.  
  85. function getSlices(listSize, chunks)
  86. -- slice the list into "almost" equal chunks
  87. incr = math.floor(listSize / chunks)
  88. if incr > 1 then
  89. incr = incr - 1
  90. end
  91. list = {}
  92. start=1
  93. for x=1,chunks do
  94. table.insert(list, {start,start+incr} )
  95. start = start + incr + 1
  96. end
  97. shiftIndex = #list
  98. while list[#list][2] < listSize do
  99. for idx = shiftIndex,#list do
  100. list[idx][1] = list[idx][1] + 1
  101. list[idx][2] = list[idx][2] + 1
  102. end
  103. list[shiftIndex-1][2] = list[shiftIndex-1][2] + 1
  104. shiftIndex = shiftIndex - 1
  105. end
  106. return list
  107. end
  108.  
  109. function startBuilders(layer)
  110. builders = turtle.getItemCount(2)
  111. if builders < 1 then
  112. print("ERROR: Expect turtles in slot 2")
  113. return false
  114. end
  115.  
  116. print("building layer " .. layer .." using " .. builders .. " turtles")
  117. slices = getSlices(matrows, builders)
  118.  
  119. for x=builders,1,-1 do
  120. checkFuel()
  121. checkMarkers()
  122. print("start builder " .. x .. " Row " .. slices[x][1] .. " to " .. slices[x][2] )
  123. while not turtle.forward() do
  124. print("ERROR: Cannot move to disk drive")
  125. print("Remove the blockage and press enter")
  126. io.read()
  127. end
  128. if not turtle.detectDown() then
  129. print("ERROR: must have a block nexto and below the disk")
  130. turtle.back()
  131. return false
  132. end
  133.  
  134. -- write startup script
  135. scr = fs.open("bootstrap","w")
  136. scr.writeLine("turtle.select(1)")
  137. scr.writeLine("turtle.refuel()")
  138. --scr.writeLine("shell.run(\"pastebin\",\"get\",\"" .. mainID .. "\",\"mat\")")
  139. --scr.writeLine("while not turtle.forward() do")
  140. --scr.writeLine("end")
  141. scr.writeLine("shell.run(\"disk/mat\",\"matData\" , \"" .. tostring(slices[x][1]) .. "\",\"" .. tostring(slices[x][2]) .. "\")")
  142. scr.close()
  143. sleep(1)
  144. if not disk.isPresent("right") then
  145. print("disk not found. waiting")
  146. sleep(5)
  147. if not disk.isPresent("right") then
  148. print("cannot find disk on right side")
  149. return false
  150. end
  151. end
  152.  
  153. if fs.exists("/disk/startup") then
  154. fs.delete("/disk/startup")
  155. --sleep(3)
  156. end
  157. fs.copy("bootstrap", "/disk/startup")
  158.  
  159. -- return and place the next builder
  160. turtle.back()
  161. turtle.select(2)
  162. turtle.place()
  163.  
  164. -- put fuel in the new turtle
  165. turtle.select(1)
  166. turtle.drop(1)
  167. -- put marker block in the new turtle
  168. turtle.select(3)
  169. turtle.drop(1)
  170. peripheral.call("front", "turnOn")
  171.  
  172. -- give new turtle a chance to get moving
  173. sleep(10)
  174. end
  175. print("Done sending builders")
  176. return true
  177. end
  178.  
  179. function collectBuilders()
  180. -- finished turtles will stack up nexto the starting spot
  181. print("Gathering Builders")
  182. turtle.turnRight()
  183. turtle.select(2)
  184.  
  185. while turtle.getItemCount(2) < builders do
  186. if turtle.dig() then
  187. print("gathered " .. turtle.getItemCount(2) .. " of " .. builders .. " builders")
  188. end
  189. sleep(5)
  190.  
  191. end
  192. print("Done gathering builders")
  193. turtle.turnLeft()
  194. end
  195.  
  196. -- make sure we have at least "some" fuel
  197. if turtle.getFuelLevel() < 1 then
  198. turtle.select(1)
  199. if turtle.getItemCount(1) < 0 then
  200. print("need at least 1 fuel item in slot 1")
  201. return
  202. else
  203. turtle.refuel(1)
  204. end
  205. if turtle.getFuelLevel() < 1 then
  206. print("no fuel found in slot 1")
  207. return
  208. end
  209. end
  210.  
  211. local args = { ... }
  212. local startLayer=1
  213. if #args > 0 then
  214. startLayer=tonumber(args[1])
  215. end
  216. checkFuel()
  217. while not turtle.forward() do
  218. print("ERROR: Cannot move to disk drive")
  219. print("Remove the blockage and press enter")
  220. io.read()
  221. end
  222.  
  223. if fs.exists("disk/mat") then
  224. fs.delete("disk/mat")
  225. end
  226. shell.run("pastebin","get",mainID,"disk/mat")
  227. while not turtle.back() do
  228. print("ERROR: Cannot move back from disk drive")
  229. print("Remove the blockage and press enter")
  230. io.read()
  231. end
  232. print("press enter")
  233. io.read()
  234.  
  235. for l=startLayer,#layers do
  236. while not turtle.forward() do
  237. print("ERROR: Cannot move to disk drive")
  238. print("Remove the blockage and press enter")
  239. io.read()
  240. end
  241.  
  242. if fs.exists("disk/matData") then
  243. fs.delete("disk/matData")
  244. end
  245. shell.run("pastebin","get",layers[l],"disk/matData")
  246. while not turtle.back() do
  247. print("ERROR: Cannot move back from disk drive")
  248. print("Remove the blockage and press enter")
  249. io.read()
  250. end
  251.  
  252. if not startBuilders(l) then
  253. return
  254. end
  255. collectBuilders()
  256. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement