Advertisement
BlackStar7713

NetherStarGenerator

Aug 30th, 2014
336
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.81 KB | None | 0 0
  1.  
  2. local modemside = "top"
  3.  
  4. local rednetside = "right"
  5.  
  6. local monitorside = "monitor_3"
  7.  
  8. local textsize = 1
  9.  
  10.  
  11. local storageUnits = {
  12.         {
  13.                  ["id"] = "cofh_thermalexpansion_energycell_26",
  14.                  ["name"] = "Cell1"
  15.         },
  16.           {
  17.                  ["id"] = "cofh_thermalexpansion_energycell_27",
  18.                  ["name"] = "Cell2"
  19.         },
  20.           {
  21.                  ["id"] = "cofh_thermalexpansion_energycell_28",
  22.                  ["name"] = "Cell3"
  23.         },
  24.           {
  25.                  ["id"] = "cofh_thermalexpansion_energycell_29",
  26.                  ["name"] = "Cell4"
  27.         },
  28.           {
  29.                  ["id"] = "cofh_thermalexpansion_energycell_30",
  30.                  ["name"] = "Cell5"
  31.         },
  32.           {
  33.                  ["id"] = "cofh_thermalexpansion_energycell_31",
  34.                  ["name"] = "Cell6"
  35.         },
  36.           {
  37.                  ["id"] = "cofh_thermalexpansion_energycell_32",
  38.                  ["name"] = "Cell7"
  39.         },
  40.           {
  41.                  ["id"] = "cofh_thermalexpansion_energycell_33",
  42.                  ["name"] = "Cell8"
  43.         },
  44.           {
  45.                  ["id"] = "cofh_thermalexpansion_energycell_34",
  46.                  ["name"] = "Cell9"
  47.         },
  48.           {
  49.                  ["id"] = "cofh_thermalexpansion_energycell_35",
  50.                  ["name"] = "Cell10"
  51.         },
  52.           {
  53.                  ["id"] = "cofh_thermalexpansion_energycell_36",
  54.                  ["name"] = "Cell11"
  55.         },
  56.           {
  57.                  ["id"] = "cofh_thermalexpansion_energycell_37",
  58.                  ["name"] = "Cell12"
  59.         }
  60.  
  61. }
  62.  
  63. local mon = peripheral.wrap(monitorside)
  64. local net = peripheral.wrap(modemside)
  65.  
  66.  
  67. mon.clear()  
  68. mon.setTextScale(textsize)
  69. mon.setTextColor(512)
  70. mon.setCursorPos(1,2)
  71. mon.write(" Energy Remaining:")
  72. mon.setCursorPos(1,10)
  73. mon.write("  Engine Status:")
  74. mon.setTextColor(2)
  75. rs.setBundledOutput(rednetside,0)
  76.  
  77. function comma_value(number)
  78.   local formatted = number
  79.   while true do  
  80.     formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
  81.     if (k==0) then
  82.       break
  83.     end
  84.   end
  85.   return formatted
  86. end
  87.  
  88. while true do
  89.  
  90.     capacity = 0
  91.     amount = 0
  92.        
  93.     for i=#storageUnits,1,-1 do
  94.         storageUnit = storageUnits[i]
  95.         capacity = capacity + net.callRemote(storageUnit["id"], "getMaxEnergyStored", "unknown")
  96.         amount = amount + net.callRemote(storageUnit["id"], "getEnergyStored", "unknown")      
  97.     end
  98.  
  99.     percentage = tonumber((amount / capacity) *100)
  100.     percentage = math.floor(percentage)
  101.        
  102.     if percentage<=75 then
  103.         mon.setTextColor(colors.red)
  104.         rs.setBundledOutput(rednetside, colors.red+colors.orange)
  105.         local remainingTime = 120
  106.             while remainingTime > 0 do
  107.                 local startTime = os.clock()
  108.                        
  109.                 mon.setCursorPos(3,11)
  110.                 mon.clearLine()
  111.                        
  112.                 local minute, second = tostring(math.floor(remainingTime/60)), tostring(math.floor(remainingTime%60))
  113.                 mon.write("ONLINE:  " ..minute.." : "..(#second==1 and "0" or "")..second.." remaining")
  114.        
  115.                 capacity = 0
  116.                 amount = 0
  117.        
  118.                 for i=#storageUnits,1,-1 do
  119.                     storageUnit = storageUnits[i]
  120.                     capacity = capacity + net.callRemote(storageUnit["id"], "getMaxEnergyStored", "unknown")
  121.                     amount = amount + net.callRemote(storageUnit["id"], "getEnergyStored", "unknown")      
  122.                 end
  123.        
  124.                 percentage = string.match(tostring(percentage),'[^%.]+')
  125.                 mon.setCursorPos(8,4)
  126.                 mon.clearLine()
  127.                 mon.setTextColor(2)
  128.                 mon.write(percentage .. "%")
  129.                 mon.setCursorPos(1,6)
  130.                 mon.clearLine()
  131.                 mon.setTextColor(512)
  132.                 mon.write("  Energy: ")
  133.                 mon.setTextColor(2)
  134.                 mon.write(comma_value(amount) .. " RF")
  135.                 mon.setCursorPos(1,7)
  136.                 mon.clearLine()
  137.                 mon.setTextColor(512)
  138.                 mon.write("Capacity: ")
  139.                 mon.setTextColor(2)
  140.                 mon.write(comma_value(capacity) .." RF")
  141.        
  142.                 capacity = 0
  143.                 amount = 0
  144.        
  145.                 for i=#storageUnits,1,-1 do
  146.                     storageUnit = storageUnits[i]
  147.                     capacity = capacity + net.callRemote(storageUnit["id"], "getMaxEnergyStored", "unknown")
  148.                     amount = amount + net.callRemote(storageUnit["id"], "getEnergyStored", "unknown")      
  149.                 end
  150.    
  151.                 percentage = tonumber((amount / capacity) *100)
  152.                 percentage = math.floor(percentage)
  153.        
  154.                 percentage = string.match(tostring(percentage),'[^%.]+')
  155.                 mon.setCursorPos(8,4)
  156.                 mon.clearLine()
  157.                 mon.setTextColor(2)
  158.                 mon.write(percentage .. "%")
  159.                 mon.setCursorPos(1,6)
  160.                 mon.clearLine()
  161.                 mon.setTextColor(512)
  162.                 mon.write("  Energy: ")
  163.                 mon.setTextColor(2)
  164.                 mon.write(comma_value(amount) .. " RF")
  165.                 mon.setCursorPos(1,7)
  166.                 mon.clearLine()
  167.                 mon.setTextColor(512)
  168.                 mon.write("Capacity: ")
  169.                 mon.setTextColor(2)
  170.                 mon.write(comma_value(capacity) .." RF")
  171.                
  172.             if(remainingTime==120) then rs.setBundledOutput(rednetside, colors.red) end
  173.             remainingTime = remainingTime - os.clock() + startTime
  174.             end
  175.         rs.setBundledOutput(rednetside,0)
  176.         mon.setTextColor(colors.lime)
  177.         mon.setCursorPos(5,11)
  178.         mon.clearLine()
  179.         mon.write("OFFLINE")
  180.     end
  181.        
  182.     percentage = string.match(tostring(percentage),'[^%.]+')
  183.     mon.setCursorPos(8,4)
  184.     mon.clearLine()
  185.     mon.setTextColor(2)
  186.     mon.write(percentage .. "%")
  187.     mon.setCursorPos(1,6)
  188.     mon.clearLine()
  189.     mon.setTextColor(512)
  190.     mon.write("  Energy: ")
  191.     mon.setTextColor(2)
  192.     mon.write(comma_value(amount) .." RF")
  193.     mon.setCursorPos(1,7)
  194.     mon.clearLine()
  195.     mon.setTextColor(512)
  196.     mon.write("Capacity: ")
  197.     mon.setTextColor(2)
  198.     mon.write(comma_value(capacity) .." RF")
  199.     mon.setCursorPos(5,11)
  200.     mon.setTextColor(colors.lime)
  201.     mon.clearLine()
  202.     mon.write("OFFLINE")
  203. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement