From 7952bbc2a606ab22e04112eb2f21a573d0db116e Mon Sep 17 00:00:00 2001 From: ubq323 Date: Mon, 6 Feb 2023 12:50:21 +0000 Subject: hook up save/loading of chunks --- server/map.lua | 8 +++++++- server/server.lua | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) (limited to 'server') diff --git a/server/map.lua b/server/map.lua index 335997a..0bb09c7 100644 --- a/server/map.lua +++ b/server/map.lua @@ -2,6 +2,7 @@ local Map = require"common.map".Map local class = require"common.class" local worldgen = require"worldgen" local json = require"common.dkjson" +local Chunk = require"common.chunk".Chunk local MapS = class.extend(Map) function MapS.obtain(self,cp) @@ -17,13 +18,18 @@ function MapS.obtain(self,cp) local f = io.open(cp:filename(),"r") if f then + print("loading from file",cp) local j = json.decode(f:read("a")) - ch = Chunk:from_packet_data(j) + print(j) + for k in pairs(j) do print(k) end + ch = Chunk.from_packet_data(j) f:close() else ch = worldgen.gen_chunk(cp) end + + print(ch.cp.u,ch.cp.v) self:add_chunk(ch) return ch end diff --git a/server/server.lua b/server/server.lua index 725f7f1..e9eef30 100644 --- a/server/server.lua +++ b/server/server.lua @@ -159,10 +159,10 @@ local ntick = 0 local function tick(ntick) - if ntick % 3 == 0 then + if ntick % 30 == 0 then print("saving things...") for cp,ch in map:iter_chunks() do - print(cp) + map:save_chunk(cp) end end end -- cgit v1.2.3