Advertisement
Guest User

Untitled

a guest
Aug 11th, 2015
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.02 KB | None | 0 0
  1. local lineBreak = string.byte("\n")
  2.  
  3. local function log2(num)
  4.     return math.log(num)/math.log(2)
  5. end
  6.  
  7. -------------------------------------------
  8. -- Thanks for this, Lignum :)            --
  9. -------------------------------------------
  10. local function unify(bgColour, fgColour)
  11.   local bg = log2(bgColour)
  12.   local fg = log2(fgColour)
  13.  
  14.   local field = bit.bor(bg, bit.blshift(fg, 4))
  15.   return field
  16. end
  17.  
  18. local function extractColors(bitfield)
  19.   local bg = 2^(bit.band(bitfield, 0xF))
  20.   local fg = 2^(bit.brshift(bitfield, 4))
  21.   return bg, fg
  22. end
  23. -------------------------------------------
  24.  
  25.  
  26. -------------------------------------------
  27. -- Intended for conversion and stuff.    --
  28. -------------------------------------------
  29. local colorChars = "0123456789abcdef"
  30.  
  31. local function getCharForColor(col)
  32.     local c = log2(col)+1
  33.     return colorChars:sub(c,c)
  34. end
  35.  
  36. local function getColorForChar(ch)
  37.     for i = 1,16 do
  38.         if(colorChars:sub(i,i) == ch) then
  39.             return 2^(i-1)
  40.         end
  41.     end
  42. end
  43. -------------------------------------------
  44.  
  45.  
  46. function load(path)
  47.     local content = {}
  48.     local handle = fs.open(path,"rb")
  49.     local currentLine = {}
  50.     local isChar = false
  51.     for byte in handle.read do
  52.         if(byte == lineBreak) then
  53.             table.insert(content,currentLine)
  54.             currentLine = {}
  55.             isChar = false
  56.         else
  57.             if(isChar) then
  58.                 print(#currentLine)
  59.                 currentLine[#currentLine][3] = string.char(byte)
  60.                 isChar = false
  61.             else
  62.                 currentLine[#currentLine+1] = {extractColors(byte)}
  63.                 isChar = true
  64.             end
  65.         end
  66.     end
  67.     return content
  68. end
  69.  
  70. function draw(img)
  71.     for y,line in pairs(img) do
  72.         for x,char in pairs(line) do
  73.             term.setCursorPos(x,y)
  74.             term.setBackgroundColor(char[1])
  75.             term.setTextColor(char[2])
  76.             term.write(char[3])
  77.         end
  78.     end
  79. end
  80.  
  81. function save(data,file)
  82.     local handle = fs.open(file,"wb")
  83.     for _y,y in pairs(data) do
  84.         for _x,x in pairs(y) do
  85.             handle.write(unify(x[1],x[2]))
  86.             handle.write(x[3] ~= nil and string.byte(x[3]) or string.byte(" "))
  87.         end
  88.         handle.write(lineBreak)
  89.     end
  90. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement