blob: 8c3701eabdacf16a3aac514e2650fe6f71bc40fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
function nerv.ChunkFile:write_chunkdata(metadata, writer)
if type(metadata) ~= "table" then
nerv.error("metadata should be a Lua table")
return
end
return self:_write_chunkdata(table.tostring(metadata), writer)
end
function nerv.ChunkFile:write_chunk(chunk)
local id = chunk.id
local type = chunk.__typename
if id == nil then
nerv_error("id of chunk %s must be specified", type)
end
self:write_chunkdata({id = id,
type = type,
info = chunk:get_info()}, chunk)
end
function nerv.ChunkFile:read_chunk(id, global_conf)
local metadata = self.metadata[id]
if metadata == nil then
nerv_error("chunk with id %s does not exist", id)
end
local chunk_type = assert(loadstring("return " .. metadata.type))()
local chunk = chunk_type(id, global_conf)
chunk:set_info(metadata.info)
chunk:read(self:get_chunkdata(id))
return chunk
end
|