diff options
-rw-r--r-- | main.lua | 7 | ||||
-rw-r--r-- | maps/default.lua | 3 | ||||
-rw-r--r-- | world.lua | 10 |
3 files changed, 17 insertions, 3 deletions
@@ -106,7 +106,12 @@ function love.keypressed(key) love.event.quit() end if key == "f6" and debug then - local new = World:new("default", {"link", Controllers[1]}, {"weed", Controllers[2]}) + local map = Scene:getMapName() + local nauts = {} + for _,naut in pairs(Scene:getNautsAll()) do + table.insert(nauts, {naut.name, naut.controller}) + end + local new = World:new(map, nauts) Scene:delete() changeScene(new) end diff --git a/maps/default.lua b/maps/default.lua index 3fc6b04..ee64830 100644 --- a/maps/default.lua +++ b/maps/default.lua @@ -1,6 +1,7 @@ -- Default map from original roflnauts return { - -- CENTER AND SIZE + -- GENERAL + name = "default", center_x = 0, center_y = 0, width = 360, @@ -189,7 +189,6 @@ function World:getNautsPlayable() end return nauts end - -- are alive function World:getNautsAlive() local nauts = {} @@ -200,6 +199,15 @@ function World:getNautsAlive() end return nauts end +-- all of them +function World:getNautsAll() + return self.Nauts +end + +-- get Map name +function World:getMapName() + return self.map.name +end -- Event: when player is killed function World:onNautKilled(naut) |