aboutsummaryrefslogtreecommitdiff
path: root/io/init.lua
blob: dc1c6c3fed8e4ecd17ea9fafb01873a5f46308a3 (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.ParamFile: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.ParamFile:write_param(param)
    local id = param.id
    local type = param.__typename
    if id == nil then
        nerv_error("id of param %s must be specified", type)
    end
    self:write_chunkdata({id = id,
                            type = type,
                            info = param:get_info()}, param)
end

function nerv.ParamFile:read_param(id)
    local metadata = self.metadata[id]
    if metadata == nil then
        nerv_error("param with id %s does not exist", id)
    end
    local param = assert(loadstring("return " ..
                    metadata.type .. "(\"" .. id .. "\")"))()
    param:set_info(metadata.info)
    param:read(self:get_chunkdata(id))
    return param
end