mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-22 07:13:45 +01:00
29 lines
823 B
Lua
29 lines
823 B
Lua
-- Texture Modifier representation for building, parsing and stringifying texture modifiers according to
|
|
-- https://github.com/minetest/minetest_docs/blob/master/doc/texture_modifiers.adoc
|
|
|
|
local function component(component_name, ...)
|
|
return assert(loadfile(modlib.mod.get_resource(modlib.modname, "minetest", "texmod", component_name .. ".lua")))(...)
|
|
end
|
|
|
|
local texmod, metatable = component"dsl"
|
|
texmod.write = component"write"
|
|
texmod.read = component("read", texmod)
|
|
texmod.calc_dims = component("calc_dims", texmod)
|
|
|
|
function metatable:__tostring()
|
|
local rope = {}
|
|
self:write(function(str) rope[#rope+1] = str end)
|
|
return table.concat(rope)
|
|
end
|
|
|
|
function texmod.read_string(str)
|
|
local i = 0
|
|
return texmod.read(function()
|
|
i = i + 1
|
|
if i > #str then return end
|
|
return str:sub(i, i)
|
|
end)
|
|
end
|
|
|
|
return texmod
|