Advertisement
Guest User

startup

a guest
Jul 9th, 2016
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.01 KB | None | 0 0
  1. reactor = peripheral.wrap("left")
  2. monitor = peripheral.wrap("right")
  3. monitor.setTextScale(1.5)
  4. function drawLine(x,y,length,color)
  5.   oldBgColor = monitor.getBackgroundColor()
  6.   for i = x, (length + x) do
  7.     monitor.setCursorPos(i,y)
  8.     monitor.setBackgroundColor(color)
  9.     monitor.write(" ")
  10.   end
  11.   monitor.setBackgroundColor(oldBgColor)
  12. end
  13. local function roundToNthDecimal(num, n)
  14.  local mult = 10^(n or 0)
  15.  return math.floor(num * mult + 0.5) / mult
  16. end
  17. local function controlRodInsertion()
  18.     percentageEng = e / 100000
  19.     controlRodIns = (roundToNthDecimal(percentageEng, 0) - 1)
  20.     reactor.setAllControlRodLevels(controlRodIns)
  21. end
  22. local function main()
  23.   reactorOn = reactor.getActive()
  24.   os.sleep(0)
  25.     e = tonumber(reactor.getEnergyStored())
  26.     if  e > 9999999
  27.       then reactor.setActive(false)
  28.         return
  29.       elseif e < 1000000
  30.         then reactor.setActive(true)
  31.           return
  32.       end
  33.   end
  34. function monitorDisplay()
  35. monitor.setCursorPos(22,3)
  36. if e > 7500000
  37.   then monitor.setTextColor(colors.green)
  38.   elseif e < 7500000
  39.     then monitor.setTextColor(colors.yellow)
  40.   elseif e < 2500000
  41.     then monitor.setTextColor(colors.red)
  42.   end
  43. monitor.write(tostring(e))
  44. monitor.setCursorPos(24,1)
  45. monitor.setTextColor(colors.white)
  46. monitor.write(tostring(controlRodIns))
  47. monitor.setCursorPos(23,2)
  48. if reactorOn == true
  49.   then
  50.     monitor.setTextColor(colors.green)
  51.     monitor.write("ON ")
  52.    elseif reactorOn == false
  53.      then
  54.         monitor.setTextColor(colors.red)
  55.         monitor.write("OFF")
  56.    end
  57. monitor.setCursorPos(1,4)
  58. coloredPortion = math.floor((e/10000000) * 28)
  59. drawLine(1,4,28,colors.lightGray)
  60. drawLine(1,4,coloredPortion,colors.red)
  61. end
  62. monitor.setTextColor(colors.white)
  63. monitor.setCursorPos(1,3)
  64. monitor.write("Current Power Level: ")
  65. monitor.setCursorPos(1,1)
  66. monitor.write("Control Rod Insertion: ")
  67. monitor.setCursorPos(1,2)
  68. monitor.write("Reactor Power Status: ")
  69. while true do
  70. main()
  71. controlRodInsertion()
  72. monitorDisplay()
  73. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement