Advertisement
Drtrider

Base_Power_v2

Apr 8th, 2014
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.50 KB | None | 0 0
  1. -- This program is designed to practice printing fancy graphics on the monitor/terminal
  2. -- Program Name: Base_System_v2
  3. local programName = "DrtOS v1.1"
  4. print(programName.." now running...\n")
  5. local mon = peripheral.wrap("right")
  6.  
  7. local c1 = peripheral.wrap("Ultimate Energy Cube_1")
  8. local c2 = peripheral.wrap("Ultimate Energy Cube_2")
  9. local c3 = peripheral.wrap("Ultimate Energy Cube_3")
  10. local c4 = peripheral.wrap("Ultimate Energy Cube_4")
  11. local c5 = peripheral.wrap("Ultimate Energy Cube_5")
  12.  
  13. local r1 = peripheral.wrap("BigReactors-Reactor_1")
  14.  
  15. mon.setTextScale(0.5)
  16. mon.clear()
  17.  
  18. local percent = 0
  19. local percentBarValue = 0
  20. local energyLastScan = 0
  21. local levelTotal = 0
  22. local count = 0
  23.  
  24. local hydroGenStatus = 0
  25. local reactorStatus = 0
  26.  
  27.  
  28. --==========================================================================================--
  29. --==========================================================================================--
  30. --==========================================================================================--
  31. local function clear()
  32.     mon.setBackgroundColor(colors.black)
  33.     mon.setTextColor(colors.white)
  34.     mon.setCursorPos(1,1)
  35. end
  36.  
  37. local function clearLine(x,y) --Clears the specific line of the cursor position, then returns cursor to original position
  38.     local xPos = 0
  39.     local yPos = 0
  40.     mon.getCursorPos(xPos,yPos)
  41.     mon.setCursorPos(x,y)
  42.     mon.clearLine()
  43.     mon.setCursorPos(xPos,yPos)
  44. end
  45.  
  46. local function printMon(str, x, y, color_txt, color_bg) --Prints a message to the monitor, at locations x,y
  47.     mon.setCursorPos(x, y)
  48.     mon.setBackgroundColor(color_bg)
  49.     mon.setTextColor(color_txt)
  50.     mon.write(str)
  51.     mon.setBackgroundColor(colors.black)
  52. end
  53.  
  54. local function printBar(x, y, length, height, color_bar) --Draws a bar on the monitor, at location x,y, with specified values.
  55.     for yPos = y, y+height -1 do
  56.         mon.setBackgroundColor(color_bar)
  57.         mon.setCursorPos(x,yPos)
  58.         mon.write(string.rep(" ", length))
  59.         mon.setBackgroundColor(colors.black)
  60.     end
  61. end
  62.  
  63. local function getBatStats() --Pulls battery levels and max energy levels, then calculates total percentage.
  64.     local c1Level = c1.getStored()
  65.     local c2Level = c2.getStored()
  66.     local c3Level = c3.getStored()
  67.     local c4Level = c4.getStored()
  68.     local c5Level = c5.getStored()
  69.  
  70.     local c1Max = c1.getMaxEnergy()
  71.     local c2Max = c2.getMaxEnergy()
  72.     local c3Max = c3.getMaxEnergy()
  73.     local c4Max = c4.getMaxEnergy()
  74.     local c5Max = c5.getMaxEnergy()
  75.    
  76.     levelTotal = c1Level + c2Level + c3Level + c4Level + c5Level
  77.     local maxTotal = c1Max + c2Max + c3Max + c4Max + c5Max
  78.    
  79.     percent = (levelTotal / maxTotal) * 100
  80.     if percent < 1 then
  81.         percent = 0
  82.     end
  83.     percent = math.ceil(percent)
  84. end
  85.  
  86. local function getMath() --Calculates numbers for percent bar, and controls reactor/hydrogen status
  87.     percentBarValue = percent * 0.26
  88.     if percentBarValue > 25 then
  89.         percentBarValue = 25
  90.     end
  91.     if percentBarValue < 1 then
  92.         percenBar = 1
  93.     end
  94.    
  95.    
  96.     if percent <= 80 then
  97.         hydroGenStatus = 1
  98.     end
  99.     if percent >= 95 then
  100.         hydroGenStatus = 0
  101.     end
  102.    
  103.     if hydroGenStatus == 1 then
  104.         rs.setOutput("left",true)
  105.     else
  106.         rs.setOutput("left",false)
  107.     end
  108.    
  109.    
  110.    
  111.     if percent <= 60 then
  112.         reactorStatus = 1
  113.     end
  114.     if percent >= 99 then
  115.         reactorStatus = 0
  116.     end
  117.    
  118.     if reactorStatus == 1 then
  119.         r1.setActive(true)
  120.     else
  121.         r1.setActive(false)
  122.     end
  123.        
  124.    
  125. end
  126.  
  127. local function energyChangeRate() --Takes average over 5 seconds of current base charge/delpetion rate
  128.     local count2 = 0
  129.     count = count + 1
  130.     if count > 5 then count = 1 end
  131.    
  132.     local chgValue = {ch1, ch2, chg3, chg4, chg5}
  133.     local chgValue2 = {total1, total2, total3, total4, total5}
  134.     local chgAvgTotal = {avg1, avg2, avg3, avg4, avg5}
  135.    
  136.     chgValue[count] = energyLastScan
  137.     chgValue2[count] = levelTotal
  138.     chgAvgTotal[count] = (chgValue2[count]) - (chgValue[count])
  139.    
  140.     while count2 < 5 do --Checks each value for a null, if found sets it to 1. May slightly skew data when first starting up.
  141.         if  count2 == 5 then
  142.             count2 = 0
  143.         end
  144.         count2 = count2 +1
  145.         if chgAvgTotal[count2] == null then
  146.             chgAvgTotal[count2] = 1
  147.         end
  148.     end
  149.    
  150.     local energyAvg = ((chgAvgTotal[1]) + (chgAvgTotal[2]) + (chgAvgTotal[3])+ (chgAvgTotal[4]) + (chgAvgTotal[5])) / 5
  151.     energyAvg = math.floor(((energyAvg * 0.4) * 10^-3) /20)
  152.     clearLine(27,6)
  153.     printMon(energyAvg.." kRF/t", 27,6,colors.white,colors.black)
  154.  
  155. end
  156. --==========================================================================================--
  157. --==========================================================================================--
  158. --==========================================================================================--
  159. clear()
  160. sleep(0.5)
  161.  
  162. printBar(1,1,36,1,colors.gray)
  163. printMon("Drt OS_v1.1",14,1, colors.orange, colors.gray)
  164.  
  165. while true do
  166.     getMath()
  167.     getBatStats()
  168.     energyChangeRate()
  169.  
  170.     printMon("Energy Level",1, 4,colors.white, colors.black)
  171.     clearLine(20,5)
  172.     printMon(percent.."%",27,5, colors.white, colors.black)
  173.     printBar(1,5,25,2,colors.gray)
  174.     printBar(1,5,percentBarValue,2,colors.green)
  175.    
  176.     clearLine(1,9)
  177.     clearLine(1,10)
  178.     printMon("Backup Generator Status: ",1,9,colors.white,colors.black)
  179.     printMon("Nuclear Reactor Status: ",1,10,colors.white,colors.black)
  180.    
  181.     if hydroGenStatus == 1 then
  182.         printMon("ACTIVE",28,9,colors.green,colors.black)
  183.     else
  184.         printMon("STANDBY",27.5,9,colors.red,colors.black)
  185.     end
  186.    
  187.     if reactorStatus == 1 then
  188.         printMon("ACTIVE",28,10,colors.green,colors.black)
  189.     else
  190.         printMon("STANDBY",27.5,10,colors.red,colors.black)
  191.     end
  192.     sleep(1)
  193.     energyLastScan = levelTotal
  194. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement