Advertisement
Guest User

Water Mill Placer v1.1

a guest
Jul 7th, 2013
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.50 KB | None | 0 0
  1. --  
  2. --              Water Mill Placer v1.1 by Joseph Jones
  3. --
  4. --              Instructions found at: http://www.computercraft.info/forums2/index.php?/topic/13920-water-mill-placer/
  5. --
  6. --              Needs X watermills.             Uses slot 1
  7. --              Needs X/2 cables.               Uses slot 2
  8. --              Needs some building material.   Uses slot 3-12
  9. --              Needs 3 water buckets.          Uses slot 13-15
  10. --              Needs fuel.                     Uses slot 16
  11. --
  12. --              ChangeLog:
  13. --                      June 29, 2013: [v1.0] Finished initial release
  14. --          July  7, 2013: [v1.1] Fixed issue where turtle can run out of fuel moving backwards
  15. --
  16.  
  17. local currSlot = 3
  18. local waterSlot = 13
  19. local direction
  20.  
  21. function checkFuel()
  22.         if(turtle.getFuelLevel() < 2) then
  23.                 turtle.select(16)
  24.                 if(turtle.refuel(1)==false) then
  25.                         print("Turtle needs more fuel in slot 16. Press enter to continue")
  26.                         io.read()
  27.                         checkFuel()
  28.                 end
  29.                
  30.                 turtle.select(currSlot)
  31.         end
  32. end
  33.  
  34. function moveUp()
  35.         checkFuel()
  36.         while(turtle.up()==false)do turtle.digUp() end
  37. end
  38.  
  39. function moveDown()
  40.         checkFuel()
  41.         while(turtle.down()==false)do turtle.digDown() end
  42. end
  43.  
  44. function move()
  45.         checkFuel()
  46.         while(turtle.forward()==false)do turtle.dig() end
  47. end
  48.  
  49. function back()
  50.     checkFuel()
  51.         while(turtle.back()==false)do end
  52. end
  53.  
  54. function placeGround()
  55.  
  56.         local lastSlot = currSlot
  57.         while(turtle.getItemCount(currSlot)==0)do
  58.                 currSlot = currSlot+1
  59.                 if(currSlot == 13) then
  60.                         currSlot = 3
  61.                 end
  62.                 if(currSlot == lastSlot) then
  63.                         print("Turtle needs more material in slot 3-12.")
  64.                         print("Press enter to continue")
  65.                         io.read()
  66.                 end
  67.                 turtle.select(currSlot)
  68.         end
  69.        
  70.         turtle.placeDown()
  71. end
  72.  
  73. function placeWaterMill()
  74.         turtle.select(1)
  75.         while(turtle.getItemCount(1)==0)do
  76.                 print("Turtle needs more watermills in slot 1.")
  77.                 print("Press enter to continue")
  78.                 io.read()
  79.         end
  80.         if(turtle.compareDown()==false) then
  81.                 while(turtle.placeDown()==false) do turtle.digDown() end
  82.         end
  83.         turtle.select(currSlot)
  84. end
  85.  
  86. function placeCable()
  87.         turtle.select(2)
  88.         while(turtle.getItemCount(2)==0)do
  89.                 print("Turtle needs more cables in slot 2.")
  90.                 print("Press enter to continue")
  91.                 io.read()
  92.         end
  93.         if(turtle.compareDown()==false) then
  94.                 while(turtle.placeDown()==false) do turtle.digDown() end
  95.         end
  96.         turtle.select(currSlot)
  97. end
  98.  
  99. function placeWater()
  100.         turtle.select(waterSlot)
  101.        
  102.         if(waterSlot<15) then
  103.                 waterSlot = waterSlot+1
  104.         end
  105.        
  106.         turnOpposite()
  107.         turtle.place()
  108.         turn()
  109.         turtle.select(currSlot)
  110.        
  111. end
  112.  
  113. function turn()
  114.         if(direction==0) then
  115.                 turtle.turnLeft()
  116.         else if(direction==1) then
  117.                 turtle.turnRight()
  118.         end end
  119. end
  120.  
  121. function turnOpposite()
  122.         if(direction==1) then
  123.                 turtle.turnLeft()
  124.         else if(direction==0) then
  125.                 turtle.turnRight()
  126.         end end
  127. end
  128.  
  129. function changeDirection()
  130.         if(direction==1) then
  131.                 direction=0
  132.         else
  133.                 direction=1
  134.         end
  135. end
  136.  
  137. function quarry(LENGTH, layer)
  138.         turtle.select(currSlot)
  139.         placeGround()
  140.         turtle.turnRight()
  141.         local length = LENGTH
  142.         direction = 0
  143.        
  144.         while(length>0) do
  145.                 local width= 4
  146.                
  147.                 while(width>0) do
  148.                         move()
  149.                         width= width- 1
  150.                        
  151.                        
  152.                         if(layer==1) then
  153.                                 if(length>1) then
  154.                                         if(length==LENGTH) then
  155.                                                 placeGround()
  156.                                         else if(width==3) then
  157.                                                 placeWaterMill()
  158.                                         else if(width==1) then
  159.                                                 placeWaterMill()
  160.                                         else if(width==2) then
  161.                                                 placeCable()
  162.                                         else placeGround()
  163.                                         end end end end
  164.                                 else
  165.                                         placeGround()
  166.                                 end
  167.                         else
  168.                                 if(length>1) then
  169.                                         if(length==LENGTH) then
  170.                                                 placeGround()
  171.                                                 turtle.digUp()
  172.                                         else if(width==3) then
  173.                                                 placeGround()
  174.                                         else if(width==1) then
  175.                                                 placeGround()
  176.                                         else if(width==2) then
  177.                                                 placeGround()
  178.                                         else
  179.                                                 placeGround()
  180.                                                 turtle.digUp()
  181.                                         end end end end
  182.                                 else
  183.                                         placeGround()
  184.                                         turtle.digUp()
  185.                                 end
  186.                         end
  187.                        
  188.                        
  189.                         if(length == LENGTH) then
  190.                                 if(width==1) then
  191.                                         turtle.turnRight()
  192.                                         placeWater()
  193.                                         turtle.turnLeft()
  194.                                 end
  195.                                 if(width==3) then
  196.                                         turtle.turnRight()
  197.                                         placeWater()
  198.                                         turtle.turnLeft()
  199.                                 end
  200.                         else
  201.                                 if(width==3) then
  202.                                         if(direction==1) then
  203.                                                 placeWater()
  204.                                         else
  205.                                                 turnOpposite()
  206.                                                 placeWater()
  207.                                                 turn()
  208.                                         end
  209.                                 end
  210.                         end
  211.                 end
  212.                
  213.                 length = length - 1
  214.                
  215.                 if(length>0) then
  216.                         turn()
  217.                         move()
  218.                         if(layer==2) then turtle.digUp() end
  219.                         placeGround()
  220.                         if(length == LENGTH-1) then
  221.                                 changeDirection()
  222.                                 turtle.turnLeft()
  223.                                 placeWater()
  224.                         else
  225.                                 turn()
  226.                                 changeDirection()
  227.                         end
  228.                        
  229.                 end
  230.         end
  231.        
  232.  
  233. end
  234.  
  235. function placeLine(LENGTH)
  236.         local length = LENGTH - 1
  237.        
  238.         while(length>0) do
  239.                 placeGround()
  240.                 move()
  241.                 length = length - 1
  242.         end
  243.        
  244. end
  245.  
  246. function boarder(LENGTH)
  247.         local height = 4
  248.         moveDown()
  249.         moveDown()
  250.         moveDown()
  251.         while(height>0) do
  252.                 placeLine(LENGTH+2)
  253.                 turtle.turnRight()
  254.                 placeLine(7)
  255.                 turtle.turnRight()
  256.                 placeLine(LENGTH+2)
  257.                 turtle.turnRight()
  258.                 placeLine(7)
  259.                 turtle.turnRight()
  260.                 height = height - 1
  261.                 if(height>0) then moveUp() end
  262.         end
  263.        
  264.         turtle.turnRight()
  265.         move()
  266.         turtle.turnLeft()
  267.         move()
  268. end
  269.  
  270. function main()
  271.  
  272.         local input
  273.         local lenth
  274.         local wantsBoarder
  275.        
  276.         print("Want a boarder? ")
  277.         input = io.read()
  278.         while((input ~= 'n') and (input ~= 'N') and (input ~= 'Y') and (input ~= 'y'))do
  279.                 print("Y or N: ")
  280.                 input = io.read()
  281.         end
  282.         wantsBoarder = input
  283.        
  284.         print("Length: ")
  285.         input = tonumber(io.read())
  286.         while(input<3 or input > 34) do
  287.                 print("The length must be between 3-34: ")
  288.                 input = tonumber(io.read())
  289.         end
  290.         length = input
  291.        
  292.         if(wantsBoarder=='Y' or wantsBoarder =='y') then
  293.                 boarder(length)
  294.         end
  295.  
  296.         turtle.select(currSlot)
  297.         moveDown()
  298.         quarry(length,1)
  299.         if(direction==1) then
  300.                 back()
  301.                 turtle.select(15)
  302.                 turtle.place()
  303.                 back()
  304.                 back()
  305.                 back()
  306.                 turnOpposite()
  307.         else
  308.                 turnOpposite()
  309.         end
  310.         waterSlot = 13
  311.         turtle.select(13)
  312.         turtle.place()
  313.         os.sleep(.60)
  314.         turtle.select(14)
  315.         turtle.place()
  316.         os.sleep(.60)
  317.         turtle.select(15)
  318.         turtle.place()
  319.         moveDown()
  320.         os.sleep(.60)
  321.         moveDown()
  322.         quarry(length,2)
  323.  
  324.         turtle.select(15)
  325.         os.sleep(.20)
  326.         if(direction==0) then
  327.                 turnOpposite()
  328.                 turtle.place()
  329.         end
  330.         moveUp()
  331.         moveUp()
  332.         moveUp()
  333.         turtle.placeDown()
  334.         if(direction==1) then
  335.                 back()
  336.                 back()
  337.                 back()
  338.                 back()
  339.                 turtle.turnLeft()
  340.         end
  341. end
  342.  
  343. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement