调用函数&&错误处理
lua文件
main.lua
1 2 3 |
function event() print("C++ test") 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 |
#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_getglobal(lua,"event"); //可以用gettop来测试有没有调用成功 std::cout << lua_gettop(lua) << std::endl; if(lua_pcall(lua,0,0,0) != 0) { std::cout << "call event failed:" << lua_tostring(lua,-1) <<std::endl; lua_pop(lua,1); } std::cout << lua_gettop(lua) << std::endl; lua_close(lua); return 0; } |
传递参数&&接收返回值
lua文件
main.lua
1 2 3 4 5 |
function event(e) print("C++ test") print(e) return "isok" 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 |
#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_getglobal(lua,"event"); //传递参数 lua_pushstring(lua,"key"); //可以用gettop来测试有没有调用成功 std::cout << lua_gettop(lua) << std::endl; //第二个参数传递了1个参数,第三个参数接收1个返回值 if(lua_pcall(lua,1,1,0) != 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; std::cout << lua_gettop(lua) << std::endl; lua_close(lua); return 0; } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Lua_基础 类型&&值09/26
- ♥ Lua_调用 C++函数:传递数组参数10/06
- ♥ Lua_调用 C++如何和Lua结合09/27
- ♥ Lua_调用 C++函数:获取返回值10/09
- ♥ lua学习记述二06/13
- ♥ Lua_调用 C++程序里的函数,给Lua调用10/01