Advertisement
Guest User

paintcan

a guest
Feb 13th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.57 KB | None | 0 0
  1. local tHex = {[0]="0",[1]="1",[2]="2",[3]="3",[4]="4",[5]="5",[6]="6",[7]="7",[8]="8",[9]="9",[10]="a",[11]="b",[12]="c",[13]="d",[14]="e",[15]="f",}
  2.  
  3. local function fDecToBin(iNum)
  4.     local tBinary = {}
  5.     while iNum > 0 do
  6.         table.insert(tBinary,1,iNum%2)
  7.         iNum=math.floor(iNum/2)
  8.     end
  9.     return #tBinary > 0 and table.concat(tBinary) or "0"
  10. end
  11.  
  12. local function fRepeats(tFirst,tSec,iIndex,iStart)
  13.     local iNum = 1
  14.     while tFirst[iIndex][iStart+iNum] and tFirst[iIndex][iStart+iNum-1]==tFirst[iIndex][iStart+iNum] and tSec[iIndex][iStart+iNum-1]==tSec[iIndex][iStart+iNum] do
  15.         iNum = iNum + 1
  16.     end
  17.     return iNum
  18. end
  19.  
  20. local function fTextReps(tText,iIndex,iStart)
  21.     local iNum = 1
  22.     while tText[iIndex][iStart+iNum] and tText[iIndex][iStart+iNum-1]==tText[iIndex][iStart+iNum] do
  23.         iNum = iNum + 1
  24.     end
  25.     return iNum
  26. end
  27.  
  28. local tBinToDec = {}
  29. local tHexToDec = {}
  30. local tDecToHex = {}
  31.  
  32. for i=0,255 do
  33.     tBinToDec[tonumber(fDecToBin(i))] = i
  34. end
  35.  
  36. local sBinary
  37. for iBackground=0,15 do
  38.     tHexToDec[tHex[iBackground]] = {}
  39.     for iText=0,15 do
  40.         sBinary = fDecToBin(iBackground)..fDecToBin(iText)
  41.         tHexToDec[tHex[iBackground]][tHex[iText]] = tBinToDec[tonumber(sBinary)]
  42.         tDecToHex[tBinToDec[tonumber(sBinary)]] = {tHex[iBackground],tHex[iText]}
  43.     end
  44. end
  45.  
  46.  
  47.  
  48. function encode(tText,tForeground,tBackground,sFile)
  49.     local tTemp
  50.     if type(tText)=="string" then
  51.         tTemp = {}
  52.         for word in tText:gmatch("[^\n]+") do
  53.             table.insert(tTemp,{})
  54.             for char in word:gmatch(".") do
  55.                 table.insert(tTemp[#tTemp],char)
  56.             end
  57.         end
  58.         tText = tTemp
  59.     end
  60.     if type(tForeground)=="string" then
  61.         tTemp = {}
  62.         for word in tForeground:gmatch("[^\n]+") do
  63.             table.insert(tTemp,{})
  64.             for char in word:gmatch(".") do
  65.                 table.insert(tTemp[#tTemp],char)
  66.             end
  67.         end
  68.         tForeground = tTemp
  69.     end
  70.     if type(tBackground)=="string" then
  71.         tTemp = {}
  72.         for word in tBackground:gmatch("[^\n]+") do
  73.             table.insert(tTemp,{})
  74.             for char in word:gmatch(".") do
  75.                 table.insert(tTemp[#tTemp],char)
  76.             end
  77.         end
  78.         tBackground = tTemp
  79.     end
  80.     local continue = 0
  81.     local tFile = fs.open(sFile,"wb")
  82.     if #tBackground~=#tForeground or (tText and #tBackground~=#tText) then
  83.         error("size of tables must match. \n#("..tostring(#tForeground)..","..tostring(#tBackground)..","..tostring(tText and #tText or nil)..")")
  84.     end
  85.     for i=1,#tForeground do
  86.         for t=1,#tForeground[i] do
  87.             if continue > 0 then
  88.                 continue = continue - 1
  89.             else
  90.                 if fRepeats(tForeground,tBackground,i,t) > 1 then
  91.                     continue = fRepeats(tForeground,tBackground,i,t)-1
  92.                     tFile.write(1)
  93.                     tFile.write(1)
  94.                     tFile.write(continue+1)
  95.                 end
  96.                 tFile.write( tHexToDec[tBackground[i][t]][tForeground[i][t]] )
  97.             end
  98.         end
  99.         if i~=#tForeground then
  100.             tFile.write(10)
  101.             tFile.write(10)
  102.         end
  103.     end
  104.     if #tText > 0 then
  105.         tFile.write(255)
  106.         tFile.write(255)
  107.         for i=1,#tText do
  108.             for t=1,#tText[i] do
  109.                 if continue > 0 then
  110.                     continue = continue - 1
  111.                 else
  112.                     if fTextReps(tText,i,t) > 1 then
  113.                         continue = fTextReps(tText,i,t) - 1
  114.                         tFile.write(1)
  115.                         tFile.write(continue+1)
  116.                     end
  117.                     tFile.write(string.byte(tText[i][t]))
  118.                 end
  119.             end
  120.             tFile.write(10)
  121.         end
  122.     end
  123.     tFile.close()
  124. end
  125.  
  126. function decode(sFile)
  127.     local tFile = fs.open(sFile,"rb")
  128.     tTemp = {}
  129.     sFore = ""
  130.     sBack = ""
  131.     sText = ""
  132.     for iByte in tFile.read do
  133.         table.insert(tTemp,iByte)
  134.     end
  135.     while #tTemp > 0 do
  136.         if tTemp[2]==tTemp[1] then
  137.             table.remove(tTemp,1)
  138.             local iCon = table.remove(tTemp,1)
  139.             if iCon==1 then
  140.                 local tClone = tDecToHex[table.remove(tTemp,2)]
  141.                 local reps = table.remove(tTemp,1)
  142.                 for i=1,reps do
  143.                     sBack = sBack..tClone[1]
  144.                     sFore = sFore..tClone[2]
  145.                 end
  146.             elseif iCon==10 then
  147.                 sFore = sFore.."\n"
  148.                 sBack = sBack.."\n"
  149.             elseif iCon==255 then
  150.                 break
  151.             end
  152.         else
  153.             local tHandle = tDecToHex[table.remove(tTemp,1)]
  154.             sBack = sBack..tHandle[1]
  155.             sFore = sFore..tHandle[2]
  156.         end
  157.     end
  158.     while #tTemp > 0 do
  159.         local iCon = table.remove(tTemp,1)
  160.         if iCon==1 then
  161.             local iClone = tTemp[2]
  162.             for i=2,table.remove(tTemp,1) do
  163.                 table.insert(tTemp,1,iClone)
  164.             end
  165.         else
  166.             sText = sText..string.char(iCon)
  167.         end
  168.     end
  169.     return sFore,sBack,sText
  170. end
  171.  
  172. function draw(iX,iY,sText,sFore,sBack)
  173.     local fTextFunc = sText:gmatch("[^\n]+")
  174.     local fBackFunc = sBack:gmatch("[^\n]+")
  175.     local sTextSplit
  176.     local sBackSplit
  177.     local iRep = 0
  178.     for sForeSplit in sFore:gmatch("[^\n]+") do
  179.         sTextSplit = fTextFunc()
  180.         sBackSplit = fBackFunc()
  181.         term.setCursorPos(iX,iY+iRep)
  182.         term.blit(sTextSplit,sForeSplit,sBackSplit)
  183.         iRep = iRep + 1
  184.     end
  185. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement