From c74c2a3133ad4d1f03b83021e53fb9e8a67b3914 Mon Sep 17 00:00:00 2001 From: ubq323 Date: Mon, 6 Feb 2023 11:46:31 +0000 Subject: tick timing in main server loop, refactor, start on saving/loading chunks --- common/coords.lua | 4 ++++ common/map.lua | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'common') diff --git a/common/coords.lua b/common/coords.lua index f0ca877..111429a 100644 --- a/common/coords.lua +++ b/common/coords.lua @@ -136,6 +136,10 @@ function ChunkPos.extents(self) local brq,brr = (self.u+1)*CHUNK_SIZE -1, (self.v+1)*CHUNK_SIZE -1 return Hex:make(tlq,tlr), Hex:make(brq,brr) end +function ChunkPos.filename(self) + -- filename of chunk with that cp + return "world/c_"..self.u.."_"..self.v..".dat" +end diff --git a/common/map.lua b/common/map.lua index d32cbf3..8161f11 100644 --- a/common/map.lua +++ b/common/map.lua @@ -29,8 +29,8 @@ function Map.mark_chunk_loading(self,cp) print("marking chunk as loading",cp) self:_set_chunk(cp,false) end -function Map.unload_chunk(self,cp) - print("unloading chunk",cp) +function Map.remove_chunk(self,cp) + print("removing chunk",cp) if not self.chunks[cp.u] then return end self.chunks[cp.u][cp.v] = nil -- remove list if empty -- cgit v1.2.3