Advertisement
Guest User

Untitled

a guest
Jul 10th, 2015
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.21 KB | None | 0 0
  1. --[[GUI API BY MHIEKURU
  2. functions available
  3.  
  4. OBJECTS
  5. gui.background()
  6. gui.progressBar()
  7. gui.toggleButton()
  8. gui.pulseButton()
  9.  
  10. RENDER
  11. gui.render()
  12. ]]
  13. --CORE FUNCTION--
  14.  
  15. local function convertArea( vertex )
  16. local xMax, yMax = term.getSize()
  17. --if vertex consist of two numbers, convert given as length and height, then set starting vertex to the current cursor position
  18. if type(vertex[1]) == 'number' and type(vertex[2]) == 'number' and vertex[3] == nil and vertex[4] == nil then
  19. local x, y = term.getCursorPos()
  20. if vertex[1] < 0 then
  21. vertex[3] = xMax+vertex[1]+1
  22. else
  23. vertex[3] = x-1+vertex[1]
  24. end
  25. if vertex[2] < 0 then
  26. vertex[4] = yMax+vertex[2]+1
  27. else
  28. vertex[4] = y-1+vertex[2]
  29. end
  30. vertex[1] = x
  31. vertex[2] = y
  32. --if vertex consist of four numbers, convert each number to its [maxAxis plus the negative vertex plus one] if the vertex is a negative value
  33. elseif type(vertex[1]) == 'number' and type(vertex[2]) == 'number' and type(vertex[3]) == 'number' and type(vertex[4]) == 'number' then
  34. if vertex[1] < 0 then
  35. vertex[1] = xMax+vertex[1]+1
  36. end
  37. if vertex[2] < 0 then
  38. vertex[2] = yMax+vertex[2]+1
  39. end
  40. if vertex[3] < 0 then
  41. vertex[3] = xMax+vertex[3]+1
  42. end
  43. if vertex[4] < 0 then
  44. vertex[4] = yMax+vertex[4]+1
  45. end
  46. end
  47. --switch vertex[1] and vertex[3] if vertex[1] is greater
  48. local placeHolderX, placeHolderY
  49. if vertex[3] < vertex[1] then
  50. placeHolderX = vertex[1]
  51. vertex[1] = vertex[3]
  52. vertex[3] = placeHolderX
  53. end
  54. --switch vertex[1] and vertex[3] if vertex[1] is greater
  55. if vertex[4] < vertex[2] then
  56. placeHolderY = vertex[2]
  57. vertex[2] = vertex[4]
  58. vertex[4] = placeHolderY
  59. end
  60. return vertex
  61. end
  62.  
  63. local function fill( vertex, color )
  64. term.setBackgroundColor( color )
  65. for i = vertex[2], vertex[4] do
  66. term.setCursorPos( vertex[1], i )
  67. write( string.rep( ' ', vertex[3] - vertex[1] + 1 ) )
  68. end
  69. end
  70.  
  71. function setCursorPos( vertex, string, position )
  72. if position == 'c' then
  73. term.setCursorPos( math.ceil( ( ( vertex[3] - vertex[1] + 1 - #string ) / 2 ) + vertex[1] ),
  74. math.ceil( ( math.floor(vertex[4]) + math.floor(vertex[2]) ) / 2 ) )
  75. elseif position == 'l' then
  76. term.setCursorPos( vertex[1], math.ceil( ( math.floor(vertex[4]) + math.floor(vertex[2]) ) / 2 ) )
  77. end
  78. end
  79.  
  80. --GUI LIBRARY--
  81.  
  82. background = function( color )
  83. return
  84. {
  85. type = 'background',
  86. color = color
  87. }
  88. end
  89.  
  90. progressBar = function( vertex, color, string )
  91. return
  92. {
  93. type = 'bar_percent',
  94. vertex = vertex,
  95. color = color,
  96. string = string,
  97. }
  98. end
  99.  
  100. toggleButton = function( vertex, color, string, guifunction )
  101. return
  102. {
  103. type = 'button_toggle',
  104. vertex = vertex,
  105. color = color,
  106. string = string,
  107. guifunction = guifunction,
  108. state = 1
  109. }
  110. end
  111.  
  112. pulseButton = function( vertex, color, string, guifunction )
  113. return
  114. {
  115. type = 'button_pulse',
  116. vertex = vertex,
  117. color = color,
  118. string = string,
  119. guifunction = guifunction,
  120. }
  121. end
  122.  
  123. render = function(gui)
  124. local counter = 0
  125. local counterEvent
  126. local refreshrate = 0
  127. os.startTimer(0)
  128. while true do
  129. if counter == 3 then
  130. if gui[counterEvent].guifunction then
  131. local startTime = os.clock()
  132. gui[counterEvent].guifunction()
  133. if os.clock() > startTime+refreshrate then
  134. os.startTimer(refreshrate)
  135. end
  136. end
  137. counter = 0
  138. elseif counter > 0 then
  139. counter = counter+1
  140. end
  141. --wait event
  142. local event, mbttn, crsrX, crsrY = os.pullEvent()
  143. --check and run functions
  144. if event == 'mouse_click' or event == 'monitor_touch' or event == 'mouse_drag' then
  145. local startTime = os.clock()
  146. for i = 1, #gui do
  147. if gui[i].type == 'button_toggle' or gui[i].type == 'button_pulse' then
  148. if crsrX >= gui[i].vertex[1] and crsrX <= gui[i].vertex[3] and crsrY >= gui[i].vertex[2] and crsrY <= gui[i].vertex[4] then
  149. if gui[i].type == 'button_toggle' then
  150. if gui[i].guifunction then
  151. gui[i].guifunction[gui[i].state]()
  152. end
  153. if mbttn == 1 then -- [+]
  154. if gui[i].state == #gui[i].color then --only when func activated
  155. gui[i].state = 1
  156. else
  157. gui[i].state = gui[i].state + 1
  158. end
  159. else -- [-]
  160. if gui[i].state == 1 then --only when func activated
  161. gui[i].state = #gui[i].color
  162. else
  163. gui[i].state = gui[i].state - 1
  164. end
  165. end
  166. elseif gui[i].type == 'button_pulse' then
  167. counter = 1
  168. counterEvent = i
  169. end
  170. end
  171. end
  172. end
  173. if os.clock() > startTime+refreshrate then
  174. os.startTimer(refreshrate)
  175. end
  176. elseif event == 'timer' then
  177. --render
  178. for i, v in ipairs(gui) do
  179. if gui[i].type == 'button_toggle' then
  180. gui[i].vertex = convertArea( gui[i].vertex )
  181. --renders button's background
  182. fill( gui[i].vertex, gui[i].color[gui[i].state] )
  183. --renders button's text
  184. setCursorPos( gui[i].vertex, gui[i].string[gui[i].state], 'c' )
  185. term.setTextColor( colors.white )
  186. write( gui[i].string[gui[i].state] )
  187. term.setCursorPos( gui[i].vertex[1], gui[i].vertex[4] + 2 )
  188. elseif gui[i].type == 'button_pulse' then
  189. gui[i].vertex = convertArea( gui[i].vertex )
  190. --renders button's background
  191. if counter == 0 then
  192. fill( gui[i].vertex, gui[i].color[1] )
  193. else
  194. fill( gui[i].vertex, gui[i].color[2] )
  195. end
  196. --renders button's text
  197. setCursorPos( gui[i].vertex, gui[i].string, 'c' )
  198. term.setTextColor( colors.white )
  199. write( gui[i].string )
  200. term.setCursorPos( gui[i].vertex[1], gui[i].vertex[4] + 2 )
  201. elseif gui[i].type == 'bar_percent' then
  202. if gui[i].string then
  203. local percent = gui[i].string()
  204. gui[i].vertex = convertArea( gui[i].vertex )
  205. if percent > 100 then percent = 100 end --limit percent to 100%
  206. --renders progress bar's background
  207. fill( {math.floor(((gui[i].vertex[3]-gui[i].vertex[1]+1)*percent/100)+gui[i].vertex[1]), gui[i].vertex[2], gui[i].vertex[3], gui[i].vertex[4]}, gui[i].color[1] )
  208. --renders progress bar's foreground
  209. fill( {gui[i].vertex[1], gui[i].vertex[2], math.floor(((gui[i].vertex[3]-gui[i].vertex[1]+1)*percent/100)+gui[i].vertex[1]-1), gui[i].vertex[4]}, gui[i].color[2] )
  210. --renders data to be displayed
  211. local perTab = {}
  212. for j = 1, #tostring( percent .. '%' ) do
  213. perTab[ j ] = tostring( percent .. '%' ):sub( j, j )
  214. end
  215. setCursorPos( gui[i].vertex, perTab, 'c' )
  216. for j = 1, #perTab do
  217. local perX, perY = term.getCursorPos()
  218. if perX <= math.floor(((gui[i].vertex[3]-gui[i].vertex[1]+1)*percent/100)+gui[i].vertex[1]-1) and perX >= gui[i].vertex[1] then
  219. term.setBackgroundColor(gui[i].color[2])
  220. term.setTextColor(gui[i].color[1])
  221. else
  222. term.setBackgroundColor(gui[i].color[1])
  223. term.setTextColor(gui[i].color[2])
  224. end
  225. write(perTab[j])
  226. end
  227. term.setCursorPos( gui[i].vertex[1], gui[i].vertex[4] + 2 )
  228. end
  229. elseif gui[i].type == 'background' then
  230. local x, y = term.getCursorPos()
  231. term.setBackgroundColor( gui[ i ].color )
  232. term.clear()
  233. term.setCursorPos( x, y )
  234. end
  235. end
  236. os.startTimer(refreshrate)
  237. end
  238. end
  239. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement