如何从C ++中的Lua函数获取返回的表?

时间:2018-06-27 13:12:10

标签: c++ lua lua-table

我试图弄清楚如何从C ++中的Lua函数获取返回的表。

我的代码:

if (lua_pcall(L, 0, 1, 0)) {
        std::cout << "ERROR : " << lua_tostring(L, -1) << std::endl;
}
vector<float> vec;

if (lua_istable(L, -1) { 

    //how to copy table to vec?
}

如果表大小未知,如何将返回的表复制到向量中?谢谢!

1 个答案:

答案 0 :(得分:0)

我想我已经找到了使用lua_next的方法。

lua_getglobal(L, name);

if (lua_pcall(L, 0, 1, 0)) {
        std::cout << "ERROR : " << lua_tostring(L, -1) << std::endl;
}
vector<float> vec;

if (lua_istable(L, -1) { 

   lua_pushvalue(L, -1);
   lua_pushnil(L);

   while (lua_next(L, -2))
   {

        if (lua_isnumber(L, -1))
        {
            vec.push_back(lua_tonumber(L, -1));
        }
        lua_pop(L, 1);
    }
    lua_pop(L, 1);
}