Advertisement
Guest User

Untitled

a guest
Jul 10th, 2015
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. --TEST PROGRAM--
  2.  
  3. os.loadAPI('gui')
  4.  
  5. function returnPercent()
  6. if hello == nil or hello == 100 then
  7. hello = 0
  8. else
  9. hello = hello+1
  10. end
  11. return hello
  12. end
  13.  
  14. local function printHello()
  15. local termX, termY = term.getSize()
  16. term.setCursorPos(1, termY)
  17. term.setBackgroundColor(colors.black)
  18. term.setTextColor(colors.white)
  19. write('HELLO WORLD!')
  20. os.sleep(0.5)
  21. end
  22.  
  23. local function printHi()
  24. local termX, termY = term.getSize()
  25. term.setCursorPos(1, termY)
  26. term.setBackgroundColor(colors.black)
  27. term.setTextColor(colors.white)
  28. write('HI WORLD!')
  29. os.sleep(0.5)
  30. end
  31.  
  32. local termX, termY = term.getSize()
  33. local a = gui.background(colors.lightBlue)
  34. local bColor = { colors.blue, colors.red, colors.green, colors.orange, colors.pink, colors.gray, colors.cyan, colors.yellow, colors.magenta, colors.black, colors.lime }
  35. local bText = { 'BLUE (sample button w/o function)', 'RED', 'GREEN', 'ORANGE', 'PINK', 'GRAY', 'CYAN', 'YELLOW', 'MAGENTA', 'BLACK', 'LIME' }
  36. local b = gui.toggleButton( { 2,2,-2,6}, bColor, bText )
  37. local c = gui.toggleButton( { -20,2 }, { colors.red, colors.blue }, { 'sample toggleButton [hi]', 'sample toggleButton [hello]' }, {printHi, printHello})
  38. local d = gui.progressBar( {-2, 2}, { colors.white, colors.green }, returnPercent )
  39. local e = gui.pulseButton({20,2}, {colors.lightGray, colors.gray}, 'sample pulseButton', printHello)
  40. gui.render({ a, b, c, d, e })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement