Advertisement
Guest User

Untitled

a guest
Apr 25th, 2020
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.47 KB | None | 0 0
  1. local gpu = require("component").gpu
  2.  
  3. local gpu_set,gpu_BGC = gpu.set,gpu.setBackground
  4. function char_color(input,color,x,y)
  5.     local oldx = x
  6.     for group in input:gmatch("[^\n]+") do
  7.         for char in group:gmatch(".") do
  8.             if color[char] then
  9.                 gpu_BGC(color[char])
  10.                 gpu.set(x,y," ")
  11.             end
  12.             x = x + 1
  13.         end
  14.         x = oldx
  15.         y = y + 1
  16.     end
  17. end
  18.  
  19. local pattern = [[
  20. 0011001100
  21. 1111111111
  22. 0011111100
  23. 0000110000
  24. ]]
  25.  
  26. char_color(pattern,{["1"] = 0xFF0000},  1,1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement