我是 lua 新手,这可能很简单,但我想不通。我做了整夜搜索,在这里阅读了一些帖子,但并不是我想要的。我终于想出了一个我不满意的蹩脚解决方案,所以我在这里寻求帮助。
我正在尝试将 lua 嵌入到 c++ 中,并且该程序将作为 iPhone 上应用程序的一部分运行,正如我们所知,每个 iPhone 应用程序都有一个资源包,并且 lua 脚本与包一起分发。
// I printed out the bundle path:
bundle directory /var/mobile/Applications/C6CEF090-B99A-4B9B-ADAC-F0BEF46B6EA4/LuaThirdTry.app
假设我在同一个文件夹中有两个脚本文件(main.lua,mylib.lua),我将它们放在我的 Xcode 项目中,组织如下:
somefolder
|--main.lua
|--mylib.lua
main.lua 如下:
--main.lua
print(package.path)
require("mylib")
显然我想使用来自 mylib.lua 的代码,但是,我从 lua vm 得到错误:
/usr/local/share/lua/5.2/?.lua;/usr/local/share/lua/5.2/?/init.lua;/usr/local/lib/lua/5.2/?.lua;/usr/local/lib/lua/5.2/?/init.lua;./?.lua
PANIC: unprotected error in call to Lua API (...090-B99A-4B9B-ADAC-F0BEF46B6EA4/LuaThirdTry.app/test.lua:5: module 'mylib' not found:
no field package.preload['mylib']
no file '/usr/local/share/lua/5.2/mylib.lua'
no file '/usr/local/share/lua/5.2/mylib/init.lua'
no file '/usr/local/lib/lua/5.2/mylib.lua'
no file '/usr/local/lib/lua/5.2/mylib/init.lua'
no file './mylib.lua'
no file '/usr/local/lib/lua/5.2/mylib.so'
no file '/usr/local/lib/lua/5.2/loadall.so'
no file './mylib.so')
当我添加一行修改 package.path 时,它运行正常:
--main.lua modified
print(package.path)
package.path = package.path .. ";/var/mobile/Applications/C6CEF090-B99A-4B9B-ADAC-F0BEF46B6EA4/LuaThirdTry.app/?.lua"
require("mylib")
但这是绝对路径,绝对应该避免。 解决此问题的一种方法是从 c 中提供 lua 一个函数,该函数在运行时将 ipa 包中 lua 文件的完整路径返回到 lua 脚本,并将 package.path 与该路径连接起来,但我认为不应该这样做的“官方”方式。
我注意到package.path变量里面有“./?.lua”,我只是想知道为什么找不到mylib.lua,不是同一目录下的文件吗?
抱歉,问题是:如何在 iOS 环境中体面地执行“要求”?
好的,我终于找到了一个好的答案,工作完成了,感谢this answer .
所以,解决办法是在c++代码中修改路径,添加这个函数
#include <string>
int setLuaPath(lua_State* L, const char* path) {
lua_getglobal(L, "package");
lua_getfield(L, -1, "path"); // get field "path" from table at top of stack (-1)
std::string cur_path = lua_tostring(L, -1); // grab path string from top of stack
cur_path.append(";"); // do your path magic here
cur_path.append(path);
lua_pop(L, 1); // get rid of the string on the stack we just pushed on line 5
lua_pushstring(L, cur_path.c_str()); // push the new one
lua_setfield(L, -2, "path"); // set the field "path" in table at -2 with value at top of stack
lua_pop(L, 1); // get rid of package table from top of stack
return 0; // all done!
}
然后,在初始化lua_State的时候调用这个函数:
// yourfile.cpp
void runLua() {
lua_State *L;
L = luaL_newstate();
luaL_openlibs(L);
OCCaller oc_caller;
std::string bundlePath = oc_caller.get_ios_bundle_path();
bundlePath.append("/?.lua");
setLuaPath(L, bundlePath.c_str());
....
}
您的 oc_caller 类可能如下所示:
// OCCaller.h
#ifndef __LuaThirdTry__OCCaller__
#define __LuaThirdTry__OCCaller__
#include <iostream>
class OCCaller {
public:
OCCaller();
~OCCaller();
std::string get_ios_bundle_path();
};
#endif
实现文件:
// OCCaller.mm
#include "OCCaller.h"
#import <Foundation/Foundation.h>
OCCaller::OCCaller() { }
OCCaller::~OCCaller() { }
std::string OCCaller::get_ios_bundle_path() {
NSString *bundlePath = [[NSBundle mainBundle]resourcePath];
return std::string([bundlePath UTF8String]);
}
关于ios - lua require 函数在 iOS 上找不到我需要的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22492741/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |