Advertisement
RyuuzakiJulio

ColorScroll

Mar 6th, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. -- The text to show on the monitor
  2. local tText = {
  3. "First Line",
  4. "Second Line",
  5. "All the lines you want",
  6. "If they fit on the monitor"
  7. }
  8.  
  9. local sSide = "back"
  10. local nTextScale = 3
  11. local bColor = colors.black
  12. local tColor = colors.red
  13.  
  14. local function printScroll(mon, t)
  15. local w, h = mon.getSize()
  16. local scroll = 1
  17. local maxLen
  18. for i, line in ipairs(t) do
  19. if not maxLen or #line > maxLen then
  20. maxLen = #line
  21. end
  22. end
  23. while true do
  24. mon.clear()
  25. for i, line in ipairs(t) do
  26. mon.setCursorPos(w - scroll, i)
  27. mon.write(line)
  28. end
  29. scroll = scroll + 1
  30. if scroll >= w + maxLen then
  31. scroll = 1
  32. end
  33. sleep(0.15)
  34. end
  35. end
  36.  
  37. term.clear()
  38. term.setCursorPos(1, 1)
  39. print("Scrolling text on the monitor...")
  40.  
  41. local mon = peripheral.wrap(sSide)
  42. mon.setBackgroundColor(bColor)
  43. mon.setTextColor(tColor)
  44. mon.setTextScale(nTextScale)
  45. printScroll(mon, tText, sx)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement