Advertisement
Guest User

Untitled

a guest
Jul 8th, 2015
1,773
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.75 KB | None | 0 0
  1. --Created by makeo. All rights reserved.
  2.  
  3. --DO NOT EDIT
  4. local FUEL_SLOT = 1
  5. local CHEST_FUEL_SLOT = 1
  6. local ENDER_CHEST_SLOT = 2
  7. local DIG_SLOT = 3
  8.  
  9. --save movments
  10. function move(move, detect, dig, attack)
  11. if needsPitstop() then
  12. doPitstop()
  13. end
  14.  
  15. local first = true
  16. while not move() do
  17. if detect() then
  18. turtle.select(DIG_SLOT)
  19. dig()
  20. else
  21. attack()
  22. end
  23.  
  24. if not first then
  25. sleep(0.5)
  26. end
  27. first = false
  28. end
  29. end
  30.  
  31. function moveForward()
  32. move(turtle.forward, turtle.detect, turtle.dig, turtle.attack)
  33. end
  34.  
  35. function moveBack()
  36. if not turtle.back() then
  37. turn180()
  38. moveForward()
  39. turn180()
  40. end
  41. end
  42.  
  43. function moveUp()
  44. move(turtle.up, turtle.detectUp, turtle.digUp, turtle.attackUp)
  45. end
  46.  
  47. function moveDown()
  48. move(turtle.down, turtle.detectDown, turtle.digDown, turtle.attackDown)
  49. end
  50.  
  51. function turn180()
  52. turtle.turnLeft()
  53. turtle.turnLeft()
  54. end
  55.  
  56. --pitstop
  57. function doPitstop()
  58. if turtle.getItemDetail(ENDER_CHEST_SLOT) == nil then
  59. if peripheral.getType("bottom") ~= "ender_chest" then
  60. error("No ender chest found.")
  61. end
  62. else
  63. if turtle.detectDown() then
  64. turtle.select(DIG_SLOT)
  65. turtle.digDown()
  66. end
  67.  
  68. turtle.select(ENDER_CHEST_SLOT)
  69. turtle.placeDown()
  70. sleep(0.5)
  71. end
  72.  
  73. local enderChest = peripheral.wrap("bottom")
  74.  
  75. if enderChest == nil then
  76. error("Failed to wrap ender chest.")
  77. end
  78.  
  79.  
  80. if (not hasSpace()) or getMovingHome() then
  81. for i = 3, 16, 1 do
  82. while turtle.getItemCount(i) > 0 do
  83. local moved = false
  84. for j = 2, enderChest.getInventorySize(), 1 do
  85. if enderChest.pullItem("up", i, 64, j) ~= 0 then
  86. moved = true
  87. end
  88. end
  89. sleep(0.5)
  90.  
  91. if not moved then
  92. sleep(2)
  93. end
  94. end
  95. end
  96. end
  97.  
  98. while turtle.getFuelLevel() < 5 do
  99. local success = false
  100.  
  101. local currentItem = turtle.getItemDetail(FUEL_SLOT)
  102.  
  103. turtle.select(FUEL_SLOT)
  104. if currentItem ~= nil and not turtle.refuel(0) then
  105. turtle.dropDown()
  106. end
  107.  
  108. currentItem = turtle.getItemDetail(FUEL_SLOT)
  109.  
  110. if currentItem == nil then
  111. success = false
  112. local chestItem = enderChest.getStackInSlot(1)
  113.  
  114. if chestItem ~= nil then
  115. if chestItem["burn_time"] == nil or chestItem["burn_time"] < 1 then
  116. if chestItem["id"] ~= "minecraft:bucket" then
  117. for i = 1, enderChest.getInventorySize(), 1 do
  118. local otherItem = enderChest.getStackInSlot(i)
  119. if otherItem == nil then
  120. enderChest.swapStacks(CHEST_FUEL_SLOT, i)
  121. success = true
  122. break
  123. end
  124. end
  125. end
  126. else
  127. enderChest.pushItem("up", 1, 64, FUEL_SLOT)
  128. end
  129. end
  130. else
  131. local fuelLevel = turtle.getFuelLevel()
  132. turtle.refuel(1)
  133. success = true
  134.  
  135. if turtle.refuel(0) then
  136. local burnTime = turtle.getFuelLevel() - fuelLevel
  137. currentItem = turtle.getItemDetail(FUEL_SLOT)
  138.  
  139. local burnCount = currentItem["count"]
  140. local availableBurn = turtle.getFuelLimit() - turtle.getFuelLevel()
  141.  
  142. while burnCount * burnTime > availableBurn and burnCount > 0 do
  143. burnCount = burnCount - 1
  144. end
  145.  
  146. turtle.refuel(burnCount)
  147. end
  148. end
  149.  
  150. if not success then
  151. sleep(2)
  152. else
  153. currentItem = turtle.getItemDetail()
  154. if currentItem ~= nil and currentItem["name"] == "minecraft:bucket" then
  155. turtle.dropDown()
  156. end
  157. end
  158. end
  159.  
  160. turtle.select(ENDER_CHEST_SLOT)
  161. turtle.digDown()
  162. end
  163.  
  164. function needsPitstop()
  165. return (not hasSpace()) or turtle.getFuelLevel() < 5
  166. end
  167.  
  168. function hasSpace()
  169. local count = 0
  170. for i = 3, 16, 1 do
  171. if turtle.getItemCount(i) == 0 then
  172. count = count + 1
  173. end
  174. end
  175. return count > 1
  176. end
  177.  
  178. function readNumber(minVal)
  179. local num = -1
  180. repeat
  181. if num ~= -1 then
  182. print("Text is not a number.")
  183. end
  184. num = tonumber(read())
  185.  
  186. if num ~= nil and num < minVal then
  187. print("Number is out of bound.")
  188. num = nil
  189. end
  190.  
  191. until num ~= nil
  192. return num
  193. end
  194.  
  195. --ore stuff
  196. function isOre()
  197. local success, data = turtle.inspect()
  198. return checkOre(success, data)
  199. end
  200.  
  201. function isOreUp()
  202. local success, data = turtle.inspectUp()
  203. return checkOre(success, data)
  204. end
  205.  
  206. function isOreDown()
  207. local success, data = turtle.inspectDown()
  208. return checkOre(success, data)
  209. end
  210.  
  211. function checkOre(success, data)
  212. if success then
  213. local name = data["name"]
  214. if name ~= nil then
  215. --Alternative name bypass
  216. if name == "Forestry:resources" or name == "TConstruct:SearedBrick"
  217. or name == "denseores:block0" or name == "rftools:dimensionalShardBlock"
  218. or name == "harvestcraft:salt" then
  219. return true
  220. end
  221.  
  222. local index = string.find(name, ":")
  223. if index ~= nil then
  224. local part = string.lower(string.sub(name, index))
  225. local isOre = string.find(part, "ore")
  226. return isOre ~= nil
  227. end
  228. end
  229. end
  230. return false
  231. end
  232.  
  233. --vein stuff
  234. function mineVein()
  235. while true do
  236. if isOre() then
  237. veinMoveForward()
  238. elseif isOreUp() then
  239. veinMoveUp()
  240. elseif isOreDown() then
  241. veinMoveDown()
  242. else
  243. local success = false
  244. for i = 1, 3, 1 do
  245. veinMoveLeft()
  246. if isOre() then
  247. veinMoveForward()
  248. success = true
  249. break
  250. end
  251. end
  252.  
  253. if not success then
  254. if not popVeinMovment() then
  255. return
  256. end
  257. end
  258. end
  259. sleep(0.5)
  260. end
  261. end
  262.  
  263. function veinMoveForward()
  264. moveForward()
  265. pushToVeinStack(1)
  266. end
  267.  
  268. function veinMoveUp()
  269. moveUp()
  270. pushToVeinStack(2)
  271. end
  272.  
  273. function veinMoveDown()
  274. moveDown()
  275. pushToVeinStack(3)
  276. end
  277.  
  278. function veinMoveLeft()
  279. turtle.turnLeft()
  280. pushToVeinStack(4)
  281. end
  282.  
  283. function veinMoveRight()
  284. turtle.turnRight()
  285. pushToVeinStack(5)
  286. end
  287.  
  288. function veinMoveBack()
  289. moveBack()
  290. pushToVeinStack(6)
  291. end
  292.  
  293. function popVeinMovment()
  294. local direction = getFromVeinStack()
  295.  
  296. if direction == nil then
  297. return false
  298. end
  299.  
  300. if direction == 1 then
  301. moveBack()
  302. elseif direction == 2 then
  303. moveDown()
  304. elseif direction == 3 then
  305. moveUp()
  306. elseif direction == 4 then
  307. turtle.turnRight()
  308. removeLastVeinStack()
  309. return popVeinMovment()
  310. elseif direction == 5 then
  311. turtle.turnLeft()
  312. removeLastVeinStack()
  313. return popVeinMovment()
  314. elseif direction == 6 then
  315. moveForward()
  316. end
  317.  
  318. removeLastVeinStack()
  319.  
  320. return true;
  321. end
  322.  
  323. function pushToVeinStack(direction)
  324. local stack = getVeinStack()
  325.  
  326. if stack == nil then
  327. stack = {}
  328. end
  329.  
  330. stack[#stack + 1] = direction
  331.  
  332. stack = optimizeVeinStack(stack)
  333. saveVeinStack(stack, #stack)
  334. end
  335.  
  336. function getFromVeinStack()
  337. local data = getVeinStack()
  338.  
  339. if data ~= nil then
  340. return data[#data]
  341. end
  342. return nil
  343. end
  344.  
  345. function optimizeVeinStack(data)
  346. local lastAction = 0
  347. local actionCount = 0
  348.  
  349. local i = 1
  350. while i <= #data do
  351. --turn right and then left is somewhat useless
  352. if (data[i] == 4 and lastAction == 5) or
  353. (data[i] == 5 and lastAction == 4) then
  354. data = moveArrayContent(data, i + 1, 2)
  355. if #data < 1 then
  356. break
  357. end
  358.  
  359. i = 1
  360. lastAction = 0
  361. actionCount = 0
  362. end
  363.  
  364. if data[i] ~= lastAction then
  365. lastAction = 0
  366. actionCount = 0
  367. end
  368.  
  369. if data[i] == 4 then
  370. lastAction = 4
  371. actionCount = actionCount + 1
  372. elseif data[i] == 5 then
  373. lastAction = 5
  374. actionCount = actionCount + 1
  375. end
  376.  
  377. if actionCount == 3 then
  378. local newAction = 4
  379. if lastAction == 4 then
  380. newAction = 5
  381. end
  382. data = moveArrayContent(data, i + 1, 2)
  383. data[i - 2] = newAction
  384.  
  385. i = 0
  386. lastAction = 0
  387. actionCount = 0
  388. end
  389. i = i + 1
  390. end
  391. return data
  392. end
  393.  
  394. function moveArrayContent(array, startIndex, amount)
  395. local size = #array
  396. for i = startIndex, size + amount, 1 do
  397. array[i - amount] = array[i]
  398. array[i] = nil
  399. end
  400. return array
  401. end
  402.  
  403. function removeLastVeinStack()
  404. local data = getVeinStack()
  405. saveVeinStack(data, #data - 1)
  406. end
  407.  
  408. function saveVeinStack(data, length)
  409. if data ~= nil then
  410. local dataLeng = #data
  411. for i = length + 1, dataLeng, 1 do
  412. data[i] = nil
  413. end
  414. end
  415.  
  416. if #data < 1 then
  417. data = nil
  418. end
  419. setVeinStack(data)
  420. end
  421.  
  422. function getVeinStack()
  423. return getVariable("veinStack")
  424. end
  425.  
  426. function setVeinStack(value)
  427. setVariable("veinStack", value)
  428. end
  429.  
  430. function getVariable(name)
  431. local vars = getVariables()
  432. if vars ~= nil then
  433. return vars[name]
  434. end
  435. return nil
  436. end
  437.  
  438. function setVariable(name, value)
  439. local vars = getVariables()
  440.  
  441. if vars == nil then
  442. vars = {}
  443. end
  444.  
  445. vars[name] = value
  446.  
  447. local handle = fs.open("Vars.dat", "w")
  448. handle.writeLine(textutils.serialize(vars))
  449. handle.close()
  450. end
  451.  
  452. function getVariables()
  453. local handle = fs.open("Vars.dat", "r")
  454.  
  455. if handle ~= nil then
  456. local raw = handle.readAll()
  457. handle.close()
  458.  
  459. if raw ~= nil then
  460. return textutils.unserialize(raw)
  461. end
  462. end
  463. return nil
  464. end
  465.  
  466. function getStripLength()
  467. return getVariable("stripLength")
  468. end
  469.  
  470. function setStripLength(value)
  471. setVariable("stripLength", value)
  472. end
  473.  
  474. function getStripPos()
  475. return getVariable("stripPos")
  476. end
  477.  
  478. function setStripPos(value)
  479. setVariable("stripPos", value)
  480. end
  481.  
  482. function getStripOnGround()
  483. return getVariable("stripGround")
  484. end
  485.  
  486. function setStripOnGround(value)
  487. return setVariable("stripGround", value)
  488. end
  489.  
  490. function getStripHasDug()
  491. return getVariable("stripHasDug")
  492. end
  493.  
  494. function setStripHasDug(value)
  495. return setVariable("stripHasDug", value)
  496. end
  497.  
  498. function getStripHasFinished()
  499. return getVariable("stripHasFinished")
  500. end
  501.  
  502. function setStripHasFinished(value)
  503. return setVariable("stripHasFinished", value)
  504. end
  505.  
  506. function digStrip(gotoStart)
  507. local length = getStripLength()
  508.  
  509. if not getStripHasFinished() then
  510. while getStripPos() <= length or (not getStripHasDug()) do
  511. mineVein()
  512.  
  513. if getStripHasDug() then
  514.  
  515. moveForward()
  516. setStripPos(getStripPos() + 1)
  517. setStripHasDug(false)
  518. else
  519. if getStripOnGround() then
  520. moveUp()
  521. setStripOnGround(false)
  522. else
  523. moveDown()
  524. setStripOnGround(true)
  525. end
  526. setStripHasDug(true)
  527. end
  528. end
  529. setStripHasFinished(true)
  530. end
  531.  
  532. mineVein()
  533.  
  534. if not getStripOnGround() then
  535. moveDown()
  536. setStripOnGround(true)
  537. mineVein()
  538. end
  539.  
  540. if gotoStart then
  541. while getStripPos() > 1 do
  542. moveBack()
  543. setStripPos(getStripPos() - 1)
  544. sleep(0.5)
  545. end
  546. end
  547. end
  548.  
  549. function clearStripParams()
  550. setStripLength(0)
  551. setStripPos(1)
  552. setStripOnGround(true)
  553. setStripHasDug(false)
  554. setStripHasFinished(false)
  555. end
  556.  
  557. function getIsPreparing()
  558. return getVariable("isPreparing")
  559. end
  560.  
  561. function setIsPreparing(value)
  562. return setVariable("isPreparing", value)
  563. end
  564.  
  565. function getSpacing()
  566. return getVariable("spacing")
  567. end
  568.  
  569. function setSpacing(value)
  570. return setVariable("spacing", value)
  571. end
  572.  
  573. function getDepth()
  574. return getVariable("depth")
  575. end
  576.  
  577. function setDepth(value)
  578. return setVariable("depth", value)
  579. end
  580.  
  581. function getStripCount()
  582. return getVariable("stripCount")
  583. end
  584.  
  585. function setStripCount(value)
  586. return setVariable("stripCount", value)
  587. end
  588.  
  589. function getRemainingStripCount()
  590. return getVariable("remainStripCount")
  591. end
  592.  
  593. function setRemainingStripCount(value)
  594. return setVariable("remainStripCount", value)
  595. end
  596.  
  597. function getMovingHome()
  598. return getVariable("movHome")
  599. end
  600.  
  601. function setMovingHome(value)
  602. return setVariable("movHome", value)
  603. end
  604.  
  605. function prepareNextStrip()
  606. if not getIsPreparing() then
  607. turtle.turnRight()
  608. setIsPreparing(true)
  609.  
  610. clearStripParams()
  611. end
  612.  
  613. setStripLength(getSpacing() + 1)
  614. digStrip(false)
  615.  
  616. clearStripParams()
  617.  
  618. turtle.turnLeft()
  619. setIsPreparing(false)
  620. setStripHasFinished(false)
  621. end
  622.  
  623. function goHome()
  624. if not getMovingHome() then
  625. turtle.turnLeft()
  626. setMovingHome(true)
  627. setStripPos(1)
  628. end
  629.  
  630. local length = ((getStripCount() - 1) * (getSpacing() + 1))
  631.  
  632. while getStripPos() <= length do
  633. moveForward()
  634. setStripPos(getStripPos() + 1)
  635. end
  636.  
  637. doPitstop()
  638.  
  639. turtle.turnRight()
  640.  
  641. fs.delete("Vars.dat")
  642.  
  643. print("All strips cleared.")
  644. error()
  645. end
  646.  
  647. function initVars()
  648. clearStripParams()
  649. setIsPreparing(false)
  650. setMovingHome(false)
  651.  
  652. print("Enter the spacing between the strips.")
  653. setSpacing(readNumber(0))
  654.  
  655. print("Enter the depth of each strip.")
  656. setDepth(readNumber(1))
  657.  
  658. print("Enter the amount of strips.")
  659. local stripCount = readNumber(1)
  660. setStripCount(stripCount)
  661. setRemainingStripCount(stripCount)
  662. end
  663.  
  664. if getSpacing() == nil then
  665. initVars()
  666. end
  667.  
  668. while true do
  669. if getMovingHome() then
  670. goHome()
  671. end
  672.  
  673. if getIsPreparing() then
  674. prepareNextStrip()
  675. elseif not getStripHasFinished() then
  676. setStripLength(getDepth())
  677. digStrip(true)
  678. clearStripParams()
  679.  
  680. local remStrips = getRemainingStripCount() - 1
  681. setRemainingStripCount(remStrips)
  682. if remStrips < 1 then
  683. goHome()
  684. end
  685.  
  686. prepareNextStrip()
  687. end
  688. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement