MCPcopy Create free account
hub / github.com/DFHack/dfhack / dfhack_matinfo_toString

Function dfhack_matinfo_toString

library/LuaApi.cpp:545–554  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

543}
544
545static int dfhack_matinfo_toString(lua_State *state)
546{
547 MaterialInfo info;
548 decode_matinfo(state, &info);
549
550 lua_settop(state, 3);
551 auto str = info.toString(luaL_optint(state, 2, 10015), lua_toboolean(state, 3));
552 lua_pushstring(state, str.c_str());
553 return 1;
554}
555
556static int dfhack_matinfo_getCraftClass(lua_State *state)
557{

Callers

nothing calls this directly

Calls 6

decode_matinfoFunction · 0.85
lua_settopFunction · 0.85
lua_tobooleanFunction · 0.85
lua_pushstringFunction · 0.85
c_strMethod · 0.80
toStringMethod · 0.45

Tested by

no test coverage detected