Advertisement
rhyser9

Redwood Tree Farm v3.0 by rhyser9

Dec 29th, 2012
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.55 KB | None | 0 0
  1. --************
  2. --*Print Logo*
  3. --************
  4. function logo()
  5.   shell.run('clear')
  6.   print "***************************************"
  7.   print "*          Redwood Tree Farm          *"
  8.   print "*             Version 3.0             *"
  9.   print "*         Created By: rhyser9         *"
  10.   print "***************************************"
  11.   term.setCursorPos(1,6)
  12. end
  13.  
  14. --*****************
  15. --*Terminate Error*
  16. --*****************
  17. function terminate()
  18.   sleep(1)
  19.   print "Terminating Program..."
  20.   sleep(3)
  21.   print "Program Terminated"
  22.   error()
  23. end
  24.  
  25. --******************
  26. --*Gather Materials*
  27. --******************
  28. logo()
  29. print "Please place Saplings in Slot #1."
  30.   turtle.select(1)
  31.   while turtle.getItemCount(1) == 0 do
  32.     sleep(1)
  33.   end
  34.  
  35. logo()
  36. print "Please place bonemeal in Slot #2."
  37.   turtle.select(2)
  38.   while turtle.getItemCount(2) == 0 do
  39.     sleep(1)
  40.   end
  41.  
  42. logo()
  43. print "Please place Dirt in Slot #3."
  44.   turtle.select(3)
  45.   while turtle.getItemCount(3) == 0 do
  46.     sleep(1)
  47.   end
  48.  
  49. logo()
  50. print "Please place a Log in Slot #15."
  51.   turtle.select(15)
  52.   while turtle.getItemCount(15) == 0 do
  53.     sleep(1)
  54.   end
  55.  
  56. logo()
  57. print "Please place fuel in Slot #16."
  58.   turtle.select(16)
  59.   while turtle.getItemCount(16) == 0 do
  60.     sleep(1)
  61.   end
  62.  
  63. --*******************
  64. --*Configure Program*
  65. --*******************
  66. logo()
  67. print "Would you like to enable the Resupply function?"
  68. write("(Y/N): ")
  69. input = read()
  70. if input == "Y" or input == "y" then
  71.   resupply = 1
  72.   print "Resupply Mode Enabled"
  73. elseif input == "N" or input == "n" then
  74.   resupply = 0
  75.   print "Resupply Mode not Enabled"
  76. else
  77.   resupplyOn = 0
  78.   print "Couldn't Understand Input"
  79.   print "Resupply Mode not Enabled"
  80. end
  81. sleep(2)
  82.  
  83. --*******************
  84. --*Calculate Runtime*
  85. --*******************
  86. local sapling = math.floor((turtle.getItemCount(1) - 1) / 4)
  87. local bonemeal = turtle.getItemCount(2) - 1
  88.  
  89. logo()
  90. print "Calculating Runtime..."
  91. sleep(2)
  92. if sapling <= bonemeal then
  93.   if sapling == 0 then
  94.     print "Not Enough Items to Run"
  95.     sleep(1)
  96.     print "Terminating Program"
  97.     sleep(3)
  98.     print "Program Terminated"
  99.     error()
  100.   elseif sapling == 1 then
  101.     print "The program should run 1 time."
  102.   else
  103.     write("The program should run "..sapling.." times.\n")
  104.   end
  105. else
  106.   if bonemeal == 0 then
  107.     print "Not Enough Items to Run"
  108.     sleep(1)
  109.     print "Terminating Program"
  110.     sleep(3)
  111.     print "Program Terminated"
  112.     error()
  113.   elseif bonemeal == 1 then
  114.     print "The program should run 1 time."
  115.   else
  116.     write("The program should run "..bonemeal.." times.\n")
  117.   end
  118. end
  119.  
  120. for i=0,4 do
  121.   write("\nThe program will initiate in "..5 - i.." seconds")
  122.   sleep(1)
  123. end
  124. shell.run('clear')
  125.  
  126. --********
  127. --*Refuel*
  128. --********
  129. function refuel()
  130.   while turtle.getFuelLevel() < 50 do
  131.     print "  Low Fuel!"
  132.     print "  Refueling..."
  133.     turtle.select(16)
  134.     turtle.refuel(1)
  135.         sleep(2)
  136.     if turtle.refuel() == false then
  137.       print "  Refueling Failed!"
  138.       terminate()
  139.     else
  140.       print "  Turtle Refueled"
  141.     end
  142.   end
  143. end
  144.  
  145. --**********************
  146. --*Plant & Grow Sapling*
  147. --**********************
  148. function plant()
  149.   print "  Planting Tree..."
  150.   turtle.select(1)
  151.   --First Sapling
  152.   turtle.up()
  153.   turtle.forward()
  154.   turtle.placeDown()
  155.   --Second Sapling
  156.   turtle.forward()
  157.   turtle.placeDown()
  158.   --Third Sapling
  159.   turtle.turnRight()
  160.   turtle.forward()
  161.   turtle.placeDown()
  162.   --Fourth Sapling
  163.   turtle.turnRight()
  164.   turtle.forward()
  165.   turtle.placeDown()
  166.   --Return to Start
  167.   turtle.turnRight()
  168.   turtle.forward()
  169.   turtle.turnLeft()
  170.   turtle.forward()
  171.   turtle.turnRight()
  172.   turtle.turnRight()
  173.   turtle.down()
  174.   --Bonemeal
  175.   turtle.select(2)
  176.   turtle.place()
  177.   --Verify Process
  178.   turtle.select(15)
  179.   if turtle.compare() then
  180.     print "  Planting Process Successful"
  181.   else
  182.     print "  Planting Process Failed"
  183.     print "  Possible Causes:"
  184.     print "  * Saplings and Logs don't match"
  185.     print "  * Planting Area Blocked"
  186.     terminate()
  187.   end
  188. end
  189.  
  190. --**************
  191. --*Harvest Tree*
  192. --**************
  193. function harvest()
  194.   print "  Harvesting Tree..."
  195.   turtle.select(15)
  196.   --Chop First Side
  197.   turtle.dig()
  198.   turtle.forward()
  199.   while turtle.compareUp() == true do
  200.     turtle.dig()
  201.     turtle.digUp()
  202.     turtle.up()
  203.   end
  204.   turtle.dig()
  205.   --Chop Second Side
  206.   turtle.select(3)
  207.   turtle.turnRight()
  208.   turtle.dig()
  209.   turtle.forward()
  210.   turtle.turnLeft()
  211.   while turtle.compareDown() == false do
  212.     turtle.dig()
  213.     turtle.digDown()
  214.     turtle.down()
  215.   end
  216.   turtle.dig()
  217.   --Return to Start
  218.   turtle.turnLeft()
  219.   turtle.forward()
  220.   turtle.turnLeft()
  221.   turtle.forward()
  222.   print "  Harvest Completed"
  223. end
  224.  
  225. --**********
  226. --*Resupply*
  227. --**********
  228. function resupply()
  229.   local i = 0
  230.   --Saplings
  231.   turtle.suckDown()
  232.   --Fuel
  233.   turtle.turnRight()
  234.   turtle.suck()
  235.   --Bonemeal
  236.   turtle.turnLeft()
  237.   turtle.turnLeft()
  238.   turtle.suck()
  239.   --Drop Off Extras
  240.   turtle.turnRight()
  241.   while i ~= 10 do
  242.     turtle.select(4 + i)
  243.     turtle.drop()
  244.     i = i + 1
  245.   end
  246.   turtle.select(15)
  247.   turtle.drop(turtle.getItemCount(15) - 1)
  248.   turtle.turnLeft()
  249.   turtle.turnLeft()
  250. end
  251.  
  252. --***********
  253. --*Main Loop*
  254. --***********
  255. local resupplyOn
  256.  
  257. logo()
  258. while turtle.getItemCount(1) > 1 and turtle.getItemCount(2) > 1 do
  259.   logo()
  260.   print "Farming Cycle Initiated"
  261.   refuel()
  262.   plant()
  263.   harvest()
  264.   if resupplyOn == 0 then
  265.     resupply()
  266.   end
  267.   print "Farming Cycle Completed"
  268.   print "Waiting for Leaf Despawn..."
  269.   sleep(400)
  270. end
  271.  
  272. print "Program Completed"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement