调用函数 发生错误并处理
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 |
#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; } //lua文件错误处理函数 lua_getglobal(lua,"ferror"); //调用函数 lua_getglobal(lua,"event"); lua_pushstring(lua,"key"); //ferror此时是到-3的位置 if(lua_pcall(lua,1,1,-3) != 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_pop(lua, 1); } lua_pop(lua,1); lua_close(lua); return 0; } |
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 |
#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"); if(lua_pcall(lua,1,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_pop(lua, 1); } lua_pop(lua,1); lua_close(lua); return 0; } |
不同之处是,这样自动标记errfun在栈的位置, lua_pcall(lua,1,1,errfun) != 0 这句就不用变了
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Lua程序设计:一10/18
- ♥ Lua_调用 C++如何和Lua结合09/27
- ♥ C++_调用 Lua内容:全局表 获取&&设置10/09
- ♥ C++_调用 Lua内容:表—传递&&获取10/12
- ♥ Lua_基础 结构控制09/27
- ♥ Lua_调用 C++函数:传递数组参数10/06