Advertisement
DrFair

Turtle Quarry Mk3

Jun 16th, 2013
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.31 KB | None | 0 0
  1. Args = {...}
  2. fileName = "quarrytemp"
  3.  
  4. function printData()
  5. local path = shell.resolve(fileName)
  6. data = { ["dir"] = textutils.serialize(dir), ["nDir"] = nDir, ["x"] = x, ["y"] = y, ["z"] = z, ["atBedrock"] = atBedrock, ["dirDown"] = dirDown, ["dirFor"] = dirFor, ["dirBack"] = dirBack, ["tRight"] = tRight, ["qDirRight"] = qDirRight, ["demx"] = demx, ["demy"] = demy }
  7. if fs.exists(fileName) then
  8. fs.delete(fileName)
  9. end
  10. local file = fs.open(path,"w")
  11. file.write(textutils.serialize(data))
  12. file.close()
  13. end
  14.  
  15. function getData()
  16. local path = shell.resolve(fileName)
  17. if fs.exists(fileName) then
  18. local file = fs.open(path,"r")
  19. data = textutils.unserialize(file.readAll())
  20. dir = textutils.unserialize(data["dir"])
  21. nDir = data["nDir"]
  22. x,y,z = data["x"],data["y"],data["z"]
  23. atBedrock = data["atBedrock"]
  24. dirDown = data["dirDown"]
  25. dirFor = data["dirFor"]
  26. dirBack = data["dirBack"]
  27. tRight = data["tRight"]
  28. qDirRight = data["qDirRight"]
  29. demx = data["demx"]
  30. demy = data["demy"]
  31. file.close()
  32. return true
  33. else
  34. print("Cannot continue, no data found.")
  35. return false
  36. end
  37. end
  38.  
  39. function printUsage()
  40. print("Usage:")
  41. print("quarry <LENGTH> <WIDE> <left/right>")
  42. print("Quarries a <LENGTH> long and <WIDE> wide hole to bedrock.")
  43. print("quarry continue")
  44. print("Continues from where it left off.")
  45. print("Place enderchest in slot 1.")
  46. end
  47.  
  48. function getFuel()
  49. return turtle.getFuelLevel()
  50. end
  51.  
  52. function dropOff()
  53. print("Dropping off items, fuel: "..getFuel())
  54. turtle.digUp()
  55. turtle.select(1)
  56. if turtle.placeUp() then
  57. for i=2,16 do
  58. turtle.select(i)
  59. turtle.dropUp()
  60. end
  61. turtle.select(1)
  62. turtle.digUp()
  63. else
  64. print("Failed to drop off.")
  65. end
  66. end
  67.  
  68. function hasSpace()
  69. local space = false
  70. for i=1,16 do
  71. if turtle.getItemCount(i) == 0 then
  72. space = true
  73. end
  74. end
  75. if not space then dropOff() end
  76. end
  77.  
  78. function goDirFor(bool)
  79. if bool then
  80. if dir[nDir] == "+X" then x = x + 1 elseif
  81. dir[nDir] == "-X" then x = x - 1 elseif
  82. dir[nDir] == "+Y" then y = y + 1 elseif
  83. dir[nDir] == "-Y" then y = y - 1 end
  84. else
  85. if dir[nDir] == "+X" then x = x - 1 elseif
  86. dir[nDir] == "-X" then x = x + 1 elseif
  87. dir[nDir] == "+Y" then y = y - 1 elseif
  88. dir[nDir] == "-Y" then y = y + 1 end
  89. end
  90. end
  91.  
  92. function mineFor()
  93. while turtle.detect() do
  94. turtle.dig()
  95. os.sleep(0.5)
  96. end
  97. hasSpace()
  98. return true
  99. end
  100.  
  101. function mineUp()
  102. while turtle.detectUp() do
  103. turtle.digUp()
  104. os.sleep(0.5)
  105. end
  106. hasSpace()
  107. return true
  108. end
  109.  
  110. function mineDown()
  111. turtle.digDown()
  112. hasSpace()
  113. return true
  114. end
  115.  
  116. function goFor()
  117. if turtle.forward() then
  118. goDirFor(true)
  119. printData()
  120. return true
  121. else
  122. return false
  123. end
  124. end
  125.  
  126. function goBack()
  127. if turtle.back() then
  128. goDirFor(false)
  129. printData()
  130. return true
  131. else
  132. return false
  133. end
  134. end
  135.  
  136. function goUp()
  137. if turtle.up() then
  138. z = z + 1
  139. printData()
  140. return true
  141. else
  142. return false
  143. end
  144. end
  145.  
  146. function goDown()
  147. if turtle.down() then
  148. z = z - 1
  149. printData()
  150. return true
  151. else
  152. return false
  153. end
  154. end
  155.  
  156. function turnRight()
  157. turtle.turnRight()
  158. if nDir < 4 then
  159. nDir = nDir + 1
  160. else
  161. nDir = 1
  162. end
  163. end
  164.  
  165. function turnLeft()
  166. turtle.turnLeft()
  167. if nDir > 1 then
  168. nDir = nDir - 1
  169. else
  170. nDir = 4
  171. end
  172. end
  173.  
  174. function stripFor()
  175. mineUp()
  176. if turtle.detectUp() then
  177. while turtle.detectUp() do
  178. goBack()
  179. mineUp()
  180. end
  181. goUp()
  182. end
  183. mineFor()
  184. while turtle.detect() do
  185. goUp()
  186. mineFor()
  187. end
  188. local n = 0
  189. while turtle.detectDown() do
  190. mineDown()
  191. n = n + 1
  192. if n >= 10 then break end
  193. end
  194. if turtle.detectDown() and not atBedrock then
  195. atBedrock = true
  196. print("Hit bedrock.")
  197. end
  198. return goFor()
  199. end
  200.  
  201. function turn()
  202. print("Turning around, fuel: "..getFuel())
  203. if tRight then
  204. turnRight()
  205. while not stripFor() do
  206. os.sleep(0.5)
  207. end
  208. turnRight()
  209. else
  210. turnLeft()
  211. while not stripFor() do
  212. os.sleep(0.5)
  213. end
  214. turnLeft()
  215. end
  216. tRight = not tRight
  217. dirFor = not dirFor
  218. end
  219.  
  220. function stripDown()
  221. for i=1,3 do
  222. mineUp()
  223. local n = 0
  224. while turtle.detectDown() do
  225. mineDown()
  226. n = n + 1
  227. if n >= 10 then break end
  228. end
  229. if turtle.detectDown() and not atBedrock then
  230. atBedrock = true
  231. print("Hit bedrock.")
  232. break
  233. end
  234. goDown()
  235. end
  236. turnRight()
  237. turnRight()
  238. dirFor = not dirFor
  239. dirBack = not dirBack
  240. end
  241.  
  242. function turnTo(str)
  243. while dir[nDir] ~= str do
  244. turnRight()
  245. end
  246. end
  247.  
  248. function resetPos()
  249. while z ~= 0 do
  250. goUp()
  251. end
  252. turnTo("-X")
  253. while x ~= 0 do
  254. goFor()
  255. end
  256. if y < 0 then
  257. turnTo("+Y")
  258. else
  259. turnTo("-Y")
  260. end
  261. while y ~= 0 do
  262. goFor()
  263. end
  264. turnTo("+X")
  265. end
  266.  
  267. function quarry()
  268. while not atBedrock do
  269. if qDirRight then
  270. if dirFor then
  271. while x < demx do
  272. stripFor()
  273. end
  274. else
  275. while x > 0 do
  276. stripFor()
  277. end
  278. end
  279. if dirBack then
  280. if y > 0 then
  281. turn()
  282. else
  283. stripDown()
  284. end
  285. else
  286. if y < demy then
  287. turn()
  288. else
  289. stripDown()
  290. end
  291. end
  292. else
  293. if dirFor then
  294. while x < demx do
  295. stripFor()
  296. end
  297. else
  298. while x > 0 do
  299. stripFor()
  300. end
  301. end
  302. if dirBack then
  303. if y > 0 then
  304. turn()
  305. else
  306. stripDown()
  307. end
  308. else
  309. if y < demy then
  310. turn()
  311. else
  312. stripDown()
  313. end
  314. end
  315. end
  316. end
  317. print("Going back to start, fuel: "..getFuel())
  318. mineDown()
  319. mineUp()
  320. resetPos()
  321. fs.delete(fileName)
  322. dropOff()
  323. print("Job done, fuel left: "..getFuel())
  324. end
  325.  
  326. if #Args == 0 then
  327. printUsage()
  328. else
  329. if Args[1] == "continue" then
  330. if getData() then
  331. print("Continue with quarry dimensions "..(demx+1).."x"..(demy+1)..".")
  332. quarry()
  333. end
  334. elseif tonumber(Args[1]) == 0 or tonumber(Args[2]) == 0 then
  335. printUsage()
  336. else
  337. if Args[3] == "right" or Args[3] == "left" then
  338. nDir = 1
  339. x,y,z = 0,0,0
  340. atBedrock = false
  341. dirDown = true
  342. dirFor = true
  343. dirBack = false
  344. if Args[3] == "right" then
  345. tRight = true
  346. qDirRight = true
  347. dir = { [1]="+X", [2]="+Y", [3]="-X", [4]="-Y" }
  348. else
  349. tRight = false
  350. qDirRight = false
  351. dir = { [1]="+X", [2]="-Y", [3]="-X", [4]="+Y" }
  352. end
  353. demx = tonumber(Args[1]) - 1
  354. demy = tonumber(Args[2]) - 1
  355. quarry()
  356. else
  357. printUsage()
  358. end
  359. end
  360. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement