Advertisement
blackrabt

BigReactors Monitor Server

Feb 27th, 2015
627
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 12.33 KB | None | 0 0
  1.     if peripheral.isPresent("right") == true then
  2.       local wireless = peripheral.wrap("right")
  3.       --wireless.open(4)
  4.       wireless.open(65535)
  5.     end
  6.     --if peripheral.isPresent("BigReactors-Reactor_1") == false then
  7.     --  term.write("No Reactor Present!")
  8.       --shell.exit()
  9.     --end
  10.     --function loadPeripherals()
  11.       local modem = peripheral.wrap("top")
  12.       local monitor = peripheral.wrap("monitor_1")
  13.       local reactor = peripheral.wrap("BigReactors-Reactor_0")
  14.       --local reactor = peripheral.wrap("BigReactors-Reactor_1")
  15.       local turbine = peripheral.wrap("BigReactors-Turbine_0")
  16.       term.clear()
  17.       monitor.setBackgroundColor(32768)
  18.       monitor.clear()
  19.       term.setCursorPos(3,1)
  20.       wirelessSide = "right"
  21.       modemSide = "top"
  22.      
  23.      
  24.       --local wireless = peripheral.wrap(wirelessSide)
  25.       --local modem = peripheral.wrap(modemSide)
  26.       rednet.open(wirelessSide)
  27.       --if unexpected_condition then
  28.       --  error()
  29.       --end
  30.       --print(a[i])
  31.     --end
  32.    
  33.  
  34. function round2(num, places)
  35.         num = tostring(num)
  36.         local inc = false
  37.         local decimal = string.find(num, "%.")
  38.         if num == nil then
  39.         num = 1
  40.     end
  41.    
  42.     if decimal == nil then
  43.         decimal = 1
  44.     end
  45.     if num:len() - decimal <= places then return tonumber(num) end --already rounded, nothing to do.
  46.         local digit = tonumber(num:sub(decimal + places + 1))
  47.         num = num:sub(1, decimal + places)
  48.         if digit <= 4 then return tonumber(num) end --no incrementation needed, return truncated number
  49.         local newNum = ""
  50.         for i=num:len(), 1, -1 do
  51.                 digit = tonumber(num:sub(i))
  52.                 if digit == 9 then
  53.                         if i > 1 then
  54.                                 newNum = "0"..newNum
  55.                         else
  56.                                 newNum = "10"..newNum
  57.                         end
  58.                 elseif digit == nil then
  59.                         newNum = "."..newNum
  60.                 else
  61.                         if i > 1 then
  62.                                 newNum = num:sub(1,i-1)..(digit + 1)..newNum
  63.                         else
  64.                                 newNum = (digit + 1)..newNum
  65.                         end
  66.                         return tonumber(newNum) --No more 9s found, so we are done incrementing. Copy remaining digits, then return number.
  67.                 end
  68.         end
  69.         return tonumber(newNum)
  70. end
  71.  
  72.     function updateData()
  73.       --declare some reactor variables sucka!
  74.       fuelTemp = math.floor(reactor.getFuelTemperature())
  75.       reactorIsConnected = reactor.getConnected()
  76.       reactorIsActive = reactor.getActive()
  77.       controlRodCount = reactor.getNumberOfControlRods()
  78.       reactorCasingTemp = math.floor(reactor.getCasingTemperature()) --use math.floor to keep it a whole integer otherwise it has too many sigfigs.
  79.       reactorFuelAmount = reactor.getFuelAmount()
  80.       reactorWasteAmount = reactor.getWasteAmount()
  81.       reactorCoolantType = reactor.getCoolantType()
  82.       controlRodDesiredLevel = 0
  83.       reactorFuelUsed = reactor.getFuelConsumedLastTick()
  84.       reactorSteamAmount = reactor.getHotFluidAmount()
  85.       reactorSteamMade = reactor.getHotFluidProducedLastTick()
  86.       controlRodLevelOne = reactor.getControlRodLevel(0) --remember that the index is one less than rod count
  87.       controlRodLevelTwo = reactor.getControlRodLevel(1)
  88.       controlRodLevelThree = reactor.getControlRodLevel(2)
  89.       controlRodLevelFour = reactor.getControlRodLevel(3)
  90.       controlRodAverage = ((controlRodLevelOne + controlRodLevelTwo + controlRodLevelThree + controlRodLevelFour)) / (4)
  91.      
  92.       --turbine variables will go here if this turns out to be beneficial
  93.       idealRotorRPM = 1800
  94.       turbineIsConnected = turbine.getConnected()
  95.       turbineIsActive = turbine.getActive()
  96.       turbineRotorSpeed = math.floor(turbine.getRotorSpeed())
  97.       turbineFluidRate = turbine.getFluidFlowRate()
  98.       turbineEngaged = turbine.getInductorEngaged()
  99.       turbineEnergy = math.floor(turbine.getEnergyProducedLastTick())
  100.     end
  101.      
  102.     function tabletRequest()
  103.      
  104.       --local function openRednet()
  105.      
  106.       wirelessSide = "right"
  107.       modemSide = "top"
  108.      
  109.       local wireless = peripheral.wrap(wirelessSide)
  110.       local modem = peripheral.wrap(modemSide)
  111.       rednet.open(wirelessSide)
  112.       --end
  113.      
  114.      
  115.       --modemOn = openRednet()
  116.       if wirelessSide == nil then
  117.       print("No Modem")
  118.       print("Will shutdown in 3 seconds")
  119.       sleep(3)
  120.       --os.shutdown()
  121.       else
  122.       print("Opened modem on ".. wirelessSide)
  123.       end
  124.       os.sleep(0.2)
  125.       --term.clear() --i added this to make error messages more readable
  126.      
  127.      
  128.      
  129.       id, message = rednet.receive()
  130.       term.setCursorPos(1,1)
  131.       print ("Device " .. id .. " sent a " .. message .. " ")
  132.       os.sleep(1)
  133.       term.setCursorPos(1,2)
  134.       print ("Sending reactor info...")
  135.       local reactor
  136.          local reactor = peripheral.wrap("BigReactors-Reactor_0") --if networked replace with reactor name, this seems to interfere with line 46 at times
  137.          if peripheral.wrap("back") then
  138.          term.setCursorPos(1,3)
  139.          print ("Found Reactor")
  140.          end
  141.          active = reactor.getActive(1)
  142.          if active then
  143.          term.setCursorPos(1,5)
  144.          print ("The Reactor is: ")
  145.          term.setTextColor(colors.green)
  146.          print ("ON")
  147.          else term.setTextColor(colors.white)
  148.          print ("The Reactor is: ")
  149.          term.setTextColor(colors.red)
  150.          print ("OFF")
  151.          rednet.send(id, "The Reactor is: OFF")
  152.          sleep(.1)
  153.          rednet.send(id, "The Reactor is: OFF")
  154.          --os.reboot()
  155.          --runProgram()
  156.          --exit() --stops whole program
  157.          --break --only in a loop, at the end
  158.          return --i think this did it
  159.          end
  160.          term.setTextColor(colors.white)
  161.          lvl = reactor.getControlRodLevel(0)
  162.          if lvl then
  163.           print ("Control rod level is " .. lvl .. "% closed")
  164.          end
  165.          turbineEnergy = turbine.getEnergyProducedLastTick()
  166.          tick = turbineEnergy  --reactor.getEnergyProducedLastTick(1)
  167.          if tick then
  168.          print (" " .. tick .. " RF/t ")
  169.          end
  170.       rednet.send(id, "The Reactor is: ON")
  171.       os.sleep(0.2)
  172.       rednet.send(id, "Control rod level is " .. lvl .. "% closed")
  173.       os.sleep(0.2)
  174.       rednet.send(id, " Producing " .. tick .. " RF/t ")
  175.       return
  176.       --os.reboot()
  177.      
  178.       -- The Pocket computer program is at /bkc8M1Bi
  179.       -- Original code by Dukrobber
  180.     -- Updates by blackrabt
  181.     end
  182.      
  183.     function createDisplay()
  184.       --reactor display stuff
  185.       monitor.setBackgroundColor(32768) --black
  186.       monitor.setTextColor(512) --cyan
  187.       monitor.clear()
  188.       monitor.setCursorPos(4,1)
  189.       --set text color based on reactor status?
  190.       monitor.write("Reactor")
  191.       --term.redirect(monitor)
  192.       --paintutils.drawLine(3,3,7,3,1)
  193.       --term.redirect(term.native())
  194.       monitor.setCursorPos(2,2)
  195.       monitor.write("-----------") --___________
  196.       monitor.setCursorPos(3,3)
  197.       if reactorIsConnected == true then
  198.         monitor.setTextColor(8192)
  199.         monitor.write("Connected")
  200.       end
  201.       if reactorIsConnected == false then
  202.         monitor.setTextColor(4)
  203.         monitor.write("Disconnected")
  204.       end
  205.       monitor.setCursorPos(3,4)
  206.       if reactorIsActive == true then
  207.         monitor.setTextColor(32)
  208.         monitor.write("Active")
  209.       end
  210.       if reactorIsActive == false then
  211.         monitor.setTextColor(16)
  212.         monitor.write("Inactive")
  213.       end
  214.       --if peripheral.isPresent("left") == true then
  215.       --  testPDA.print(reactorIsActive)
  216.       --  testPDA.print("test")
  217.       --end
  218.       monitor.setTextColor(512)
  219.       monitor.setCursorPos(3,5)
  220.      
  221.       monitor.setTextColor(16) --yellow
  222.       monitor.write("Casing: "..reactorCasingTemp.."C")
  223.       monitor.setCursorPos(3,6)
  224.       if fuelTemp > 170 and fuelTemp < 230 then
  225.         monitor.setTextColor(32)
  226.       end
  227.       if fuelTemp < 170 and fuelTemp > 100 then
  228.         monitor.setTextColor(16)
  229.       end
  230.       if fuelTemp < 100 then
  231.         monitor.setTextColor(16384)
  232.       end
  233.       if fuelTemp > 230 and fuelTemp < 300 then
  234.         monitor.setTextColor(16)
  235.       end
  236.       if fuelTemp > 3000 then
  237.         monitor.setTextColor(16384)
  238.         monitor.setCursorPos(11,6)
  239.         monitor.write("CAUTION!")
  240.         --while fuelTemp > 300 do --this makes a flashing caution but it halts the whole program
  241.           --monitor.setTextColor(16384)
  242.           --monitor.setCursorPos(3,11)
  243.           --monitor.write("CAUTION!")
  244.           --sleep(0.4)
  245.           --monitor.setTextColor(64)
  246.           --monitor.setCursorPos(3,11)
  247.           --monitor.write("CAUTION!")
  248.           --sleep(0.4)
  249.           --monitor.setTextColor(2)
  250.           --monitor.setCursorPos(3,11)
  251.           --monitor.write("CAUTION!")
  252.         --end
  253.       end
  254.       monitor.write("Core:   "..fuelTemp.."C")
  255.       monitor.setCursorPos(3,7)
  256.       monitor.setTextColor(256)
  257.       monitor.write("HFO:    "..reactorSteamMade.."mB/t")
  258.       monitor.setCursorPos(3,9)
  259.       controlRods = math.floor(controlRodAverage)
  260.       monitor.write("Avg. Control Rod: "..controlRodAverage.."% ")
  261.       monitor.setCursorPos(3,8)
  262.       --monitor.write("FBR:    "..reactorFuelUsed.."mB/t")
  263.       --  f = tostring(reactorFuelUsed)
  264.       --f = reactorFuelUsed
  265.       --fuelFormatted = (string.format("%.4f", reactor.getFuelConsumedLastTick()))
  266.       fuelFormatted = round2(reactorFuelUsed, 2)
  267.      -- monitor.write(fuelFormatted)
  268.        monitor.write("FBR:    "..fuelFormatted.."mB/t")
  269.      
  270.         --turbine display
  271.       monitor.setTextColor(512) --cyan
  272.       monitor.setCursorPos(4,11)
  273.       monitor.write("Turbine")
  274.       monitor.setCursorPos(2,12)
  275.       monitor.write("-----------")
  276.       --term.redirect(monitor)
  277.       --paintutils.drawLine(18,3,25,3,512)
  278.       --term.redirect(term.native())
  279.       monitor.setCursorPos(3,13)
  280.       if turbineIsConnected == true then
  281.         monitor.setTextColor(8192)
  282.         monitor.write("Connected") --should say Connected
  283.       end
  284.       if turbineIsConnected == false then
  285.         monitor.setTextColor(16384)
  286.         monitor.write("Disconnected")
  287.       end
  288.       --monitor.write(turbineIsConnected)
  289.       monitor.setCursorPos(3,14)
  290.       if turbineIsActive == true then
  291.         monitor.setTextColor(8192)
  292.         monitor.write("Active")
  293.       end
  294.       if turbineIsActive == false then
  295.         monitor.setTextColor(16)
  296.         monitor.write("Inactive")
  297.       end
  298.       monitor.setCursorPos(3,15)
  299.       if turbineEngaged == true then
  300.         monitor.setTextColor(32)
  301.         monitor.write("Coils Engaged")
  302.       end
  303.       if turbineEngaged == false then
  304.         monitor.setTextColor(16)
  305.         monitor.write("Not Engaged")
  306.       end
  307.       --monitor.setCursorPos(15,15)
  308.       --monitor.write("15,15")
  309.       monitor.setCursorPos(3,16)
  310.       if turbineEnergy > 1000 and turbineEnergy < 10000 then
  311.         monitor.setTextColor(16)
  312.       end
  313.       if turbineEnergy > 10000 then
  314.         monitor.setTextColor(32)
  315.       end
  316.       if turbineEnergy < 1000 then
  317.         monitor.setTextColor(16384)
  318.       end
  319.       monitor.write("Generating:  "..turbineEnergy.."RF")
  320.       monitor.setCursorPos(3,17)
  321.       if turbineRotorSpeed > 0 then
  322.        
  323.         monitor.setTextColor(32)
  324.         monitor.write("Rotor speed: "..turbineRotorSpeed.."RPM")
  325.       end
  326.       if turbineRotorSpeed <1 then
  327.         monitor.setTextColor(16384)
  328.         monitor.write("Rotor speed: "..turbineRotorSpeed.."RPM")
  329.       end
  330.     end
  331.      
  332.     function runProgram()
  333.       --loadPeripherals() no need to make this run every time
  334.       updateData()
  335.       createDisplay()
  336.       --tabletRequest()
  337.      
  338.       sleep(1.5)
  339.     end
  340.     --this is supposed to run the peripheral loading in a protected call, and throw an error if there is a problem. It doesn't want to do that yet.
  341.     --if pcall(loadPeripherals) then
  342.     --  while true do
  343.     --    runProgram()
  344.     --  end
  345.       --runProgram()
  346.     --else
  347.       --there was a problem
  348.     --end
  349.      
  350.     while true do
  351.       runProgram()
  352.       if rednet.receive(2) then --not nil then
  353.         tabletRequest()
  354.       end
  355.     end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement