Advertisement
Guest User

lwz.lua

a guest
Feb 13th, 2017
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.52 KB | None | 0 0
  1. --Port of LWZ Compression
  2. --Original: https://github.com/Magiczvn/LWZCompression/blob/master/LZW/LZWAlgorithm.lua
  3.  
  4. function InitDictionary(isEncode)
  5.     mDictionary = {}
  6.     local s = " !#$%&'\"()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"
  7.     local len = string.len(s)
  8.  
  9.     for i = 1, len do
  10.         if isEncode then
  11.             mDictionary[string.sub(s, i, i)] = i
  12.         else
  13.             mDictionary[i] = string.sub(s, i, i)
  14.         end
  15.     end
  16.  
  17.     mDictionaryLen = len
  18. end
  19.  
  20. function Encode(sInput)
  21.     InitDictionary(true)
  22.  
  23.     local s = ""
  24.     local ch
  25.  
  26.     local len = string.len(sInput)
  27.     local result = {}
  28.  
  29.     local dic = mDictionary
  30.     local temp
  31.  
  32.     for i = 1, len do
  33.         ch = string.sub(sInput, i, i)
  34.         temp = s..ch
  35.         if dic[temp] then
  36.             s = temp
  37.         else
  38.             result[#result + 1] = dic[s]
  39.             mDictionaryLen = mDictionaryLen + 1
  40.             dic[temp] = mDictionaryLen
  41.             s = ch
  42.         end
  43.     end
  44.     result[#result + 1] = dic[s]
  45.  
  46.     return result
  47. end
  48.  
  49. function Decode(data)
  50.     InitDictionary(false)
  51.  
  52.     local dic = mDictionary
  53.  
  54.     local entry
  55.     local ch
  56.     local prevCode, currCode
  57.  
  58.     local result = {}
  59.  
  60.     prevCode = data[1]
  61.     result[#result + 1] = dic[prevCode]
  62.  
  63.     for i = 2, #data do
  64.         currCode = data[i]
  65.         entry = dic[currCode]
  66.         if entry then--exists in dictionary
  67.             ch = string.sub(entry, 1, 1)
  68.             result[#result + 1] = entry
  69.         else
  70.             ch = string.sub(dic[prevCode], 1, 1)
  71.             result[#result + 1] = dic[prevCode]..ch
  72.         end
  73.  
  74.         dic[#dic + 1] = dic[prevCode]..ch
  75.  
  76.         prevCode = currCode
  77.     end
  78.  
  79.     return table.concat(result)
  80. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement