Advertisement
Guest User

startup3

a guest
Jul 10th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.78 KB | None | 0 0
  1. rednet.open("bottom")
  2. monitor = peripheral.wrap("left")
  3. idsu = peripheral.wrap("right")
  4. percentin = 0
  5. bundleout = 0
  6. theme = 1
  7. themes = {{}, {}, {}}
  8. version = "1.2"
  9. states = fs.open("buttonstates","r")
  10. buttons = textutils.unserialize(states.readAll())
  11. states.close()
  12. fieldurl = "http://www.escratch.org/dominic/field.txt"
  13. --os.startTimer(10)
  14.  
  15. --Theme setup
  16. --Theme: Standard
  17. themes[1].normaltext = colors.white
  18. themes[1].normaltextsoft = colors.lightGray
  19. themes[1].normalbg = colors.black
  20. themes[1].menutext = colors.white
  21. themes[1].menubg = colors.gray
  22. themes[1].buttonbg = colors.gray
  23. themes[1].errortext = colors.red
  24. themes[1].warningtext = colors.yellow
  25. themes[1].goodtext = colors.lime
  26. --Theme: Blue
  27. themes[2].normaltext = colors.white
  28. themes[2].normaltextsoft = colors.lightGray
  29. themes[2].normalbg = colors.blue
  30. themes[2].menutext = colors.white
  31. themes[2].menubg = colors.gray
  32. themes[2].buttonbg = colors.gray
  33. themes[2].errortext = colors.red
  34. themes[2].warningtext = colors.yellow
  35. themes[2].goodtext = colors.lime
  36. --Theme: Modern
  37. themes[3].normaltext = colors.black
  38. themes[3].normaltextsoft = colors.gray
  39. themes[3].normalbg = colors.white
  40. themes[3].menutext = colors.black
  41. themes[3].menubg = colors.lightGray
  42. themes[3].buttonbg = colors.gray
  43. themes[3].errortext = colors.red
  44. themes[3].warningtext = colors.yellow
  45. themes[3].goodtext = colors.lime
  46.  
  47. function pullFieldStatus()
  48.   http.request(fieldurl)
  49.   local event, _, fieldstates = os.pullEvent("http_success")
  50.   print("updated states")
  51.   if fieldstates.readLine() == "field on" then
  52.     buttons["field"].active = true
  53.     print("field on")
  54.   else
  55.     buttons["field"].active = false
  56.     print("field off")
  57.   end
  58.   if fieldstates.readLine() == "kill on" then
  59.     buttons["defence"].active = true
  60.     print("kill on")
  61.   else
  62.     buttons["defence"].active = false
  63.     print("kill off")
  64.   end
  65.   print("done")
  66. end
  67.  
  68. function getPowerIDSU()
  69.   local _,_,_,data = idsu.get(1)
  70.   if data["energyL"] ~= nil and data["maxStorageL"] ~= nil then
  71.     percentin = math.floor(100 * (data["energyL"]/data["maxStorageL"]))
  72.   else
  73.     percentin = 0
  74.   end
  75. end
  76.  
  77. function writeTempColorMonitor( string, color )
  78.   monitor.setTextColor(color)
  79.   monitor.write(string)
  80.   monitor.setTextColor(themes[theme].normaltext)
  81. end
  82.  
  83. function drawScreen()
  84.   getPowerIDSU()
  85.   monitor.setBackgroundColor(themes[theme].normalbg)
  86.   monitor.setTextColor(themes[theme].normaltext)
  87.   monitor.clear()
  88.   drawTopMenu()
  89.   pullFieldStatus()
  90.   drawPowerMeter(percentin)
  91.   for k,v in pairs(buttons) do
  92.     drawButton(k)
  93.   end
  94.   buttonActions()
  95.   print("screen drawn!")
  96. end
  97.  
  98. function drawPowerMeter( percent )
  99.   monitor.setCursorPos(1,2)
  100.   writeTempColorMonitor("Power: (", themes[theme].normaltextsoft)
  101.   monitor.setTextColor(colors.lime)
  102.   bar=""
  103.   if percent == "timeout" then
  104.     for i=1,25 do
  105.       bar = bar .. " "
  106.     end
  107.   else
  108.     for i=1, math.floor( percent / 4 ) do
  109.       bar = bar .. "="
  110.     end
  111.     for i=1, 25 - math.floor( percent / 4 ) do
  112.       bar = bar .. " "
  113.     end
  114.   end
  115.   monitor.setTextColor(themes[theme].goodtext)
  116.   monitor.write(bar)
  117.   writeTempColorMonitor(") ",themes[theme].normaltextsoft)
  118.   if percent == "timeout" then
  119.     writeTempColorMonitor("0% ",themes[theme].normaltext)
  120.     writeTempColorMonitor("Error!", themes[theme].errortext)
  121.   else
  122.     writeTempColorMonitor(percent.."% ", themes[theme].normaltext)
  123.   end
  124. end
  125.  
  126. function drawButton( key )
  127.   if buttons[key].active then
  128.     monitor.setTextColor(themes[theme].goodtext)
  129.   else
  130.     monitor.setTextColor(themes[theme].errortext)
  131.   end
  132.   monitor.setCursorPos(buttons[key].x,buttons[key].y)
  133.   monitor.setBackgroundColor(themes[theme].buttonbg)
  134.   monitor.write(buttons[key].name)
  135.   monitor.setTextColor(themes[theme].normaltext)
  136. end
  137.  
  138. function buttonActions()
  139.   bundleout = 0
  140.   resetorange = 0
  141.   if not buttons["field"].active then
  142.     bundleout = bundleout + colors.white
  143.   end
  144.   if not buttons["defence"].active then
  145.     bundleout = bundleout + colors.orange
  146.   end
  147.   states = fs.open("buttonstates","w")
  148.   states.write(textutils.serialize(buttons))
  149.   states.close()
  150.   rs.setBundledOutput("back",bundleout)
  151.   drawScreen()
  152. end
  153.  
  154. function drawTopMenu()
  155.   monitor.setCursorPos(1,1)
  156.   monitor.setBackgroundColor(themes[theme].menubg)
  157.   monitor.setTextColor(themes[theme].menutext)
  158.   monitor.write("ApeOS "..version)
  159.   --Next line is to set whole top with menu coloring
  160.   for i = 1,100 do monitor.write(" ") end
  161.   monitor.setBackgroundColor(themes[theme].normalbg)
  162.   monitor.setTextColor(themes[theme].normaltext)
  163. end
  164.  
  165. function pullEvent()
  166.   event,a,b,c,d = os.pullEvent()
  167. end
  168.  
  169. function wait()
  170.   sleep(10)
  171.   event = "timer"
  172.   a,b,c,d = nil
  173. end
  174.  
  175. --Runtime
  176. buttons["field"].active = buttons["field"].active
  177. buttonActions()
  178. drawScreen()
  179. while(1) do
  180.   event,a,b,c,d = os.pullEvent()
  181.   --For debugging:
  182.   print("Refreshed"," ",event," ",a," ",b," ",c," ",d)
  183.   --if event == "timer" then
  184.   --   monitor.clear()
  185.   --  drawScreen()
  186.   --end
  187.   if event == "rednet_message" and a == 217 and b ~= "checkCells" then
  188.     percentin = b
  189.     monitor.clear()
  190.     drawScreen()
  191.   end
  192.   if event == "monitor_touch" and a == "left" then
  193.     --print("X: "..b.." Y: "..c)
  194.     x = b
  195.     y = c
  196.     for k,v in pairs(buttons) do
  197.     --print("buttonx="..buttons[k].x)
  198.     --print("buttony="..buttons[k].y)
  199.     --print("Search: "..buttons[k].name)
  200.     --print("Y match: "..buttons[k].y == y)
  201.     --print("X match"..buttons[k].x <= x and string.len(buttons[k].name)+buttons[k].x >= x)
  202.       if (buttons[k].y == y) and (buttons[k].x <= x and buttons[k].x + string.len(buttons[k].name) - 1 >= x) then
  203.       --print("Match: "..buttons[k].name)
  204.         buttons[k].active = not buttons[k].active
  205.       end
  206.     end
  207.     drawScreen()
  208.     buttonActions()
  209.   end
  210. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement