Advertisement
Guest User

Untitled

a guest
Jan 15th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. local component = require("component")
  2. local math = require("math")
  3. local event = require("event")
  4. local Screen2 = component.proxy("e3d7a10d-6d89-45bd-9e00-159ad458c634")
  5. local GPU2 = component.proxy("84ba0343-7135-44a4-8647-9559a2175648")
  6. local w, h = GPU2.getResolution()
  7. local reactor = component.br_reactor
  8. local energyMax = 10000000
  9. local energyStore = reactor.getEnergyStored()
  10. local percentFull = energyMax/energyStore
  11.  
  12. GPU2.bind("e3d7a10d-6d89-45bd-9e00-159ad458c634")
  13. GPU2.setResolution(144,16)
  14.  
  15. if Screen2.isOn() == false
  16. then
  17. screen2.turnOn()
  18. end
  19.  
  20. print(percentFull)
  21. print((w-14)/percentFull)
  22.  
  23. function display()
  24. if reactor.getActive() == true
  25. then
  26. print("on",energyStore)
  27. GPU2.setBackground(0x000000)
  28. GPU2.fill(1, 1, w, h, " ")
  29. GPU2.setForeground(0x000000)
  30. GPU2.setBackground(0xFFFFFF)
  31. GPU2.fill(7, 6, w-12, h-10, " ")
  32. GPU2.setBackground(0x00FF00)
  33. GPU2.fill(8, 7, math.floor((w-14)/percentFull), h-12, " ")
  34. os.sleep(1)
  35. else
  36. print("off",energyStore)
  37. os.sleep(1)
  38. GPU2.setBackground(0xFF0000)
  39. GPU2.fill(1,1,w,h," ")
  40. end
  41. end
  42.  
  43. while true do
  44. local eventType
  45. eventType = event.pull()
  46. print(eventType)
  47. if eventType == "touch"
  48. then
  49. display()
  50. end
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement