Advertisement
Guest User

Untitled

a guest
Jun 16th, 2014
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.49 KB | None | 0 0
  1. --[[
  2.     If we had Regex, we could convert all numbers to letters
  3.     and match (\S)\1+ to find repetitions but that doesn't work
  4.     in Lua patterns.
  5. ]]
  6. local function findRepetitions(row)
  7.     local lastNum = row[1]
  8.     local repetitions = {}
  9.     local curTable = {}
  10.    
  11.     for i=1,#row+1 do
  12.         local c = row[i]
  13.  
  14.         if c == lastNum then
  15.             curTable[#curTable + 1] = c
  16.         elseif c == nil then
  17.             repetitions[#repetitions + 1] = curTable
  18.         else
  19.             repetitions[#repetitions + 1] = curTable
  20.             curTable = { c }
  21.         end
  22.        
  23.         lastNum = c
  24.     end
  25.    
  26.     return repetitions
  27. end
  28.  
  29. local function simplifyColour(colour)
  30.     return math.log(colour) / math.log(2)
  31. end
  32.  
  33. function save(filename, map, solidity)
  34.     local file = fs.open(filename, "wb")
  35.  
  36.     -- Header
  37.     -- Magic word, "MAP".
  38.     file.write(string.byte("M"))
  39.     file.write(string.byte("A"))
  40.     file.write(string.byte("P"))
  41.  
  42.     file.write(#map) -- Map height.
  43.     file.write(solidity ~= nil and #solidity or 0) -- Write the size of the solidity bank. 0 if none.
  44.    
  45.     -- Map bank.
  46.     -- Write the map.
  47.     for y=1,#map do
  48.         for _,v in ipairs(findRepetitions(map[y])) do
  49.             if #v <= 2 then
  50.                 for i=1,#v do
  51.                     file.write(simplifyColour(v[1]))
  52.                 end
  53.             elseif #v >= 3 then
  54.                 file.write(0xFF)
  55.                 file.write(simplifyColour(v[1]))
  56.                 file.write(#v)
  57.             end
  58.         end
  59.        
  60.         file.write(string.byte('\n'))
  61.     end
  62.    
  63.     -- Solidity bank.
  64.     if solidity ~= nil then
  65.         for i,v in ipairs(solidity) do
  66.             file.write(v[1])
  67.             file.write(v[2])
  68.         end
  69.     end
  70.  
  71.     file.close()
  72. end
  73.  
  74. function load(filename)
  75.     local file = fs.open(filename, "rb")
  76.    
  77.     -- Header
  78.     -- There has to be a better way to do this... Feel free to change it.
  79.     local c1 = string.char(file.read())
  80.     local c2 = string.char(file.read())
  81.     local c3 = string.char(file.read())
  82.     local word = c1 .. c2 .. c3
  83.    
  84.     assert(word == "MAP", "not a valid map file!")
  85.    
  86.     local height = file.read()
  87.    
  88.     local solidBankSize = file.read()
  89.    
  90.     local tbl = {}
  91.     local curTbl = {}
  92.    
  93.     local i = 0
  94.     while i < height do
  95.         local id = file.read()
  96.        
  97.         if id == 0xFF then
  98.             local num = file.read()
  99.             local repet = file.read()
  100.            
  101.             for j=1,repet do
  102.                 curTbl[#curTbl + 1] = { ["c"] = 2 ^ num, ["s"] = false }
  103.             end
  104.         elseif id == string.byte('\n') then
  105.             tbl[#tbl + 1] = curTbl
  106.             curTbl = {}
  107.             i = i + 1
  108.         else
  109.             curTbl[#curTbl + 1] = { ["c"] = 2 ^ id, ["s"] = false }
  110.         end
  111.     end
  112.    
  113.     for i=1,solidBankSize do
  114.         local x = file.read()
  115.         local y = file.read()
  116.         tbl[y][x]["s"] = true
  117.     end
  118.    
  119.     file.close()
  120.     return tbl
  121. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement