Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local color = {colors.red, colors.orange, colors.yellow, colors.white, colors.lightGray, colors.gray}
- local refresh = 0.05
- local frequency = 10
- local text = {"<Enter Loading Text Here>", colors.lime}
- local background = colors.black
- local rainbowColors = true
- -- change any of the above values to alter the look of the fireworks
- term.setBackgroundColor(colors.black)
- term.clear()
- local fw = {}
- local x, y = term.getSize()
- color = rainbowColors and {
- {colors.red, colors.orange, colors.yellow, colors.white, colors.lightGray};
- {colors.green, colors.lime, colors.yellow, colors.white, colors.lightGray};
- {colors.blue, colors.cyan, colors.lightBlue, colors.white, colors.lightGray};
- {colors.purple, colors.magenta, colors.pink, colors.white, colors.lightGray};
- } or color
- local len = rainbowColors and #color[1] or #color
- if rainbowColors then
- for i, t in ipairs(color) do
- t[#t + 1] = background
- end
- else
- color[#color + 1] = background
- end
- local advance = function()
- for i, t in ipairs(fw) do
- t[2] = t[2] + 0.5
- end
- end
- local render = function()
- for i, t in ipairs(fw) do
- for i = 1, len + 1 do
- if t[2] - i >= 1 then
- term.setCursorPos(t[1], math.floor(t[2]) - i)
- term.setTextColor(rainbowColors and color[t[3]][i] or color[i])
- term.write(t[2] % 1 == 0 and "-" or "_")
- end
- end
- end
- term.setCursorPos((x - #text[1]) / 2, y / 2)
- term.setTextColor(text[2])
- for char in text[1]:gmatch(".") do
- if char ~=" " then
- term.write(char)
- else
- local xpos, ypos = term.getCursorPos()
- term.setCursorPos(xpos + 1, ypos)
- end
- end
- end
- local timer = os.startTimer(refresh)
- while true do
- do
- local e = {os.pullEvent("timer")}
- if e[2] ~= timer then return end
- advance()
- if math.random(len / refresh / frequency) == 1 then
- fw[#fw + 1] = {math.random(x), 1, rainbowColors and math.random(#color) or nil}
- end
- render()
- timer = os.startTimer(refresh)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement