我正在努力改进我们在Bitfighter中为机器人玩家处理 Lua 脚本的方式。目前,每个机器人都有自己的 L 实例,我们正试图通过交换环境表让它们共享一个。请注意,机器人可能是完全不同的脚本。
我意识到这种方法在 Lua 5.2 中已被弃用,但我们目前使用的是 lua-vec,它仍然使用 Lua 5.1。游戏是用 C++ 编写的。
所以...
首先我们创建一个环境,并将其命名为:
// Create a table with room for 0 array and 1 non-array elements
lua_createtable(L, 0, 1); // -- tab
// Set the globals table to handle any requests that the
// script's environment can't
lua_pushstring(L, "__index"); // -- tab, "__index"
lua_pushvalue(L, LUA_GLOBALSINDEX); // -- tab, "__index", _G
// Set table["__index"] = _G, pops top two items from stack
lua_settable(L, -3); // -- tab
// Store the new table in the retistry for future use
lua_setfield(L, LUA_REGISTRYINDEX, name); // -- <<empty stack>>
稍后,我们加载一些 Lua 代码,并调用环境表:
luaL_loadfile(L, "luascripts.lua");
lua_getfield(L, LUA_REGISTRYINDEX, name); // -- function, table
lua_setfenv(L, -2); // -- function
然后运行加载的代码:
lua_pcall(L, 0, 0, 0);
当加载的 Lua 尝试使用基本功能时,例如 print,它会失败并出现错误:
attempt to call global 'print' (a nil value)
但是,该脚本可以执行以下操作:
__index["print"](12)
那么......为什么我们不能直接访问打印?我们缺少什么?或者有没有更好的方法在同一个 Lua 实例中运行多个脚本?