Advertisement
Guest User

OROS

a guest
Dec 28th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.45 KB | None | 0 0
  1. local mon = peripheral.wrap("monitor_0")
  2. local rad = peripheral.wrap("back")
  3.  
  4. while true do
  5.  
  6.   act = rad.getActive()
  7.   nrg = rad.getEnergyStored()
  8.   fTmp = rad.getFuelTemperature()
  9.   cTmp = rad.getCasingTemperature()
  10.   ful = rad.getFuelAmount()
  11.   fMax = rad.getFuelAmountMax()
  12.   eTic = rad.getEnergyProducedLastTick()
  13.   frl = rad.getFuelReactivity()
  14.   fTic = rad.getFuelConsumedLastTick()
  15.    
  16.   if nrg <= 5000000 then
  17.     rad.setActive(true)
  18.   end
  19.  
  20.   if nrg >= 7500000 then
  21.     rad.setActive(false)
  22.   end
  23.  
  24.   mon.setTextScale(1.97)
  25.   mon.clear()
  26.  
  27.   mon.setCursorPos(1,1)
  28.   mon.setTextColor(1)
  29.   mon.write("Active: ")
  30.  
  31.   if act == true then
  32.     mon.setTextColor(15000)
  33.   else
  34.     mon.setTextColor(17000)
  35.   end
  36.  
  37.   mon.write(act)
  38.  
  39.   mon.setCursorPos(1,2)
  40.   mon.setTextColor(1)
  41.   mon.write("RF Rate: ")
  42.  
  43.   local e = math.floor(eTic/1000)
  44.   local ee = e*10
  45.  
  46.   mon.setTextColor(17000)
  47.   mon.write(e)
  48.   mon.write("K/t")
  49.  -- mon.write("K/t, ")
  50.  -- mon.write(ee)
  51.  -- mon.write("K/s")
  52.  
  53.   local n = (math.floor(nrg/1000))
  54.  
  55.   mon.setCursorPos(1,3)
  56.   mon.setTextColor(1)
  57.   mon.write("Stored RF: ")
  58.   mon.setTextColor(15000)
  59.   mon.write(n)
  60.   mon.write("K")
  61.  
  62.   local ft = math.floor(fTmp)
  63.   local ct = math.floor(cTmp)
  64.  
  65.   mon.setCursorPos(1,4)
  66.   mon.setTextColor(1)
  67.   mon.write("Temp Core/Case: ")
  68.   if ft < 800 then
  69.     mon.setTextColor(15000)
  70.   elseif ft < 1700 then
  71.     mon.setTextColor(18)
  72.   else
  73.     mon.setTextColor(17000)
  74.   end
  75.  
  76.   mon.setCursorPos(3,5)
  77.   mon.write(ft)
  78.   mon.setTextColor(1)
  79.   mon.write("C")
  80.   mon.write("/")
  81.  
  82.   if ct < 800 then
  83.     mon.setTextColor(15000)
  84.   elseif ct < 1700 then
  85.     mon.setTextColor(18)
  86.   else
  87.     mon.setTextColor(17000)
  88.   end
  89.  
  90.   mon.write(ct)
  91.   mon.setTextColor(1)
  92.   mon.write("C")
  93.  
  94.   local f = ful/fMax
  95.   f = 100*f
  96.   f = math.floor(f)
  97.  
  98.   mon.setTextColor(1)
  99.   mon.setCursorPos(1,7)
  100.   mon.write("Fuel: ")
  101.  
  102.   if f < 40 then
  103.     mon.setTextColor(17000)
  104.   elseif f < 85 then
  105.     mon.setTextColor(18)
  106.   else
  107.     mon.setTextColor(15000)
  108.   end
  109.  
  110.   mon.write(f)
  111.   mon.write("%")
  112.  
  113.   adj = 0  
  114.   oldnrg = 0
  115.   thisPercent = 0
  116.   oldPercent = 0
  117.  
  118.   thisPercent = math.floor((nrg - oldnrg) / nrg * 100)
  119.   adj = thisPercent - oldPercent
  120.   oldPercent, oldnrg = thisPercent, nrg
  121.  
  122.   local tot = 0
  123.   for i = 1, 18 do
  124.     tot = tot + rad.getControlRodLevel(i)
  125.   end
  126.  
  127.   fin = tot + adj
  128.   rad.setAllControlRodLevels(fin)
  129.  
  130.   sleep(0.5)
  131. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement