获取全局表
lua文件
main.lua
1 2 3 4 |
conf = { titlename = "wangxu", hights = 1090 } |
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 |
#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_getgloble(lua,"conf"); lua_getfiled(lua,-1,"titlename"); std::cout << lua_tostring(lua,-1) << std::endl; lua_pop(lua,1); lua_getfiled(lua,-1,"hights"); std::cout << lua_tonumber(lua,-1) << std::endl; lua_pop(lua,1); lua_close(lua); return 0; } |
设置全局变量
lua文件
main.lua
1 |
print("C++ set gobal table:"..ssss) |
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 |
#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); //在打开文件之前,给lua文件添加表 lua_newtable(lua); //添加key-value lua_pushstring(lua,"helllolll"); lua_pushstring(lua,"worrrld"); //将刚压入栈的数据写入表,并弹出栈 lua_settable(lua,-3); //新添加数据 lua_pushstring(lua,"agess"); lua_pushnumber(lua,26); lua_settable(lua,-3); //把栈中的表设置为全局变量 lua_setglobal(lua,"person"); 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_close(lua); return 0; } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Lua_调用 C++函数:传递普通参数10/01
- ♥ C++_调用 Lua函数10/09
- ♥ Lua_调用 C++函数:获取返回值10/09
- ♥ Lua程序设计:一10/18
- ♥ Lua程序设计:四02/15
- ♥ C++_调用 Lua内容:全局变量 获取&&设置10/09