Advertisement
ksbd

EnderEnder

May 27th, 2013
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.34 KB | None | 0 0
  1. --Constants!
  2.  
  3.  
  4. --Variables!
  5.  
  6. local choiceCheck = ""
  7. local refuelCheck = ""
  8. local refuelExit = ""
  9. local fuelLevel = ""
  10. local pathBlocks = ""
  11. local pathA = ""
  12. local pathBlockCheckA, pathBlockCheckB, pathBlockCheckC = 0, 0, 0
  13. local pathBlockCheckA2, pathBlockCheckB2, pathBlockCheckC2 = 0, 0, 0
  14. local pathSlot = 1
  15. --Functions!
  16.  
  17. function clear()
  18.     term.clear()
  19.     term.setCursorPos(1,1)
  20. end
  21.  
  22. function invalidChoice()
  23.     print("")
  24.     print("Invalid Choice, try again...")
  25.     sleep(2.5)
  26.     choiceCheck = ""
  27.     menuScreen()
  28. end
  29.  
  30. function refuel()
  31.     fuelLevel = turtle.getFuelLevel()
  32.     if fuelLevel <= 20 then
  33.         turtle.select(16)
  34.         refuelCheck = turtle.getItemCount(16)
  35.         if tonumber(refuelCheck) > 0 then
  36.             turtle.refuel(refuelCheck)
  37.         else
  38.             enterFuel()
  39.         end
  40.     refuelCheck = ""
  41.     end
  42. end
  43.  
  44. function enterFuel()
  45.     clear()
  46.     while turtle.getItemCount(16) <=0 do
  47.         clear()
  48.         print("This turtle needs fuel to continue...")
  49.         print("Place fuel in slot 16 and press any key to continue, or type 'end' to exit.")
  50.         refuelExit = io.read()
  51.         if refuelExit == "end" then
  52.             menuScreen()
  53.         else
  54.             refuel()
  55.         end
  56.     end
  57. end
  58.                    
  59. function pathMath()
  60.     pathA = math.ceil(pathBlocks)
  61. end
  62.  
  63. function pathMath2()
  64.     pathBlockCheckA2 = pathA - pathBlockCheckA
  65.     pathBlockCheckB2 = pathA - pathBlockCheckB
  66.     pathBlockCheckC2 = pathA - pathBlockCheckC
  67. end        
  68.    
  69. function checkPathBlocks()
  70.     pathBlockCheckA = 0
  71.     pathBlockCheckB = 0
  72.     pathBlockCheckC = 0
  73.     for i = 1,5 do
  74.         pathBlockCheckA = pathBlockCheckA + (turtle.getItemCount(i))
  75.     end
  76.     for i = 6,10 do
  77.         pathBlockCheckB = pathBlockCheckB + (turtle.getItemCount(i))
  78.     end
  79.     for i = 11,15 do
  80.         pathBlockCheckC = pathBlockCheckC + (turtle.getItemCount(i))
  81.     end
  82. end
  83.  
  84. function pathBuilderFinalCheck()
  85.     print("Press any key once this has been completed to begin the program...")
  86.     io.read()
  87.     checkPathBlocks()
  88.     if (pathBlockCheckA >= pathA) and (pathBlockCheckB >= pathA) and (pathBlockCheckC >= pathA) then
  89.         pathBuilderCorrect()
  90.     else
  91.         pathBuilderWrong()
  92.     end
  93. end
  94.  
  95. function pathBuilderCorrect()
  96.     clear()
  97.     print("You've placed the necessary amount of blocks.")
  98.     refuel()
  99.     print("Beginning Program")
  100.     operationPath()
  101. end
  102.  
  103. function pathBuilderWrong()
  104.     clear()
  105.     print("You haven't entered the necessary amount of blocks...")
  106.     print("")
  107.     print("You have placed the following:")
  108.     print("Block 1 = "..pathBlockCheckA.." Block 2 = "..pathBlockCheckB.." Block 3 = "..pathBlockCheckC)
  109.     pathMath2()
  110.     print("")
  111.     print("You still need to place the following:")
  112.     print("Block 1 = "..pathBlockCheckA2.." Block 2 = "..pathBlockCheckB2.." Block 3 = "..pathBlockCheckC2)
  113.     print("")
  114.     pathBuilderFinalCheck()
  115. end
  116.  
  117. function operationPath()
  118.    
  119. end
  120.  
  121. --Programs!
  122.  
  123. function menuScreen()
  124.     clear()
  125.     print("Welcome to the EnderEnder Builder!")
  126.     print("")
  127.     print("Please select one of the following by typing either:")
  128.     print("")
  129.     print("'A' for the Path Builder program.")
  130.     print("'B' for the Base Builder program.")
  131.     print("'C' for the Frame Builder program.")
  132.    
  133.     term.write("Enter A, B or C: ")
  134.     choiceCheck = io.read()
  135.    
  136.     if choiceCheck == "A" then
  137.         pathBuilder()
  138.     elseif choiceCheck == "B" then
  139.         baseBuilder()
  140.     elseif choiceCheck == "C" then
  141.         frameBuilder()
  142.     else
  143.         invalidChoice()
  144.     end
  145. end
  146.  
  147. function pathBuilder()
  148.     refuel()
  149.     clear()
  150.     print("You chose the Path Builder.")
  151.     print("")
  152.     print("This program creates a 3 block wide path a specified number of blocks out.")
  153.     print("You can have a different block for one of each 'strip' along the path")
  154.     print("These blocks should go in the slots specified later. Press any key to continue... ")
  155.     io.read() clear() print("You chose the Path Builder.")
  156.     print("")
  157.     print("Please enter then number of blocks out you'd like to build (Up to 300): ")
  158.     pathBlocks = io.read()
  159.     tonumber(pathBlocks)
  160.     pathMath()
  161.     clear() print("You chose the Path Builder.")
  162.     print("")
  163.     print("Please place "..pathA.." of your selected blocks in slots 1-5 for strip A, 6-10 for strip B and 11-15 for strip C.")
  164.     print("Also, place any fuel in slot 16")
  165.     print("")
  166.     pathBuilderFinalCheck()
  167. end
  168.  
  169. function baseBuilder()
  170.     refuel()
  171.     clear()
  172.     print("You chose the Base Builder.")
  173. end
  174.  
  175. function frameBuilder()
  176.     refuel()
  177.     clear()
  178.     print("You chose the Frame Builder.")
  179. end    
  180.  
  181.  
  182. --Main Loop:
  183.  
  184. menuScreen()
  185.  
  186. print("This should type when done correctly")
  187. io.read() os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement