Advertisement
Symmetryc

Fireworks

Oct 3rd, 2013
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.91 KB | None | 0 0
  1. local color = {colors.red, colors.orange, colors.yellow, colors.white, colors.lightGray, colors.gray}
  2. local refresh = 0.05
  3. local frequency = 10
  4. local text = {"<Enter Loading Text Here>", colors.lime}
  5. local background = colors.black
  6. local rainbowColors = true
  7. -- change any of the above values to alter the look of the fireworks
  8. term.setBackgroundColor(colors.black)
  9. term.clear()
  10. local fw = {}
  11. local x, y = term.getSize()
  12. color = rainbowColors and {
  13.     {colors.red, colors.orange, colors.yellow, colors.white, colors.lightGray};
  14.     {colors.green, colors.lime, colors.yellow, colors.white, colors.lightGray};
  15.     {colors.blue, colors.cyan, colors.lightBlue, colors.white, colors.lightGray};
  16.     {colors.purple, colors.magenta, colors.pink, colors.white, colors.lightGray};
  17. } or color
  18. local len = rainbowColors and #color[1] or #color
  19. if rainbowColors then
  20.     for i, t in ipairs(color) do
  21.         t[#t + 1] = background
  22.     end
  23. else
  24.     color[#color + 1] = background
  25. end
  26. local advance = function()
  27.     for i, t in ipairs(fw) do
  28.         t[2] = t[2] + 0.5
  29.     end
  30. end
  31. local render = function()
  32.     for i, t in ipairs(fw) do
  33.         for i = 1, len + 1 do
  34.             if t[2] - i >= 1 then
  35.                 term.setCursorPos(t[1], math.floor(t[2]) - i)
  36.                 term.setTextColor(rainbowColors and color[t[3]][i] or color[i])
  37.                 term.write(t[2] % 1 == 0 and "-" or "_")
  38.             end
  39.         end
  40.     end
  41.     term.setCursorPos((x - #text[1]) / 2, y / 2)
  42.     term.setTextColor(text[2])
  43.     for char in text[1]:gmatch(".") do
  44.         if char ~=" " then
  45.             term.write(char)
  46.         else
  47.             local xpos, ypos = term.getCursorPos()
  48.             term.setCursorPos(xpos + 1, ypos)
  49.         end
  50.     end
  51. end
  52. local timer = os.startTimer(refresh)
  53. while true do
  54.     do
  55.         local e = {os.pullEvent("timer")}
  56.         if e[2] ~= timer then return end
  57.         advance()
  58.         if math.random(len / refresh / frequency) == 1 then
  59.             fw[#fw + 1] = {math.random(x), 1, rainbowColors and math.random(#color) or nil}
  60.         end
  61.         render()
  62.         timer = os.startTimer(refresh)
  63.     end
  64. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement