gpt4 book ai didi

c++ - 从 LUA 脚本调用 C++ 类函数

转载 作者:太空宇宙 更新时间:2023-11-04 12:50:13 25 4
gpt4 key购买 nike

我正在尝试学习如何使用 lua/luabridge 来调用类的成员函数,但我遇到了一些麻烦:

这是简单的测试类:

class proxy
{
public:
void doSomething(char* str)
{
std::cout << "doDomething called!: " << str << std::endl;
}
};

以及使用它的代码:

int main()
{
lua_State* L = luaL_newstate();
luaL_openlibs(L);
proxy p;
luabridge::getGlobalNamespace(L)
.beginClass<proxy>("proxy")
.addFunction("doSomething", &proxy::doSomething)
.endClass();

std::string filename("test.lua");
if (luaL_dofile(L, filename.c_str()) || lua_pcall(L, 0, 0, 0)) {
std::cout << "Error: script not loaded (" << filename << ")" << std::endl;
L = 0;
return -1;
}

return 0;
}

最后,lua 脚本:

proxy:doSomething("calling a function!")

这里可能有几个错误,但我特别想做的是从 lua 脚本中调用 proxy 实例的成员函数,就好像我在调用:

p.doSomething("calling a function!");

我知道有很多类似的问题,但到目前为止我还没有找到直接回答我问题的问题。

目前脚本甚至没有加载/执行,所以我有点困惑。

最佳答案

事实证明,我不得不将代码更改为:

int main()
{
lua_State* L = luaL_newstate();
luaL_openlibs(L);
proxy p;
luabridge::getGlobalNamespace(L)
.beginClass<proxy>("proxy")
.addFunction("doSomething", &proxy::doSomething)
.endClass();

std::string filename("test.lua");
if (luaL_dofile(L, filename.c_str())) {
std::cout << "Error: script not loaded (" << filename << ")" << std::endl;
L = 0;
return -1;
}
// new code
auto doSomething = luabridge::getGlobal(L, "something");
doSomething(p);
return 0;
}

并更改脚本:

function something(e)
e:doSomething("something")
end

这实际上对我来说效果更好。该脚本无法运行,因为 lua 堆栈对代理实例一无所知,我不得不直接调用一个 lua 函数,该函数又调用类成员函数。

我不知道是否有更简单的方法,但这对我来说已经足够了。

关于c++ - 从 LUA 脚本调用 C++ 类函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49415317/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com