• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

(转)高效调用lua函数

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

通常调用一个lua函数需要以下步骤

//1.解析函数名,将lua函数压栈
findLuaItem( "a.b.c.func" );
//2.参数压栈
lua_push()
//3.函数调用
lua_call()

最慢的是第一步解析函数名、反复查表的过程,这个过程会消耗不少时间和空间。
如果可以避开这个过程,就能提升效率。

函数总有函数指针,就算lua函数没有,也该有个handler吧。这个想法在LuaBind中得到了确认,他用一个int做lua函数的句柄。
接下来看了看lua SDK,没有发现返回lua函数句柄的API,于是想到了这个点子:用一个表保存需要调用的lua函数,表的key就是lua函数的句柄。
CustomTable[ handler ] = a.b.c.func

在C中访问lua的表,需要表索引。当时想到的只有LUA_GLOBALSINDEX,后来从同学那知道还有LUA_ENVIRONINDEX和LUA_REGISTRYINDEX。考虑了一下,觉得registry表最合适。
Lua provides a registry, a pre-defined table that can be used by any C code to store whatever Lua value it needs to store. This table is always located at pseudo-index LUA_REGISTRYINDEX. Any C library can store data into this table, but it should take care to choose keys different from those used by other libraries, to avoid collisions. Typically, you should use as key a string containing your library name or a light userdata with the address of a C object in your code.

要将lua函数保存到这个表。lua提供了在表里增加一个条目的API,luaL_ref,返回值是新条目的key,一个整数。这样就万事俱备了。
程序初始化阶段,给所有会调用的lua函数分配句柄:

1findLuaItem( “a.b.c.func" );
2int handler = luaL_ref( L , LUA_REGISTRYINDEX );

以后调用lua函数:
1//将lua函数压栈
2lua_rawgeti( L , LUA_REGISTRYINDEX , handler );
3
4lua_push();
5lua_call();

that is it

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
lua module 函数发布时间:2022-07-22
下一篇:
Lua 字符串发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap