axmol/lua/cocos2dx_support/CCLuaEngine.cpp

328 lines
9.4 KiB
C++
Raw Normal View History

2012-02-01 16:55:46 +08:00
/****************************************************************************
Copyright (c) 2011 cocos2d-x.org
2012-02-01 16:55:46 +08:00
http://www.cocos2d-x.org
2012-02-01 16:55:46 +08:00
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:
2012-02-01 16:55:46 +08:00
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
2012-02-01 16:55:46 +08:00
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 "CCLuaEngine.h"
#include "tolua++.h"
extern "C" {
#include "lualib.h"
#include "lauxlib.h"
#include "tolua_fix.h"
2012-02-01 16:55:46 +08:00
}
2012-02-02 19:13:50 +08:00
#include "cocos2d.h"
2012-02-01 16:55:46 +08:00
#include "LuaCocos2d.h"
#include "CCArray.h"
2012-02-02 15:58:10 +08:00
#include "CCScheduler.h"
2012-02-01 16:55:46 +08:00
2012-02-07 15:16:15 +08:00
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
#include "Cocos2dxLuaLoader.h"
#endif
2012-02-09 14:07:11 +08:00
NS_CC_BEGIN
2012-02-01 16:55:46 +08:00
2012-02-09 14:07:11 +08:00
CCLuaEngine::~CCLuaEngine()
2012-02-07 11:43:29 +08:00
{
2012-02-09 14:07:11 +08:00
lua_close(m_state);
2012-02-07 11:43:29 +08:00
}
2012-02-09 14:07:11 +08:00
bool CCLuaEngine::init(void)
2012-02-01 16:55:46 +08:00
{
m_state = lua_open();
luaL_openlibs(m_state);
tolua_Cocos2d_open(m_state);
tolua_prepare_ccobject_table(m_state);
2012-02-07 15:16:15 +08:00
#if (CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID)
addLuaLoader(loader_Android);
#endif
2012-02-09 14:07:11 +08:00
return true;
2012-02-01 16:55:46 +08:00
}
2012-02-09 14:07:11 +08:00
CCLuaEngine* CCLuaEngine::engine()
2012-02-01 16:55:46 +08:00
{
2012-02-09 14:07:11 +08:00
CCLuaEngine* pEngine = new CCLuaEngine();
pEngine->init();
pEngine->autorelease();
return pEngine;
2012-02-01 16:55:46 +08:00
}
2012-02-07 11:43:29 +08:00
void CCLuaEngine::removeCCObjectByID(int nLuaID)
2012-02-01 16:55:46 +08:00
{
2012-02-07 11:43:29 +08:00
tolua_remove_ccobject_by_refid(m_state, nLuaID);
2012-02-01 16:55:46 +08:00
}
2012-02-07 11:43:29 +08:00
void CCLuaEngine::removeLuaHandler(int nHandler)
2012-02-01 16:55:46 +08:00
{
2012-02-07 11:43:29 +08:00
tolua_remove_function_by_refid(m_state, nHandler);
2012-02-01 16:55:46 +08:00
}
void CCLuaEngine::addSearchPath(const char* path)
{
lua_getglobal(m_state, "package"); /* stack: package */
lua_getfield(m_state, -1, "path"); /* get package.path, stack: package path */
const char* cur_path = lua_tostring(m_state, -1);
lua_pop(m_state, 1); /* stack: package */
lua_pushfstring(m_state, "%s;%s/?.lua", cur_path, path); /* stack: package newpath */
lua_setfield(m_state, -2, "path"); /* package.path = newpath, stack: package */
lua_pop(m_state, 1); /* stack: - */
}
2012-02-02 19:00:43 +08:00
int CCLuaEngine::executeString(const char *codes)
{
int nRet = luaL_dostring(m_state, codes);
lua_gc(m_state, LUA_GCCOLLECT, 0);
2012-02-02 19:00:43 +08:00
if (nRet != 0)
{
CCLOG("[LUA ERROR] %s", lua_tostring(m_state, -1));
lua_pop(m_state, 1);
return nRet;
}
return 0;
}
2012-02-01 16:55:46 +08:00
int CCLuaEngine::executeScriptFile(const char* filename)
{
int nRet = luaL_dofile(m_state, filename);
// lua_gc(m_state, LUA_GCCOLLECT, 0);
2012-02-01 16:55:46 +08:00
if (nRet != 0)
{
CCLOG("[LUA ERROR] %s", lua_tostring(m_state, -1));
lua_pop(m_state, 1);
return nRet;
}
return 0;
}
2012-02-09 14:07:11 +08:00
int CCLuaEngine::executeGlobalFunction(const char* functionName)
2012-02-01 16:55:46 +08:00
{
2012-02-09 14:07:11 +08:00
lua_getglobal(m_state, functionName); /* query function by name, stack: function */
2012-02-01 16:55:46 +08:00
if (!lua_isfunction(m_state, -1))
{
2012-02-09 14:07:11 +08:00
CCLOG("[LUA ERROR] name '%s' does not represent a Lua function", functionName);
2012-02-01 16:55:46 +08:00
lua_pop(m_state, 1);
return 0;
}
2012-02-01 16:55:46 +08:00
int error = lua_pcall(m_state, 0, 1, 0); /* call function, stack: ret */
// lua_gc(m_state, LUA_GCCOLLECT, 0);
2012-02-01 16:55:46 +08:00
if (error)
{
CCLOG("[LUA ERROR] %s", lua_tostring(m_state, - 1));
lua_pop(m_state, 1); // clean error message
return 0;
}
2012-02-01 16:55:46 +08:00
// get return value
if (!lua_isnumber(m_state, -1))
{
lua_pop(m_state, 1);
return 0;
}
2012-02-01 16:55:46 +08:00
int ret = lua_tointeger(m_state, -1);
lua_pop(m_state, 1); /* stack: - */
return ret;
}
int CCLuaEngine::executeFunctionByHandler(int nHandler, int numArgs)
2012-02-01 16:55:46 +08:00
{
if (pushFunctionByHandler(nHandler))
2012-02-01 16:55:46 +08:00
{
if (numArgs > 0)
2012-02-01 16:55:46 +08:00
{
lua_insert(m_state, -(numArgs + 1)); /* stack: ... func arg1 arg2 ... */
2012-02-01 16:55:46 +08:00
}
int error = 0;
// try
// {
error = lua_pcall(m_state, numArgs, 1, 0); /* stack: ... ret */
// }
// catch (exception& e)
// {
// CCLOG("[LUA ERROR] lua_pcall(%d) catch C++ exception: %s", nHandler, e.what());
// lua_settop(m_state, 0);
// return 0;
// }
// catch (...)
// {
// CCLOG("[LUA ERROR] lua_pcall(%d) catch C++ unknown exception.", nHandler);
// lua_settop(m_state, 0);
// return 0;
// }
if (error)
{
CCLOG("[LUA ERROR] %s", lua_tostring(m_state, - 1));
lua_settop(m_state, 0);
return 0;
}
// get return value
int ret = 0;
if (lua_isnumber(m_state, -1))
{
ret = lua_tointeger(m_state, -1);
}
else if (lua_isboolean(m_state, -1))
{
ret = lua_toboolean(m_state, -1);
}
lua_pop(m_state, 1);
return ret;
2012-02-01 16:55:46 +08:00
}
else
2012-02-01 16:55:46 +08:00
{
return 0;
}
}
2012-02-07 11:43:29 +08:00
int CCLuaEngine::executeFunctionWithIntegerData(int nHandler, int data)
2012-02-01 16:55:46 +08:00
{
lua_pushinteger(m_state, data);
return executeFunctionByHandler(nHandler, 1);
2012-02-01 16:55:46 +08:00
}
2012-02-07 11:43:29 +08:00
int CCLuaEngine::executeFunctionWithFloatData(int nHandler, float data)
2012-02-01 16:55:46 +08:00
{
lua_pushnumber(m_state, data);
return executeFunctionByHandler(nHandler, 1);
2012-02-01 16:55:46 +08:00
}
2012-02-07 11:43:29 +08:00
int CCLuaEngine::executeFunctionWithBooleanData(int nHandler, bool data)
2012-02-01 16:55:46 +08:00
{
lua_pushboolean(m_state, data);
return executeFunctionByHandler(nHandler, 1);
}
int CCLuaEngine::executeFunctionWithCCObject(int nHandler, CCObject* pObject, const char* typeName)
{
tolua_pushusertype_ccobject(m_state, pObject->m_uID, &pObject->m_nLuaID, pObject, typeName);
return executeFunctionByHandler(nHandler, 1);
}
int CCLuaEngine::pushIntegerToLuaStack(int data)
{
lua_pushinteger(m_state, data);
return lua_gettop(m_state);
}
int CCLuaEngine::pushFloatToLuaStack(int data)
{
lua_pushnumber(m_state, data);
return lua_gettop(m_state);
}
int CCLuaEngine::pushBooleanToLuaStack(int data)
{
lua_pushboolean(m_state, data);
return lua_gettop(m_state);
}
int CCLuaEngine::pushCCObjectToLuaStack(CCObject* pObject, const char* typeName)
{
tolua_pushusertype_ccobject(m_state, pObject->m_uID, &pObject->m_nLuaID, pObject, typeName);
return lua_gettop(m_state);
2012-02-01 16:55:46 +08:00
}
// functions for excute touch event
2012-02-07 11:43:29 +08:00
int CCLuaEngine::executeTouchEvent(int nHandler, int eventType, CCTouch *pTouch)
2012-02-01 16:55:46 +08:00
{
2012-03-20 16:10:12 +08:00
CCPoint pt = CCDirector::sharedDirector()->convertToGL(pTouch->locationInView());
2012-02-01 16:55:46 +08:00
lua_pushinteger(m_state, eventType);
lua_pushnumber(m_state, pt.x);
lua_pushnumber(m_state, pt.y);
return executeFunctionByHandler(nHandler, 3);
2012-02-01 16:55:46 +08:00
}
2012-02-07 11:43:29 +08:00
int CCLuaEngine::executeTouchesEvent(int nHandler, int eventType, CCSet *pTouches)
2012-02-01 16:55:46 +08:00
{
lua_pushinteger(m_state, eventType);
lua_newtable(m_state);
CCDirector* pDirector = CCDirector::sharedDirector();
2012-02-01 16:55:46 +08:00
CCSetIterator it = pTouches->begin();
CCTouch* pTouch;
2012-02-01 16:55:46 +08:00
int n = 1;
while (it != pTouches->end())
{
pTouch = (CCTouch*)*it;
2012-03-20 16:10:12 +08:00
CCPoint pt = pDirector->convertToGL(pTouch->locationInView());
lua_pushnumber(m_state, pt.x);
2012-02-01 16:55:46 +08:00
lua_rawseti(m_state, -2, n++);
lua_pushnumber(m_state, pt.y);
2012-02-01 16:55:46 +08:00
lua_rawseti(m_state, -2, n++);
++it;
}
return executeFunctionByHandler(nHandler, 2);
2012-02-01 16:55:46 +08:00
}
2012-02-07 11:43:29 +08:00
int CCLuaEngine::executeSchedule(int nHandler, ccTime dt)
2012-02-01 16:55:46 +08:00
{
2012-02-07 11:43:29 +08:00
return executeFunctionWithFloatData(nHandler, dt);
2012-02-01 16:55:46 +08:00
}
2012-02-07 11:43:29 +08:00
void CCLuaEngine::addLuaLoader(lua_CFunction func)
{
2012-02-09 14:07:11 +08:00
if (!func) return;
2012-02-07 11:43:29 +08:00
// stack content after the invoking of the function
// get loader table
lua_getglobal(m_state, "package"); // package
lua_getfield(m_state, -1, "loaders"); // package, loaders
2012-02-07 11:43:29 +08:00
// insert loader into index 2
lua_pushcfunction(m_state, func); // package, loaders, func
for (int i = lua_objlen(m_state, -2) + 1; i > 2; --i)
{
lua_rawgeti(m_state, -2, i - 1); // package, loaders, func, function
// we call lua_rawgeti, so the loader table now is at -3
lua_rawseti(m_state, -3, i); // package, loaders, func
}
lua_rawseti(m_state, -2, 2); // package, loaders
2012-02-07 11:43:29 +08:00
// set loaders into package
lua_setfield(m_state, -2, "loaders"); // package
2012-02-07 11:43:29 +08:00
lua_pop(m_state, 1);
}
bool CCLuaEngine::pushFunctionByHandler(int nHandler)
{
lua_rawgeti(m_state, LUA_REGISTRYINDEX, nHandler); /* stack: ... func */
if (!lua_isfunction(m_state, -1))
{
CCLOG("[LUA ERROR] function refid '%d' does not reference a Lua function", nHandler);
lua_pop(m_state, 1);
return false;
}
return true;
}
2012-02-09 14:07:11 +08:00
NS_CC_END