Advertisement
Guest User

reactor.display

a guest
Dec 9th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.55 KB | None | 0 0
  1. local Display = {}
  2.  
  3. local storageBanks = {}
  4. local reactorStats = nil
  5. local scrapStatus = "UNKNOWN"
  6. local reactorStatus = "UNKNOWN"
  7. local coolingStatus = "UNKNOWN"
  8. local condensators = 0
  9. local outputStats = nil
  10. local light = peripheral.wrap("bottom")
  11.  
  12. rednet.open("right")
  13.  
  14. function Display.setup()
  15.     Display.monitor = peripheral.wrap("top")
  16.     term.redirect(Display.monitor)
  17.     x, y = term.getSize()
  18.     Display.xSize = x
  19.     Display.ySize = y
  20. end
  21.  
  22. function Display.drawSpinner(rad)
  23.     term.setBackgroundColor(colors.white)
  24.     term.clear()
  25.  
  26.     -- draw loading text
  27.     midX = Display.xSize/2
  28.     midY = Display.ySize/2
  29.     term.setTextColor(colors.black)
  30.     term.setCursorPos(midX-5, midY + 4)
  31.     term.write("Loading...")
  32.    
  33.     -- draw center dot
  34.     term.setCursorPos(midX, midY)
  35.     term.setBackgroundColor(colors.blue)
  36.     term.write(" ")
  37.  
  38.     -- draw spinner dot
  39.     term.setBackgroundColor(colors.red)
  40.     term.setCursorPos(midX + (2.1 * math.cos(rad)), midY + (2.1 * math.sin(rad)))
  41.     term.write(" ")
  42. end
  43.  
  44. do
  45.     local rad = 0
  46.     local inc = (2 * math.pi) / 10
  47.     function Display.spinner()
  48.         Display.drawSpinner(rad)
  49.         rad = (rad + inc) % (2 * math.pi)
  50.     end
  51. end
  52.  
  53. local function calculateEnergyTotal()
  54.     local rtn = { capacity = 0, stored = 0}
  55.     for k,v in pairs(storageBanks) do
  56.         rtn.capacity = rtn.capacity + v.capacity
  57.         rtn.stored = rtn.stored + v.stored
  58.     end
  59.     return rtn
  60. end
  61.  
  62. function Display.drawStorage(history, startX, startY)  
  63.     currentStorage = calculateEnergyTotal()
  64.     term.setBackgroundColor(colors.white)
  65.     term.setTextColor(colors.black)
  66.     term.setCursorPos(startX, startY)  
  67.     io.write("Storage System: ")   
  68.     if currentStorage.capacity then
  69.         term.setTextColor(colors.green)
  70.         print("ONLINE")
  71.         term.setBackgroundColor(colors.white)
  72.         term.setTextColor(colors.black)
  73.         io.write("        Stored: ")
  74.  
  75.         term.setBackgroundColor(colors.green)  
  76.         stored = (currentStorage.stored/currentStorage.capacity) * 10
  77.         for i=1,stored do
  78.             term.write(" ")
  79.         end
  80.         term.setBackgroundColor(colors.red)
  81.         for i=1,10-stored do
  82.             term.write(" ")
  83.         end
  84.         term.setBackgroundColor(colors.white)
  85.         term.setTextColor(colors.black)
  86.         term.write(" ")
  87.         print(math.floor((currentStorage.stored/currentStorage.capacity) * 100, 2).."%")
  88.         term.write("      Capacity: ")
  89.         term.setTextColor(colors.green)
  90.         print(currentStorage.capacity)
  91.     else
  92.         term.setTextColor(colors.red)
  93.         print("OFFLINE")
  94.     end
  95. end
  96.  
  97. function Display.drawReactorStatus(reactorStatus, startX, startY)
  98.     term.setBackgroundColor(colors.white)
  99.     term.setCursorPos(startX, startY)
  100.     term.setTextColor(colors.black)
  101.     local color = colors.red
  102.     term.write("Reactor:        ")
  103.     if reactorStatus == "ONLINE" then
  104.         color = colors.green
  105.     end
  106.     term.setTextColor(color)   
  107.     print(reactorStatus)
  108.     if reactorStats then
  109.         term.setTextColor(colors.black)
  110.         term.write("       Runtime: ")
  111.         term.setTextColor(color)
  112.         print(reactorStats.runTime)
  113.         term.setTextColor(colors.black)
  114.         term.write("  Total Output: ")
  115.         term.setTextColor(color)
  116.         print(reactorStats.totalOutput)
  117.     end
  118. end
  119.  
  120. function Display.drawCobblestone(scrapStatus, startX, startY)
  121.     term.setBackgroundColor(colors.white)
  122.     term.setCursorPos(startX, startY)
  123.     term.setTextColor(colors.black)
  124.     local color = colors.red
  125.     term.write("Scrap System:   ")
  126.     if scrapStatus == "ONLINE" then
  127.         color = colors.green
  128.     end
  129.     term.setTextColor(color)
  130.     print(scrapStatus)
  131.     term.setTextColor(colors.black)
  132.     term.write("  Cobble Gen:   ")     
  133.     term.setTextColor(color)
  134.     print(cobbleStatus)
  135.     term.setTextColor(colors.black)
  136.     term.write("    Mass Fab:   ")
  137.     term.setTextColor(color)
  138.     print(massfabStatus)
  139. end
  140.  
  141. function Display.drawCoolingSystem(coolingStatus, startX, startY)
  142.     term.setBackgroundColor(colors.white)
  143.     term.setCursorPos(startX, startY)
  144.     term.setTextColor(colors.black)
  145.     local color = colors.red
  146.     term.write("Cooling System: ")
  147.     if coolingStatus == "ONLINE" then
  148.         color = colors.green
  149.     end
  150.     term.setTextColor(color)   
  151.     print(coolingStatus)
  152.     term.setTextColor(colors.black)
  153.     term.write("  Condensators: ")
  154.     term.setTextColor(color)
  155.     print(condensators)
  156. end
  157.  
  158. function Display.drawOutput(startX, startY)
  159.     term.setBackgroundColor(colors.white)
  160.     term.setCursorPos(startX, startY)
  161.     term.setTextColor(colors.black)
  162.     if outputStats then
  163.         term.write("Output EU/t:    ")
  164.         print(util.commavalue(outputStats.output))
  165.         term.write("Total Output:   ") 
  166.         print(util.commavalue(outputStats.total))
  167.     end
  168. end
  169.    
  170.  
  171. function Display.refresh()
  172.     term.setBackgroundColor(colors.white)
  173.     term.clear()
  174.     Display.drawStorage(storageHistory, 1, 1)
  175.     Display.drawReactorStatus(reactorStatus, 1, 5)
  176.     Display.drawCobblestone(scrapStatus, 1, 9)
  177.     Display.drawCoolingSystem(coolingStatus, 1, 13)
  178.     Display.drawOutput(1, 16)
  179. end
  180.  
  181. Display.setup()
  182.  
  183.  
  184. local reactorMonitorId = 507
  185. local storageSystemId = nil
  186. local coolingSystemId = nil
  187. local cobblestoneSystemId = nil
  188. local outputSystemId = 502
  189.  
  190. local function handleReactorMonitor(senderId, message)
  191.     if message.command == "announce" then
  192.         reactorMonitorId = senderId
  193.         rednet.send(reactorMonitorId, textutils.serialize{type="reactor", sender="stats", command="ack"})
  194.     elseif message.command == "ack" then
  195.         reactorMonitorId = senderId
  196.     elseif message.command == "stats" then
  197.         -- reactor monitor stats
  198.         reactorStatus = message.stats.status and "ONLINE" or "OFFLINE"
  199.         if message.stats.status then
  200.             light.setColorRGB(0, 255, 0)
  201.         else
  202.             light.setColorRGB(255, 0, 0)
  203.         end
  204.         reactorStats = message.stats
  205.     end
  206. end
  207.  
  208. local function handleStorageSystem(senderId, message)
  209.     if message.command == "announce" then
  210.         storageSystemId = senderId
  211.         rednet.send(storageSystemId, textutils.serialize{type="reactor", sender="stats", command="ack", id = message.id})
  212.     elseif message.command == "ack" then
  213.         storageSystemId = senderId
  214.     elseif message.command == "stats" then
  215.         -- storage stats
  216.         storageBanks[message.id] = message.stats
  217.     end
  218. end
  219.  
  220. local function handleCoolingSystem(senderId, message)
  221.     if message.command == "announce" then
  222.         coolingSystemId = senderId
  223.         rednet.send(coolingSystemId, textutils.serialize{type="reactor", sender="stats", command="ack"})
  224.     elseif message.command == "ack" then
  225.         coolingSystemId = senderId
  226.     elseif message.command == "stats" then
  227.         coolingStatus = message.stats.coolingStatus
  228.         condensators = message.stats.condensatorsReplaced
  229.     end
  230. end
  231.  
  232. local function handleCobblestoneSystem(senderId, message)
  233.     if message.command == "announce" then
  234.         cobblestoneSystemId = senderId
  235.         rednet.send(cobblestoneSystemId, textutils.serialize{type="reactor", sender="stats", command="ack"})
  236.     elseif message.command == "ack" then
  237.         cobblestoneSystemId = senderId
  238.     elseif message.command == "stats" then
  239.         -- cobblestone stats
  240.         scrapStatus = message.stats.systemStatus
  241.         cobbleStatus = message.stats.cobbleStatus
  242.         massfabStatus = message.stats.massfabStatus
  243.     end
  244. end
  245.  
  246. local function handleOutputSystem(senderId, message)
  247.     if message.command == "announce" then
  248.         outputSystemId = senderId
  249.         rednet.send(outputSystemId, textutils.serialize{type="reactor", sender="stats", command="ack"})
  250.     elseif message.command == "ack" then
  251.         outputSystemId = senderId
  252.     elseif message.command == "stats" then
  253.         outputStats = message.stats
  254.     end
  255. end
  256.  
  257. local function doNetwork()
  258.     rednet.broadcast(textutils.serialize{type="reactor", sender="stats", command="announce"})
  259.     while true do
  260.         local event, senderId, data, distance = os.pullEvent("rednet_message")
  261.         local message = textutils.unserialize(data)
  262.         if message and message.type == "reactor" then
  263.             if message.sender == "monitor" then
  264.                 handleReactorMonitor(senderId, message)
  265.             elseif message.sender == "storage" then
  266.                 handleStorageSystem(senderId, message)
  267.             elseif message.sender == "cooling" then
  268.                 handleCoolingSystem(senderId, message)
  269.             elseif message.sender == "cobblestone" then
  270.                 handleCobblestoneSystem(senderId, message)
  271.             elseif message.sender == "output" then
  272.                 handleOutputSystem(senderId, message)
  273.             end
  274.         end
  275.     end
  276. end
  277.  
  278. local function doKeyboard()
  279.     while true do
  280.         local event, key = os.pullEvent("char")
  281.         if string.lower(key) == "q" then
  282.             break
  283.         end
  284.     end
  285. end
  286.  
  287. local function doDisplay()
  288.     light.setColorRGB(255, 0, 0)
  289.     while true do
  290.         if reactorStatus == "UNKNOWN" then
  291.             Display.spinner()
  292.             sleep(.1)
  293.         else
  294.             Display.refresh()
  295.             sleep(1)
  296.         end
  297.     end
  298. end
  299.  
  300. local function startup()
  301.     term.clear()
  302.     term.setCursorPos(1,1)
  303.     parallel.waitForAny(doNetwork, doKeyboard, doDisplay)
  304. end
  305.  
  306.  
  307. local rtn, error = pcall(startup)
  308. if not rtn then
  309.     print("Stats failed: " .. error)
  310. end
  311. term.clear()
  312. term.restore()
  313. print("Exiting.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement