C++给Lua传递表
lua文件
main.lua
1 2 3 4 5 6 7 8 9 |
function ferror(e) print("my error:"..e) return "errors..." end function evenst(e) print("c++ function") print(e) return "that is ok" end |
C++文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
#include <iostream> extern "C" { #include <lua.h> #include <luaxlib.h> #include <lualib.h> } int main() { lua_State * lua = luaL_newstate(); luaL_openlibs(lua); luaopen_base(lua); if(luaL_loadfile(lua,"main.lua")) { const std::string error = lua_tostring(lua,-1); std::cout << "lua file load error:" << error << std::endl; return -1; } if(lua_pcall(lua,0,0,0)) { const std::string error = lua_tostring(lua,-1); std::cout << "lua pcall error:" << error << std::endl; return -1; } int errfun = lua_gettop(lua); //lua文件错误处理函数 lua_getglobal(lua,"ferror"); errfun++; lua_getglobal(lua,"event"); lua_pushstring(lua,"key"); //--------新建表并传递给lua lua_newtable(lua); lua_pushstring(lua,"name"); lua_pushstring(lua,"aet"); lua_settable(lua,-3);//此时表位于-3,把数据写入表并弹出name和aet //--------- if(lua_pcall(lua,2,1,errfun) != 0)//两个参数 { /*std::cout << "call event failed:" << lua_tostring(lua,-1) <<std::endl; lua_pop(lua,1);*/ } else { //std::cout << "lua return :" << lua_tostring(lua, -1) << std::endl; //获取表 lua_getfiled(lua,-1,"id"); std::cout << "return table id is:" << static_cast<int>(lua_tonumber(lua,-1)) << std::endl; //---------- lua_pop(lua, 1); } lua_pop(lua,1); lua_close(lua); return 0; } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ lua学习记述二06/13
- ♥ Lua_基础 保留值&&变量09/27
- ♥ C++_调用 Lua函数10/09
- ♥ Lua_调用 C++函数:传递普通参数10/01
- ♥ C++_调用 Lua内容:全局表 获取&&设置10/09
- ♥ C++_调用 Lua函数:错误处理10/11