Advertisement
ultranoob

Charge v0.04d -static-

Sep 27th, 2013
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.41 KB | None | 0 0
  1. --Charge Program - p3pt3RQM
  2. --Developed by UltraNoobian
  3. local version = "0.04d"
  4.  
  5. --API_LOAD
  6. --END API_LOAD
  7.  
  8. --VAR_LOAD
  9. local args = {...}
  10. local targetCharge = 0
  11. --END VAR_LOAD
  12.  
  13. --FUNC_DEFINE
  14. function Intro()
  15.     print ("--------")
  16.     print ("Charging Program - Developed by UltraNoobian")
  17.     print ("Using version: " .. version)
  18.     print ("--------")
  19. end
  20. function termReset()
  21.     term.clear()
  22.     term.setCursorPos(1,1)
  23. end
  24. function getVariables()
  25.     if args and #args == 1 then
  26.         if tonumber(args[1]) ~= nil and tonumber(args[1]) >= 1 then
  27.             targetCharge = tonumber(args[1])
  28.             print("Valid Charge: " .. args[1])
  29.         elseif tonumber(args[1]) ~= nil and tonumber(args[1]) < 1 then
  30.             print("That is not a positive charge. Try again.")
  31.             error()
  32.         elseif tonumber(args[1]) == nil then
  33.             print("Not a number, Please enter a valid number next time you run this program~!")
  34.             error()
  35.         end
  36.     elseif args and #args > 1 then
  37.         print("Invalid number of arguements, We only need the charge level!")
  38.         error()
  39.     else
  40.         print("")
  41.         print("What Charge level would you like to achieve?")
  42.         testCharge = read()
  43.  
  44.         if tonumber(testCharge) ~= nil and tonumber(testCharge) >= 1 then
  45.             targetCharge = tonumber(testCharge)
  46.             print("Valid Charge: " .. targetCharge)
  47.         elseif tonumber(testCharge) ~= nil and tonumber(testCharge) < 1 then
  48.             print("That is not a positive charge. Try again.")
  49.             error()
  50.         elseif tonumber(testCharge) == nil then
  51.             print("Not a number, Please enter a valid number next time you run this program~!")
  52.             error()
  53.         end
  54.     end
  55. end
  56. function printVariables()
  57.     print("")
  58.     print("---NOTICE---")
  59.     print("Your current charge level is " .. turtle.getFuelLevel())
  60.     print("You are charging to " .. targetCharge .. ".")
  61.     print("Press any key to continue...")
  62.     read()
  63. end
  64. function chargeFull()
  65.     if turtle.getFuelLevel() > targetCharge then
  66.         return true
  67.     else
  68.         return false
  69.     end
  70. end
  71. function tryBurn(slotID)
  72.     while turtle.getItemCount(slotID) > 0 do
  73.         if turtle.refuel(1) == false or chargeFull() then
  74.             break
  75.         end
  76.     end
  77. end
  78. function inventoryBurn()
  79.     print("Inventory burn commencing...")
  80.     print("")
  81.  
  82.     for slotID = 1,16 do
  83.         turtle.select(slotID)
  84.         lineUpdate("Currently attempting to burn slot " .. slotID .. ".")
  85.         tryBurn(slotID)
  86.  
  87.         if chargeFull() then
  88.             print("")
  89.             print("Your turtle has reached it's target charge level!!")
  90.             read()
  91.             break
  92.         end
  93.     end
  94. end
  95. function burnCoolDown()
  96.     print("")
  97.     print("Begining idle phase, Now is the time to put in fuel...")
  98.     print("")
  99.     for count = 30,0,-1 do
  100.         lineUpdate("Next Inventory Burn in " .. count .. " seconds")
  101.         sleep(1.0)
  102.     end
  103.     print("")
  104. end
  105. function lineUpdate(string)
  106.     local currX,currY = term.getCursorPos()
  107.     term.clearLine()
  108.     term.setCursorPos(1,currY)
  109.     write(string)
  110. end
  111. --END FUNC_DEFINE
  112.  
  113. --MAIN
  114.  
  115. Intro()
  116. getVariables()
  117. printVariables()
  118.  
  119. while not chargeFull() do
  120.     inventoryBurn()
  121.     if not chargeFull() then
  122.         burnCoolDown()
  123.     end
  124. end
  125.  
  126. print("")
  127. print("This program will now terminate.... Thank you for using UltraNoobian's Programs")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement