2011-09-05 16:14:51 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2011 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
#include "Cocos2dxLuaLoader.h"
|
|
|
|
#include <string>
|
2013-04-25 21:29:31 +08:00
|
|
|
#include <algorithm>
|
2011-09-05 16:14:51 +08:00
|
|
|
|
2011-09-05 17:13:52 +08:00
|
|
|
using namespace cocos2d;
|
|
|
|
|
2011-09-05 16:14:51 +08:00
|
|
|
extern "C"
|
|
|
|
{
|
2013-04-26 12:12:19 +08:00
|
|
|
int cocos2dx_lua_loader(lua_State *L)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
std::string filename(luaL_checkstring(L, 1));
|
2013-04-27 09:32:46 +08:00
|
|
|
size_t pos = filename.rfind(".lua");
|
2013-04-25 21:29:31 +08:00
|
|
|
if (pos != std::string::npos)
|
|
|
|
{
|
|
|
|
filename = filename.substr(0, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
pos = filename.find_first_of(".");
|
|
|
|
while (pos != std::string::npos)
|
|
|
|
{
|
|
|
|
filename.replace(pos, 1, "/");
|
|
|
|
pos = filename.find_first_of(".");
|
|
|
|
}
|
2012-04-19 14:35:52 +08:00
|
|
|
filename.append(".lua");
|
2013-04-25 21:29:31 +08:00
|
|
|
|
|
|
|
unsigned long codeBufferSize = 0;
|
2013-07-12 06:24:23 +08:00
|
|
|
unsigned char* codeBuffer = FileUtils::getInstance()->getFileData(filename.c_str(), "rb", &codeBufferSize);
|
2013-04-25 21:29:31 +08:00
|
|
|
|
|
|
|
if (codeBuffer)
|
|
|
|
{
|
2013-04-26 12:12:19 +08:00
|
|
|
if (luaL_loadbuffer(L, (char*)codeBuffer, codeBufferSize, filename.c_str()) != 0)
|
2012-04-19 14:35:52 +08:00
|
|
|
{
|
|
|
|
luaL_error(L, "error loading module %s from file %s :\n\t%s",
|
|
|
|
lua_tostring(L, 1), filename.c_str(), lua_tostring(L, -1));
|
|
|
|
}
|
2013-04-25 21:29:31 +08:00
|
|
|
delete []codeBuffer;
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-07-24 06:20:22 +08:00
|
|
|
log("can not get file data of %s", filename.c_str());
|
2012-04-19 14:35:52 +08:00
|
|
|
}
|
2013-04-25 21:29:31 +08:00
|
|
|
|
2012-04-19 14:35:52 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2013-04-25 21:29:31 +08:00
|
|
|
}
|