在c++中创建lua表功能

发布于 2024-12-17 16:55:42 字数 652 浏览 3 评论 0原文

我用 C++ 编写了一个函数,用于在容器内获取“项目”。我需要将这些变量放入表中,但无论我做什么,脚本总是会覆盖表的第一个单元格。 我使用 Lua 5.0

Container *box = dynamic_cast<Container*>(item);
        if(box)
        {

            lua_newtable(L);
            int top = lua_gettop(L);
            int n = box->lcontained.size();

            for(int i = 0; i <= n; i++)
            {  

                Item* karta = box->getItem(i);
                if(karta)
                {

                    setField(L,"slot", i);
                    setField(L,"kartaid", karta->getID());

                    lua_settop(L, top);

                }

            }

        }

I've written a function in C++ which is getting 'items' inside container. I need to put those variables in table, but anything I do, script is always overwriting first cell of table.
Im using Lua 5.0

Container *box = dynamic_cast<Container*>(item);
        if(box)
        {

            lua_newtable(L);
            int top = lua_gettop(L);
            int n = box->lcontained.size();

            for(int i = 0; i <= n; i++)
            {  

                Item* karta = box->getItem(i);
                if(karta)
                {

                    setField(L,"slot", i);
                    setField(L,"kartaid", karta->getID());

                    lua_settop(L, top);

                }

            }

        }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琉璃繁缕 2024-12-24 16:55:43
setField(L,"slot", i);

请记住:Lua 使用基于 one 的索引。因此,在与 Lua 交互的 C++ 代码中,您也必须使用基于 1 的索引。所以你需要i+1

setField(L,"slot", i);

Remember: Lua used one-based indices. So in C++ code that talks to Lua, you too must use one-based indices. So you need i+1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文