Advertisement
Ikkalyzte

FarmTree

Dec 24th, 2012
322
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.85 KB | None | 0 0
  1. local function keypress(key)
  2.     while true do
  3.         local event, press=os.pullEvent("char")
  4.         if press ~= "esc" then
  5.             if key == "any" then
  6.                 return press
  7.             elseif press == key then
  8.                 return true
  9.             end
  10.         end
  11.     end
  12. end
  13. local function yesno()
  14.     while true do
  15.         local key = keypress("any")
  16.         if key == "y" then
  17.             return true
  18.         elseif key == "n" then
  19.             return false
  20.         end
  21.     end
  22. end
  23. local function forward()
  24.     local i = 0
  25.     while not turtle.forward() do
  26.         if not turtle.dig() then
  27.             i = i + 1
  28.             turtle.attack()
  29.             if i == 30 then
  30.                 error("Help! I'm stuck.")
  31.             end
  32.         end
  33.     end
  34. end
  35. local function drop()
  36.     local wood=0
  37.         turtle.turnRight()
  38.         turtle.turnRight()
  39.     for f=3,16 do
  40.         turtle.select(f)
  41.         wood = wood + turtle.getItemCount(f)
  42.         turtle.drop()
  43.     end
  44.     totalWood = totalWood + wood
  45.     print("Wood gathered this round: "..wood)
  46.     turtle.turnLeft()
  47.     if turtle.getItemCount(1)>0 or turtle.getItemCount(2)>0 then
  48.         turtle.select(1)
  49.         turtle.drop()
  50.         turtle.select(2)
  51.         turtle.drop()
  52.     end
  53.     turtle.select(1)
  54.     turtle.suck()
  55.     turtle.select(2)
  56.     turtle.suck()
  57.     turtle.turnLeft()
  58. end
  59. local function farm()
  60.     while farmloop do
  61.         local neededSaplings = (W*L)/4
  62.         local waitTime = 1200/(W*L)
  63.         turtle.up()
  64.         for a=1,W do
  65.             for b=1,L do
  66.                 if tonumber(turtle.getFuelLevel()) and turtle.getFuelLevel()<128 then
  67.                     print("Fuel low. Refueling using collected wood...")
  68.                     turtle.select(3)
  69.                     turtle.refuel()
  70.                     turtle.select(1)
  71.                 end
  72.                 forward()
  73.                 turtle.turnLeft()
  74.                 if turtle.detect() then
  75.                     trees = trees + 1
  76.                     turtle.select(3)
  77.                     turtle.dig()
  78.                     forward()
  79.                     turtle.digDown()
  80.                     while turtle.compareUp() do
  81.                         turtle.digUp()
  82.                         turtle.up()
  83.                     end
  84.                     while not turtle.detectDown() do
  85.                         turtle.down()
  86.                     end
  87.                     turtle.back()
  88.                     if turtle.getItemCount(1)>1 then
  89.                         turtle.select(1)
  90.                     else
  91.                         turtle.select(2)
  92.                     end
  93.                     turtle.place()
  94.                     turtle.up()
  95.                 end
  96.                 if b<L then
  97.                     turtle.turnRight()
  98.                     forward()
  99.                     forward()
  100.                 end
  101.             end
  102.             turtle.turnLeft()
  103.             for c=1,(x-1) do
  104.                 forward()
  105.             end
  106.             if a<W then
  107.                 turtle.turnRight()
  108.                 forward()
  109.                 forward()
  110.                 forward()
  111.                 turtle.turnRight()
  112.             end
  113.         end
  114.         turtle.turnLeft()
  115.         for d=1,(y-2) do
  116.             forward()
  117.         end
  118.         turtle.turnLeft()
  119.         turtle.down()
  120.        
  121.         --When saplings run low
  122.        
  123.         if turtle.getItemCount(1)+turtle.getItemCount(2)<neededSaplings then            
  124.             drop()
  125.         end
  126.        
  127.         sleep(waitTime)
  128.     end
  129. end
  130. local function stop()
  131.     while farmloop do
  132.         local event, data, message = os.pullEvent()
  133.         if event == "char" and data == "p" then
  134.             print("Stopping...")
  135.             farmloop = false
  136.             break
  137.         elseif event == "rednet_message" and message == "stop" then
  138.             print("Stopping...")
  139.             farmloop = false
  140.             id = tonumber(data)
  141.             break
  142.         end
  143.     end
  144. end
  145.  
  146. setup=false
  147. setuploop=true
  148. farmloop=true
  149. autoMeasure=" "
  150. trees=0
  151. totalWood=0
  152. L=0
  153. W=0
  154. x=0
  155. y=0
  156.  
  157. if fs.isDir("treesettings") and fs.exists("treesettings/autoMeasure") and fs.exists("treesettings/L") and fs.exists("treesettings/W") then
  158.     autoMeasurefile = fs.open("treesettings/autoMeasure","r")
  159.     autoMeasure = autoMeasurefile.readAll()
  160.     autoMeasurefile.close()
  161.     Lfile=fs.open("treesettings/L","r")
  162.     L=tonumber(Lfile.readAll())
  163.     Lfile.close()
  164.     Wfile=fs.open("treesettings/W","r")
  165.     W=tonumber(Wfile.readAll())
  166.     Wfile.close()
  167. else
  168.     setup = true
  169.     fs.makeDir("treesettings")
  170. end
  171.  
  172. term.clear()
  173. term.setCursorPos(1,1)
  174. textutils.slowPrint("Initialization in progress...")
  175. sleep(2)
  176. print("This Turtle is programmed for a rectangular birch or spruce tree farm, with 2 spaces between each tree, and at least one block of space around the whole farm.")
  177. sleep(1)
  178. print("I am supposed to be placed in the bottom-left corner of the farm, with a dropoff chest behind me and a sapling chest to my right. If this is not the case, please move me there and try again.")
  179. print("Press any key to continue.")
  180. keypress("any")
  181. term.clear()
  182. term.setCursorPos(1,1)
  183.  
  184.  
  185. while true do
  186.     print("Type 'last' to use last settings, or 'setup' to reconfigure.")
  187.     local doSetup=io.read()
  188.  
  189.     if setup or doSetup=="setup" or doSetup=="Setup" then
  190.         setup=true
  191.         if setup then
  192.             print("Past settings not detected.")
  193.         end
  194.         print("Prepare to enter your information.")
  195.         break
  196.     elseif doSetup=="last" or doSetup=="Last" then
  197.         setup=false
  198.         print("Using last settings.")
  199.         break
  200.     else
  201.         term.clear()
  202.         term.setCursorPos(1,1)
  203.     end
  204. end
  205.  
  206. if setup then
  207.     while true do
  208.         print("Type 'auto' for auto-measurement, or 'manual' for manual input of farm dimensions.")
  209.         local AorM=io.read()
  210.         if AorM=="Auto" or AorM=="auto" then
  211.             autoMeasure="true"
  212.             print("Measuring set to automatic.")
  213.             break
  214.         elseif AorM=="Manual" or AorM=="manual" then
  215.             autoMeasure="false"
  216.             print("Please enter length of farm \(direction I am facing\).")
  217.             L=tonumber(io.read())
  218.             print("Please enter width of farm.")
  219.             W=tonumber(io.read())
  220.             print("Dimensions set.")
  221.             break
  222.         else
  223.             term.clear()
  224.             term.setCursorPos(1,1)
  225.         end
  226.     end
  227.     print("Would you like to save your settings? (y/n)")
  228.     local save=yesno()
  229.     if save then
  230.         print("Saving...")
  231.         sleep(2)
  232.         setAutoMeasurefile=fs.open("treesettings/autoMeasure","w")
  233.         setAutoMeasurefile.write(autoMeasure)
  234.         setAutoMeasurefile.close()
  235.         if autoMeasure=="false" then
  236.             setLfile=fs.open("treesettings/L","w")
  237.             setLfile.write(tostring(L))
  238.             setLfile.close()
  239.             setWfile=fs.open("treesettings/W","w")
  240.             setWfile.write(tostring(W))
  241.             setWfile.close()
  242.         end
  243.         print("Save Complete!")
  244.     else
  245.         print("Settings will be temporary.")
  246.     end
  247. end
  248.  
  249. term.clear()
  250. term.setCursorPos(1,1)
  251. print("Please fill slots 1 and 2 with saplings.")
  252. print("When finished, press any key to continue.")
  253. keypress("any")
  254. term.clear()
  255. term.setCursorPos(1,1)
  256. if turtle.getFuelLevel()<256 then
  257.     print("Please refuel me first.")
  258.     error()
  259. end
  260.  
  261.  
  262. if autoMeasure=="true" then
  263.     print("Auto-Measuring...")
  264.    
  265.     --Auto-init:
  266.    
  267.     L=0
  268.     W=0
  269.    
  270.     --Measure length
  271.     forward()
  272.     local starting = true
  273.     while not turtle.detect() do
  274.         turtle.turnLeft()
  275.         if turtle.detect() then
  276.             L=L+1
  277.         elseif not starting then
  278.             turtle.turnLeft()
  279.             forward()
  280.             forward()
  281.             turtle.turnRight()
  282.             turtle.turnRight()
  283.             break
  284.         else
  285.             print("No saplings detected. Very confused.")
  286.             error()
  287.         end
  288.         turtle.turnRight()
  289.         forward()
  290.         if not turtle.detect() then
  291.             forward()
  292.             forward()
  293.         end
  294.         starting = false
  295.     end
  296.     turtle.turnLeft()
  297.     turtle.turnLeft()
  298.    
  299.     --Return to start
  300.    
  301.     x=3*L-1
  302.    
  303.     for e=1,x do
  304.         forward()
  305.     end
  306.     turtle.turnRight()
  307.    
  308.     --Measure width
  309.    
  310.     forward()
  311.     while not turtle.detect() do
  312.         turtle.turnRight()
  313.         if turtle.detect() then
  314.             W=W+1
  315.         else
  316.             turtle.turnRight()
  317.             forward()
  318.             forward()
  319.             turtle.turnLeft()
  320.             turtle.turnLeft()
  321.             break
  322.         end
  323.         turtle.turnLeft()
  324.         forward()
  325.         if not turtle.detect() then
  326.             forward()
  327.             forward()
  328.         end
  329.     end
  330.     turtle.turnRight()
  331.     turtle.turnRight()
  332.    
  333.     --Return to start
  334.    
  335.     y=3*W-1
  336.    
  337.     for f=1,y do
  338.         forward()
  339.     end
  340.     turtle.turnLeft()
  341.    
  342.     print("Saving...")
  343.     sleep(2)
  344.     autoMeasurefile=fs.open("treesettings/autoMeasure","w")
  345.     autoMeasurefile.write("false")
  346.     autoMeasurefile.close()
  347.     Lfile=fs.open("treesettings/L","w")
  348.     Lfile.write(tostring(L))
  349.     Lfile.close()
  350.     Wfile=fs.open("treesettings/W","w")
  351.     Wfile.write(tostring(W))
  352.     Wfile.close()
  353.     print("Save Complete!")
  354. else
  355.     x=3*L-1
  356.     y=3*W-1
  357. end
  358.  
  359. print("Initialization complete! Beginning farming...")
  360. print("Press \"p\" at any time to stop. The turtle will complete one more circuit before stopping.")
  361.  
  362. --Actual Farming
  363.  
  364. parallel.waitForAll(farm,stop)
  365.  
  366. --When finished
  367.  
  368. drop()
  369. print("Farming Complete! This tree farming program courtesy of ClAnta :D")
  370. print("Total trees chopped down: "..trees)
  371. print("Total wood gathered: "..totalWood)
  372.  
  373. setup, autoMeasure, L, W, x, y, trees, totalWood = nil, nil, nil, nil, nil, nil, nil, nil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement