Advertisement
Guest User

Untitled

a guest
Sep 9th, 2015
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.96 KB | None | 0 0
  1. os.execute"cls"
  2. local arg = {...}
  3.  
  4. local function split(str)
  5.     local t = {}
  6.     for match in str:gmatch(".") do
  7.         t[#t+1] = match
  8.     end
  9.     return t
  10. end
  11.  
  12. local function replace(str,what,with)
  13.     return string.gsub(str,what,with)
  14. end
  15.  
  16. local function loadFile(path)
  17.     local f = assert(io.open(path,"r"))
  18.     local content = f:read("*all")
  19.     f:close()
  20.     return content
  21. end
  22.  
  23. local function parseLevel(raw)
  24.     local height, width = raw:match("([0-9]+) ([0-9]+)")
  25.     local off = #height + #width + 2
  26.  
  27.     raw = split(raw:sub(off))
  28.  
  29.     local level = {}
  30.     local curLevel
  31.  
  32.     for i = 1,#raw do
  33.         local current = raw[i]
  34.         if((i-1)%width==0) then
  35.             level[#level+1] = {}
  36.             curLevel = level[#level]
  37.         end
  38.         curLevel[#curLevel+1] = current
  39.     end
  40.     return level
  41. end
  42.  
  43. local function getRelatives(level,x1,y1)
  44.     local relatives = {}
  45.     if(y1-1~=0) then
  46.         table.insert(relatives,{
  47.             x=x1,
  48.             y=y1-1,
  49.             orientation="N"
  50.             })
  51.     end
  52.     if(x1+1<=#level[1]) then
  53.         table.insert(relatives,{
  54.             x=x1+1,
  55.             y=y1,
  56.             orientation="O"
  57.             })
  58.     end
  59.     if(y1+1<=#level) then
  60.         table.insert(relatives,{
  61.             x=x1,
  62.             y=y1+1,
  63.             orientation="S"
  64.             })
  65.     end
  66.     if(x1-1~=0) then
  67.         table.insert(relatives,{
  68.             x=x1-1,
  69.             y=y1,
  70.             orientation="W"
  71.             })
  72.     end
  73.     return relatives
  74. end
  75.  
  76. local function findKassiopeia(level)
  77.     for y = 1,#level do
  78.         for x = 1,#level[1] do
  79.             if(level[y][x]=="K") then
  80.                 return x,y
  81.             end
  82.         end
  83.     end
  84. end
  85.  
  86. local function getWhitespaces(level)
  87.     local i = 0
  88.     for y = 1,#level do
  89.         for x = 1,#level[1] do
  90.             if(level[y][x] == " ") then
  91.                 i = i+1
  92.             end
  93.         end
  94.     end
  95.     return i+1
  96. end
  97.  
  98. local marked = {}
  99. local found = 0
  100.  
  101. local function canReachEveryField(level,startX,startY)
  102.     if(level[startY][startX]=="#") then
  103.         return
  104.     elseif(marked[startX.." "..startY]) then
  105.         return
  106.     else --Alles was nicht markiert ist, und auch nicht # ist, muss ein begehbares feld sein.
  107.         marked[startX.." "..startY] = true
  108.         found = found+1
  109.     end
  110.     local relatives = getRelatives(level,startX,startY)
  111.     for k,v in pairs(relatives) do
  112.         canReachEveryField(level,v.x,v.y)
  113.     end
  114. end
  115.  
  116. local finalString = {}
  117.  
  118. local function tCopy(t)
  119.     local tt = {}
  120.     for k,v in pairs(t) do
  121.         tt[k] = v
  122.     end
  123.     return tt
  124. end
  125.  
  126. local function realSize(t)
  127.     local i = 0
  128.     for k,v in pairs(t) do
  129.         i = i+1
  130.     end
  131.     return i
  132. end
  133.  
  134. local function contains(t,what)
  135.     for k,v in pairs(t) do
  136.         if(v==what) then return true end
  137.     end
  138.     return false
  139. end
  140.  
  141. local function onlyOnce(t)
  142.     local tt = {}
  143.     for k,v in pairs(t) do
  144.         if(not contains(tt,v)) then
  145.             table.insert(tt,v)
  146.         end
  147.     end
  148.     return tt
  149. end
  150.  
  151. local function searchPath(level,posX,posY,marked,curStr,orientation)
  152.     local marked = marked or {}
  153.     local curStr = curStr or ""
  154.  
  155.     if(realSize(marked)==getWhitespaces(level)) then
  156.         table.insert(finalString,curStr)
  157.     end
  158.  
  159.     if(level[posY][posX]=="#") then
  160.         return
  161.     end
  162.  
  163.     if(marked[posX.." "..posY]) then
  164.         return
  165.     end
  166.  
  167.     marked[posX.." "..posY] = true
  168.     if(orientation) then
  169.         curStr = curStr..orientation
  170.     end
  171.  
  172.  
  173.     local relatives = getRelatives(level,posX,posY)
  174.  
  175.     for k,v in pairs(relatives) do
  176.         searchPath(level,v.x,v.y,tCopy(marked),curStr,v.orientation)
  177.     end
  178.  
  179.     if(#marked==getWhitespaces(level)) then
  180.         table.insert(finalString,curStr)
  181.     end
  182.  
  183. end
  184.  
  185. --Ist nur zum debuggen. Hat keinen wirklichen nutzen.
  186. local function printLevel(level)
  187.     for k,v in pairs(level) do
  188.         print(table.concat(v,""))
  189.     end
  190. end
  191.  
  192.  
  193.  
  194. --Das muss man nicht machen, aber so finde ich das ein wenig ordentlicher.
  195. local function main()
  196.     local rawData = loadFile(arg[1] and arg[1] or "currentLevel.txt")
  197.     print(rawData)
  198.     rawData = replace(rawData,"\n","")
  199.     rawData = replace(rawData,"\r","")
  200.     local level = parseLevel(rawData)
  201.     local startX,startY = findKassiopeia(level)
  202.     searchPath(level,startX,startY)
  203.     local paths = onlyOnce(finalString)
  204.     if(#paths==0) then print("Es gibt keinen Weg.") return end
  205.     print("Es wurden "..#paths.." Wege gefunden.")
  206.     for k,v in pairs(paths) do
  207.         print(k,v)
  208.     end
  209. end
  210.  
  211. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement