android 和 ios 读取lua 的搜索路径(只是拷贝他人的,没有测试过)

在lua语言中,require语句搜寻模块有一个内置的顺序,并且可以通过package.path来维护模块的搜索策略。
但是在cocos2d-x中,不是这样!

cocos2d-x重载了原本的lua的require加载方式。(见Cocos2dxLuaLoader.cpp )
Cocos2dxLuaLoader逻辑的生效是在package.path之前,并且package.path在安卓上则不能很好的处理加载pkg包内部文件的问题。
所以在实际使用中,我们只使用cocos2d-x重载的方法就可以了。

怎么做呢?

Cocos2dxLuaLoader内部是使用CCFileUtils::getFileData()来加载lua代码的。
所以我们要想添加自己的lua脚本搜索路径,那么只要调用CCFileUtils::addSearchPath()就可以了。


以下C++代码实现了在iOS和android平台上,程序先从下载路径下的scripts文件夹寻找lua文件,再从程序内置资源路径下的scripts文件夹寻找lua文件的目标。

#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS)
    std::string downloadedScriptPath = CCFileUtils::sharedFileUtils()->getWritablePath() + "scripts";
    CCFileUtils::sharedFileUtils()->addSearchPath(downloadedScriptPath.c_str());
    std::string scriptPath = CCFileUtils::sharedFileUtils()->fullPathForFilename("scripts");
    CCFileUtils::sharedFileUtils()->addSearchPath(scriptPath.c_str());
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
    std::string downloadedScriptPath = CCFileUtils::sharedFileUtils()->getWritablePath() + "/scripts";
    CCFileUtils::sharedFileUtils()->addSearchPath(downloadedScriptPath.c_str());
    CCFileUtils::sharedFileUtils()->addSearchPath("assets/scripts");
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
    //TODO
#else
    _ERROR_
#endif

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。