Skip to content
Snippets Groups Projects
Commit 186c29ad authored by dg's avatar dg
Browse files

tset

git-svn-id: http://svn.net-core.org/repos/t-engine4@6530 51575b47-30f0-44d4-a5cc-537603b46e54
parent 547488e1
No related branches found
No related tags found
No related merge requests found
......@@ -188,6 +188,7 @@ function _M:init(w, h)
self.remembers = {}
self.effects = {}
self.path_strings = {}
self.path_strings_computed = {}
for i = 0, w * h - 1 do self.map[i] = {} end
self.particles = {}
......@@ -203,6 +204,7 @@ function _M:save()
_check_entities_store = true,
_map = true,
_fovcache = true,
path_strings_computed = true,
surface = true,
finished = true,
_stackmo = true,
......@@ -235,12 +237,18 @@ function _M:addPathString(ps)
if eps == ps then return end
end
self.path_strings[#self.path_strings+1] = ps
self.path_strings_computed[ps] = loadstring(ps)()
if self._fovcache then self._fovcache.path_caches[ps] = core.fov.newCache(self.w, self.h) end
end
function _M:loaded()
self:makeCMap()
self.path_strings_computed = {}
for i, ps in ipairs(self.path_strings) do
self.path_strings_computed[ps] = loadstring(ps)()
end
local mapseen = function(t, x, y, v)
if not x or not y or x < 0 or y < 0 or x >= self.w or y >= self.h then return end
if v ~= nil then
......@@ -397,7 +405,7 @@ function _M:updateMap(x, y)
-- Update path caches from path strings
for i = 1, #self.path_strings do
local ps = self.path_strings[i]
self._fovcache.path_caches[ps]:set(x, y, g:check("block_move", x, y, ps, false, true))
self._fovcache.path_caches[ps]:set(x, y, g:check("block_move", x, y, self.path_strings_computed[ps] or ps, false, true))
end
g:getMapObjects(self.tiles, mos, 1)
......
......@@ -43,6 +43,7 @@ function _M:block_move(x, y, e, act, couldpass)
-- Path strings
if not e then e = {}
elseif type(e) == "string" then
print("=====COMPUTING", x, y, e)
e = loadstring(e)()
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment