I figured out how to make Lua scripts require other Lua scripts in an Android environment.
However, that solution has the package.path configuration inside the top level Lua script itself. I want to move the package.path configuration to the Java code that runs the script instead, because the package.path is specific to the Android environment, while the script could be run anywhere.
Here is what I've tried:
InputStream input getAssets().open("lua/test/pathTest.lua");
Prototype prototype = LuaC.instance.compile(input, "pathTest.lua");
Globals globals = JsePlatform.standardGlobals();
globals.load(new BaseLib());
globals.load("package.path = package.path .. ';/assets/lua/?.lua;/assets/lua/test/?.lua'");
LuaClosure c = new LuaClosure(prototype, globals);
c.call();
I've also tried a few other forms like:
globals.load(new StringReader("package.path = package.path .. \";/assets/lua/?.lua;/assets/lua/test/?.lua\""), "pathTest.lua");
Or taking the LuaValue result from the load and passing that to the LuaClosure. They all result in the script failing at the first require
, not being able to find the referenced script.
Anyone have any ideas?
*edit - If anyone knows how to set the working directory to the /assets/lua/ folder, so I can use relative paths from there in the Lua script, that would be preferable.