From d820a6bfd807b6d181a858f3ea8a0d0f5c2b1879 Mon Sep 17 00:00:00 2001 From: PilzAdam Date: Mon, 9 Sep 2013 22:50:25 +0200 Subject: Add Settings interface for Lua --- doc/lua_api.txt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'doc/lua_api.txt') diff --git a/doc/lua_api.txt b/doc/lua_api.txt index f593b0db8..ebd70ea6e 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -1069,6 +1069,8 @@ minetest.pos_to_string({x=X,y=Y,z=Z}) -> "(X,Y,Z)" minetest.string_to_pos(string) -> position ^ Same but in reverse ^ escapes characters [ ] \ , ; that can not be used in formspecs +minetest.is_yes(string) +^ returns whether string can be interpreted as yes minetest namespace reference ----------------------------- @@ -1737,6 +1739,18 @@ methods: ^ from (minx,miny,minz) to (maxx,maxy,maxz) in the order of [z [y [x]]] - iterp(minp, maxp): same as above, except takes a vector +Settings: An interface to read config files in the format of minetest.conf +- Can be created via Settings(filename) +methods: +- get(key) -> value +- get_bool(key) -> boolean +- set(key, value) +- remove(key) -> success +- get_names() -> {key1,...} +- write() -> success + ^ write changes to file +- to_table() -> {[key1]=value1,...} + Mapgen objects --------------- A mapgen object is a construct used in map generation. Mapgen objects can be used by an on_generate -- cgit v1.2.3