Advertisement
Guest User

Solar Panel Placer

a guest
Jul 6th, 2013
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.12 KB | None | 0 0
  1. --  
  2. --              Solar Panel Placer v1.0 by Joseph Jones
  3. --
  4. --              Instructions found at: http://www.computercraft.info/forums2/index.php?/topic/13942-solar-panel-placer/
  5. --
  6. --      Needs solar panels. Uses slots 1-8
  7. --      Needs cables.       Uses slots 9-15
  8. --      Needs fuel.     Uses slot 16
  9. --
  10. --              ChangeLog:
  11. --                      July 6, 2013: [v1.0] Finished initial release
  12. --
  13.  
  14. local solarPanelSlot
  15. local cableSlot
  16.  
  17. function checkFuel()
  18.     if(turtle.getFuelLevel() < 2) then
  19.         turtle.select(16)
  20.         if(turtle.refuel(1)==false) then
  21.             print("Turtle needs more fuel in slot 16. Press enter to continue")
  22.             io.read()
  23.             checkFuel()
  24.         end
  25.     end
  26. end
  27.  
  28. function move()
  29.     checkFuel()
  30.     while(turtle.forward()==false)do turtle.dig() end
  31. end
  32.  
  33. function moveBack()
  34.     checkFuel()
  35.     while(turtle.back()==false)do end
  36. end
  37.  
  38. function moveUp()
  39.     checkFuel()
  40.     while(turtle.up()==false)do turtle.digUp() end
  41. end
  42.  
  43. function moveDown()
  44.     checkFuel()
  45.     while(turtle.down()==false)do turtle.digDown() end
  46. end
  47.  
  48. --This places a solar panel in a specified direction
  49. --Direction: 2 is down, 1 is up, 0 is in front
  50. function placeSolarPanel(direction)
  51.     local lastSlot = solarPanelSlot
  52.  
  53.     while(turtle.getItemCount(solarPanelSlot)==0)do
  54.         solarPanelSlot = solarPanelSlot+1
  55.         if(solarPanelSlot == 9) then
  56.             solarPanelSlot = 1
  57.         end
  58.         if(solarPanelSlot == lastSlot) then
  59.             print("Turtle needs more solar panels in slots 1-8.")
  60.             print("Press enter to continue")
  61.             io.read()
  62.         end
  63.     end
  64.    
  65.     turtle.select(solarPanelSlot)
  66.     if direction==1 then
  67.         while(turtle.placeUp()==false) do turtle.digUp() end
  68.     else if direction ==2 then
  69.         while(turtle.placeDown()==false) do turtle.digDown() end
  70.     else
  71.         while(turtle.place()==false) do turtle.dig() end
  72.     end end
  73. end
  74.  
  75. --This places a cable in a specified direction
  76. --Direction: 2 is down, 0 is in front
  77. function placeCable(direction)
  78.     local lastSlot = cableSlot
  79.    
  80.     while(turtle.getItemCount(cableSlot)==0)do
  81.         cableSlot = cableSlot+1
  82.         if(cableSlot == 16) then
  83.             cableSlot = 9
  84.         end
  85.         if(cableSlot == lastSlot) then
  86.             print("Turtle needs more cables in slots 9-15.")
  87.             print("Press enter to continue")
  88.             io.read()
  89.         end
  90.     end
  91.    
  92.     turtle.select(cableSlot)
  93.     if(direction==2) then
  94.         while(turtle.placeDown()==false) do turtle.digDown() end
  95.     else
  96.         while(turtle.place()==false) do turtle.dig() end
  97.     end
  98.    
  99. end
  100.  
  101. function clearRow(length, digUp)
  102.     for tempLength = length, 1, -1 do
  103.         move()
  104.         if digUp then
  105.             turtle.digUp()
  106.         end
  107.     end
  108. end
  109.  
  110.  
  111. function placeSolarRow(length)
  112.     clearRow(length)
  113.     for tempLength = length, 1, -1 do
  114.         moveBack()
  115.         placeSolarPanel(0)
  116.     end
  117. end
  118.  
  119. function placeCableAndSolarRow(length)
  120.     clearRow(length,true)
  121.     for tempLength = length, 1, -1 do
  122.         placeSolarPanel(1)
  123.         moveBack()
  124.         placeCable(0)
  125.     end
  126. end
  127.  
  128. function goToNextRow()
  129.     turtle.turnRight()
  130.     move()
  131.     turtle.turnLeft()
  132. end
  133.  
  134. function goUpToNextRow()
  135.     goToNextRow()
  136.     moveUp()
  137.     moveUp()
  138. end
  139.  
  140. function goDownToNextRow()
  141.     goToNextRow()
  142.     moveDown()
  143.     moveDown()
  144. end
  145.  
  146. function placeGable(length, height)
  147.     state = true
  148.    
  149.     --This handles the left half of the gable
  150.     for tl = height-1, 1, -1 do
  151.         if state then
  152.             if(tl~=height-1) then goUpToNextRow() end
  153.             placeSolarRow(length)
  154.         else
  155.             goToNextRow()
  156.             placeCableAndSolarRow(length)
  157.         end
  158.         state = state==false
  159.     end
  160.    
  161.     --This handles the middle row of the gable
  162.     --Different depending on if the height is even or odd.
  163.     goToNextRow()
  164.     if(height%2==1) then moveUp() end
  165.     placeCableAndSolarRow(length)
  166.     goToNextRow()
  167.     if(height%2==1) then moveDown() end
  168.     state = state==false
  169.    
  170.     --This handles the right half of the gable
  171.     for tl = height-1, 1, -1 do
  172.         if state then
  173.             if(tl~=height-1) then goToNextRow() end
  174.             placeSolarRow(length)
  175.         else
  176.             if(tl~=height-1) then goDownToNextRow() end
  177.             placeCableAndSolarRow(length)
  178.         end
  179.         state = state==false
  180.     end
  181.    
  182. end
  183.  
  184. function placeLastFlowerRows()
  185.     moveUp()
  186.     placeSolarPanel(2)
  187.     move()
  188.     placeCable(2)
  189.     move()
  190.     placeSolarPanel(2)
  191.     moveBack()
  192.     turtle.turnRight()
  193.     move()
  194.     placeSolarPanel(2)
  195.     moveBack()
  196.     moveBack()
  197.     placeSolarPanel(2)
  198.     move()
  199.     turtle.turnLeft()
  200.     moveUp()
  201.     placeSolarPanel(2)
  202. end
  203.  
  204. function placeFlower(height)
  205.     if(height==2) then
  206.         placeLastFlowerRows()
  207.         return
  208.     end
  209.    
  210.     for section=4, 1, -1 do
  211.        
  212.         move()
  213.         placeCable(2)
  214.         turtle.turnRight()
  215.         move()
  216.         placeSolarPanel(2)
  217.         moveBack()
  218.         turtle.turnLeft()
  219.         move()
  220.         placeSolarPanel(2)
  221.         turtle.turnLeft()
  222.        
  223.         for spib = height - 3, 1, -1 do
  224.             move()
  225.             placeCable(2)
  226.             turtle.turnLeft()
  227.             move()
  228.             placeCable(2)
  229.             turtle.turnLeft()
  230.             turtle.turnLeft()
  231.             move()
  232.             move()
  233.             placeSolarPanel(2)
  234.             turtle.turnLeft()
  235.         end
  236.     end
  237.    
  238.     if(height==3) then
  239.         move()
  240.         turtle.turnLeft()
  241.         move()
  242.         placeCable(2)
  243.         moveBack()
  244.     else
  245.         turtle.turnLeft()
  246.         move()     
  247.         turtle.turnRight()
  248.         moveUp()
  249.     end
  250.    
  251.     placeFlower(height-1)
  252. end
  253.  
  254. function main()
  255.     solarPanelSlot = 1
  256.     cableSlot = 9
  257.    
  258.     local length
  259.     local height
  260.    
  261.     print("Type in the number of the style you wish to build.")
  262.     print("")
  263.     print("1.) Flower")
  264.     print("2.) Gable (Triangular Roof)")
  265.    
  266.     --Gets sytle for building and checks input
  267.     local input = tonumber(io.read())
  268.     while(input~=1 and input ~= 2) do
  269.         print("Invalid choice. The number must be between 1-2.")
  270.         input = tonumber(io.read())
  271.     end
  272.    
  273.     --Gets the length for the gable and checks input
  274.     if input == 2 then
  275.         print()
  276.         print("Length?")
  277.         length = tonumber(io.read())
  278.         while length<0 do
  279.             print("The length cannot be less than zero")
  280.             length = tonumber(io.read())
  281.         end
  282.     end
  283.    
  284.     --Gets the hieght and checks input
  285.     print()
  286.     print("Height?")
  287.     height = tonumber(io.read())
  288.     while height<2 do
  289.         print("The height cannot be less than two")
  290.         height = tonumber(io.read())
  291.     end
  292.    
  293.     --places the gable
  294.     if input == 2 then
  295.         placeGable(length, height)
  296.     else
  297.         if height==2 then
  298.             placeLastFlowerRows()
  299.             return
  300.         end
  301.         --Gets to the initial height needed for 3 layers or more.
  302.         moveUp()
  303.         move()
  304.         turtle.turnLeft()
  305.         move()
  306.         turtle.turnLeft()
  307.         turtle.turnLeft()
  308.         placeFlower(height)
  309.     end
  310. end
  311.  
  312. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement