如何从 C 结构创建 Lua table

How to create Lua table from C structure

我正在尝试从 C 创建一个 Lua table。我遇到了一个问题: 我正在尝试使用 C 创建 Lua table。 table 应该是这样的:

CharList = {
    [1] = {name = "Kyra", is_monster = false}
    [2] = {name = "Saya", is_monster = false}
    [3] = {name = "Imp", is_monster = true}
}

但是这样做的例子多种多样,我似乎无法让它发挥作用。 我最后一次失败的尝试:

lua_createtable(L, cl->num_chars, 2);
for(i=0;i<cl->num_chars;i++)
{
        character_t *c = &cl->list[i];

        lua_pushstring(L, c->name);
        lua_setfield(L, -2, "name");

        lua_pushboolean(L, c->is_monster);
        lua_setfield(L, -2, "is_monster");

        lua_settable(L, -3);
}
lua_setglobal(L, "charList"); 

您需要创建子表:

character_t *c = &cl->list[i];
lua_pushinteger(L, i+1);
lua_createtable(L, 0, 2);
...