Skip to content

Commit dd5c451

Browse files
committedSep 10, 2013
Allow non-string arguments for minetest.is_yes()
1 parent d820a6b commit dd5c451

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed
 

‎doc/lua_api.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1069,8 +1069,8 @@ minetest.pos_to_string({x=X,y=Y,z=Z}) -> "(X,Y,Z)"
10691069
minetest.string_to_pos(string) -> position
10701070
^ Same but in reverse
10711071
^ escapes characters [ ] \ , ; that can not be used in formspecs
1072-
minetest.is_yes(string)
1073-
^ returns whether string can be interpreted as yes
1072+
minetest.is_yes(arg)
1073+
^ returns whether arg can be interpreted as yes
10741074

10751075
minetest namespace reference
10761076
-----------------------------

‎doc/menu_lua_api.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ string:split(separator)
182182
^ eg. string:split("a,b", ",") == {"a","b"}
183183
string:trim()
184184
^ eg. string.trim("\n \t\tfoo bar\t ") == "foo bar"
185-
minetest.is_yes(string)
186-
^ returns whether string can be interpreted as yes
185+
minetest.is_yes(arg)
186+
^ returns whether arg can be interpreted as yes
187187

188188
Class reference
189189
----------------

‎src/script/lua_api/l_util.cpp

+8-2
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,17 @@ int ModApiUtil::l_get_password_hash(lua_State *L)
220220
return 1;
221221
}
222222

223-
// is_yes(string)
223+
// is_yes(arg)
224224
int ModApiUtil::l_is_yes(lua_State *L)
225225
{
226226
NO_MAP_LOCK_REQUIRED;
227-
std::string str = luaL_checkstring(L, 1);
227+
228+
lua_getglobal(L, "tostring"); // function to be called
229+
lua_pushvalue(L, 1); // 1st argument
230+
lua_call(L, 1, 1); // execute function
231+
std::string str(lua_tostring(L, -1)); // get result
232+
lua_pop(L, 1);
233+
228234
bool yes = is_yes(str);
229235
lua_pushboolean(L, yes);
230236
return 1;

‎src/script/lua_api/l_util.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class ModApiUtil : public ModApiBase {
7171
// get_password_hash(name, raw_password)
7272
static int l_get_password_hash(lua_State *L);
7373

74-
// is_yes(string)
74+
// is_yes(arg)
7575
static int l_is_yes(lua_State *L);
7676

7777
public:

0 commit comments

Comments
 (0)
Please sign in to comment.