Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.53 KB | None | 0 0
  1. local component = require("component")
  2. local event = require("event")
  3. local fs = require("filesystem")
  4. local keyboard = require("keyboard")
  5. local shell = require("shell")
  6. local term = require("term")
  7. local text = require("text")
  8. local unicode = require("unicode")
  9. local sides = require("sides")
  10. local colors=require("colors")
  11.  
  12. local gpu = component.gpu
  13.  
  14. local menuList = {}
  15. local menuLen = 1
  16. local compList = {}
  17. local compLen = 1
  18. local col = 25
  19. local currRow = 1
  20.  
  21. local w, h = gpu.getResolution()
  22. local offset = 0
  23. local running = true
  24.  
  25. local fileCount = -1
  26.  
  27.  
  28. local function isAdvanced()
  29. return (gpu.getDepth() > 1)
  30. end
  31.  
  32.  
  33. for address, name in component.list() do
  34. menuList[menuLen] = name
  35. for k, v in pairs(component.proxy(address)) do
  36. compList[compLen] = name.."."..k
  37. compLen = compLen + 1
  38. end
  39. menuLen = menuLen + 1
  40. end
  41. menuList[menuLen] = "Exit"
  42.  
  43. for a = 1, menuLen do
  44. end
  45.  
  46.  
  47. local function hiLiteXY(col, row, menuSel)
  48. term.setCursorBlink(false)
  49. gpu.setForeground(theme.promptHighlight)
  50. gpu.setBackground(theme.prompt)
  51. component.gpu.set(col, row, menuSel)
  52. end
  53.  
  54. local function writeXY(col, row, menuSel)
  55. term.setCursorBlink(false)
  56. gpu.setForeground(theme.textColor)
  57. gpu.setBackground(theme.background)
  58. component.gpu.set(col, row, menuSel)
  59. end
  60.  
  61. local function printCompXY(menuSel)
  62. local tmpList = {}
  63. local tLen = 1
  64. local w, h = gpu.getResolution()
  65. local sPos = 0
  66.  
  67. for len = 1, compLen - 1 do
  68. sPos = string.find(compList[len], ".", 1, true)
  69. if (string.sub(compList[len], 1, sPos - 1) == menuSel) then
  70. tmpList[tLen] = compList[len]
  71. tLen = tLen + 1
  72. end
  73. end
  74.  
  75. local oSet = (h - #tmpList) / 2
  76. gpu.setForeground(theme.textColor)
  77. gpu.setBackground(theme.background)
  78. term.clear()
  79. term.setCursor(25,1)
  80. print("List for "..menuSel)
  81. for b = 1, tLen - 1 do
  82. if tmpList[b] == "filesystem.lastModified" then
  83. fileCount = fileCount + 1
  84. end
  85. if fileCount < 1 then
  86. writeXY(col, b + 3, tmpList[b])
  87. end
  88. end
  89. term.setCursor((w - 24)/2, h - 1)
  90. print("Press ENTER to continue")
  91. local key = term.read()
  92. fileCount = -1
  93. gpu.setForeground(theme.textColor)
  94. gpu.setBackground(theme.background)
  95. term.clear()
  96. end
  97.  
  98. local defaultTheme = { -- Water Theme
  99. background = 0x0000FF,
  100. backgroundHighlight = 0xFFFFFF,
  101. prompt = 0x000000,
  102. promptHighlight = 0xFFFFFF,
  103.  
  104. err = 0xFF0000,
  105. errHighlight = 0xFFFFFF,
  106.  
  107. editorBackground = 0xBEBEBE,
  108. editorLineHightlight = 0xADD8E6,
  109. editorLineNumbers = 0xBEBEBE,
  110. editorLineNumbersHighlight = 0xD3D3D3,
  111. editorError = 0xFFC0CB,
  112. editorErrorHighlight = 0xFF0000,
  113.  
  114. textColor = 0xFFFFFF,
  115. conditional = 0xFFFF00,
  116. constant = 0xFFA500,
  117. ["function"] = 0xFF00FF,
  118. string = 0xFF0000,
  119. comment = 0x32CD32
  120. }
  121.  
  122. local function up()
  123. writeXY(col, currRow + offset, menuList[currRow])
  124. if currRow > 1 then
  125. currRow = currRow - 1
  126. else
  127. currRow = #menuList
  128. end
  129. hiLiteXY(col, currRow + offset, menuList[currRow])
  130. end
  131.  
  132. local function down()
  133. writeXY(col, currRow + offset, menuList[currRow])
  134. if currRow < #menuList then
  135. currRow = currRow + 1
  136. else
  137. currRow = 1
  138. end
  139. hiLiteXY(col, currRow + offset, menuList[currRow])
  140. end
  141.  
  142. offset = (h - #menuList) / 2
  143.  
  144. local function printBuf()
  145. for a = 1, #menuList do
  146. writeXY(col, offset + a, menuList[a])
  147. end
  148. end
  149.  
  150. local function enter()
  151. term.setCursorBlink(false)
  152. local w, h = gpu.getResolution()
  153. if currRow == #menuList then
  154. running = false
  155. else
  156. term.clear()
  157. printCompXY(menuList[currRow])
  158. printBuf()
  159. end
  160. end
  161.  
  162. local controlKeyCombos = {[keyboard.keys.s]=true,[keyboard.keys.w]=true,
  163. [keyboard.keys.c]=true,[keyboard.keys.x]=true}
  164.  
  165. local function onKeyDown(char, code)
  166. if code == keyboard.keys.up then
  167. up()
  168. elseif code == keyboard.keys.down then
  169. down()
  170. elseif code == keyboard.keys.enter then
  171. enter()
  172. end
  173. end
  174.  
  175. if isAdvanced() then
  176. theme = defaultTheme
  177. gpu.setForeground(theme.textColor)
  178. gpu.setBackground(theme.background)
  179. else
  180. theme = normalTheme
  181. gpu.setForeground(theme.textColor)
  182. gpu.setBackground(theme.background)
  183. end
  184.  
  185. term.clear()
  186. printBuf()
  187.  
  188. while running do
  189. hiLiteXY(col, currRow + offset, menuList[currRow])
  190. local event, address, arg1, arg2, arg3 = event.pull()
  191. if type(address) == "string" and component.isPrimary(address) then
  192. local blink = true
  193. if event == "key_down" then
  194. onKeyDown(arg1, arg2)
  195. end
  196. end
  197. end
  198.  
  199.  
  200. gpu.setForeground(0xFFFFFF)
  201. gpu.setBackground(0x000000)
  202. term.clear()
  203. term.setCursorBlink(false)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement