那么,将 C 函数作为函数成员推送或将 C 函数注册为 lua 函数没有问题lua_register(L, lua_func_name, c_func);
但是如何告诉 lua 我想通过luaFoo()作为 C 中“foober”的函数回调参数传递什么?lua_pushcfunction - 推送 C 函数,lua_pushstring 只推送纯字符串,所以回调字段变成了字符串,而不是函数。
卢阿代码:
CALLBACKS = {};
FOO = 0;
function luaFoo()
FOO = FOO + 1;
end;
function addCallback(_name, _callback)
CALLBACKS[_name] = _callback;
end;
function doCallback(_name)
CALLBACKS[_name]();
end;
C代码:
static int c_foo(lua_State* l)
{
printf("FOO\n");
return 0;
}
/*load lua script*/;
lua_State* l = /*get lua state*/;
lua_getglobal(l, "addCallback");
lua_pushstring(l, "foober");
//What push for luaFoo()
lua_pushcfunction(l, c_foo);
lua_call(l, 2, 0);
lua_getglobal(l, "doCallback");
lua_pushstring(l, "foober");
lua_call(l, 1, 0);
类似 - 如果我得到已经注册lua_register的 C 函数,如何将它们作为回调参数从 C 传递。所以我们注册c_foo => c_foo 作为 lua 函数存在,如何告诉我们想要传递“c_foo”作为回调函数参数。