Advertisement
Guest User

Windmill Placer v1.1

a guest
Jul 5th, 2013
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.44 KB | None | 0 0
  1. --  
  2. --      Windmill Placer v1.1 by Joseph Jones
  3. --
  4. --      Instructions found at: http://www.computercraft.info/forums2/index.php?/topic/13824-windmill-placer/
  5. --
  6. --
  7. --      Needs 420 cables.   Uses slots 1-14
  8. --      Needs 60 windmills. Uses slot 15
  9. --      Needs 960 fuel.     Uses slot 16
  10. --
  11. --
  12. --      ChangeLog:
  13. --          June 29, 2013: [v1.0] Finished initial release
  14. --          July  5, 2013: [v1.1] Added user control to number of sections that go up at a time.
  15. --
  16.  
  17.  
  18. local currWireSlot = 1
  19.  
  20.  
  21. --Checks the number of wires in curr slot and changes if 0
  22. function checkWireCountInSlot()
  23.     --Checks the slot with wires to see if there are wires
  24.     while(turtle.getItemCount(currWireSlot)==0) do
  25.         currWireSlot = currWireSlot + 1    
  26.        
  27.         --checks to make sure there are wires in the inventory
  28.         if(currWireSlot==15) then
  29.             print("There is not enough cable.")
  30.             print("Press enter to continue.")
  31.             io.read()
  32.             currWireSlot=1
  33.         end
  34.        
  35.         turtle.select(currWireSlot)
  36.     end
  37. end
  38.  
  39.  
  40. function forwardPlaceCable()
  41.     checkWireCountInSlot()
  42.     while (turtle.forward()==false) do end
  43.     turtle.placeDown()
  44. end
  45.  
  46.  
  47. function placeWindmill()
  48.     while (turtle.up()==false) do end
  49.     checkWireCountInSlot()
  50.     turtle.placeDown()
  51.    
  52.     while (turtle.up()==false) do end
  53.     checkWireCountInSlot()
  54.     turtle.placeDown()
  55.    
  56.     while (turtle.up()==false) do end
  57.     turtle.select(15)
  58.     --checks to make sure there are windmills in the inventory
  59.     while(turtle.getItemCount(15)==0) do
  60.         print("There is not enough windmills in slot 15.")
  61.         print("Press enter to continue.")
  62.         io.read()
  63.     end
  64.     turtle.placeDown()
  65.    
  66.     turtle.select(currWireSlot)
  67.    
  68.  
  69. end
  70.  
  71.  
  72. function placeWings(numOfWindMills)
  73.     local temp = numOfWindMills - 1
  74.     temp = temp * 5
  75.    
  76.     while(temp>0) do
  77.         forwardPlaceCable()
  78.         temp = temp - 1
  79.     end
  80.    
  81.     temp = numOfWindMills - 1
  82.     placeWindmill()
  83.     while(temp>0) do
  84.         if(temp>0) then
  85.             while (turtle.back()==false) do end
  86.             while (turtle.down()==false) do end
  87.             while (turtle.down()==false) do end
  88.             while (turtle.down()==false) do end
  89.         end
  90.        
  91.         local temp2 = 4
  92.         while(temp2>0) do
  93.             while (turtle.back()==false) do end
  94.             temp2 = temp2 - 1
  95.         end
  96.        
  97.         placeWindmill()
  98.         temp = temp - 1
  99.     end
  100.    
  101.     turtle.turnRight()
  102.     while (turtle.forward()==false) do end
  103.     while (turtle.down()==false) do end
  104.     while (turtle.down()==false) do end
  105.     while (turtle.down()==false) do end
  106.    
  107. end
  108.  
  109.  
  110. --obtains 960 fuel at the beginning of the program
  111. function fuel(numOfSections)
  112.     turtle.select(16)
  113.     while(turtle.getFuelLevel() < 240*numOfSections) do
  114.         if(turtle.refuel(1)==false) then
  115.             print("Turtle needs more fuel in slot 16. Press enter to continue")
  116.             io.read()
  117.         end
  118.     end
  119.    
  120. end
  121.  
  122. local args = { ... }
  123. --Main program
  124. function main()
  125.     local currSide = 4
  126.    
  127.     if(#args == 1) then
  128.         currSide = tonumber(args[1])
  129.         while(currSide<0 or currSide > 4) do
  130.             print("There are up to 4 sections.")
  131.             print("How many do you want (0-4)?")
  132.             currSide = tonumber(io.read())
  133.         end
  134.     end
  135.    
  136.     fuel(currSide)
  137.     turtle.select(currWireSlot)
  138.  
  139.    
  140.     while(currSide > 0) do
  141.         local temp = 25
  142.         while(temp>0) do
  143.             forwardPlaceCable()
  144.             temp = temp - 1
  145.         end
  146.        
  147.         temp = 1
  148.         turtle.turnRight()
  149.         while(temp<6) do
  150.             placeWings(temp)
  151.             temp = temp + 1
  152.             while (turtle.forward()==false) do end
  153.             while (turtle.forward()==false) do end
  154.             while (turtle.forward()==false) do end
  155.             while (turtle.forward()==false) do end
  156.             turtle.turnLeft()
  157.         end
  158.         currSide = currSide-1
  159.     end
  160. end
  161.  
  162. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement