mirror of https://github.com/axmolengine/axmol.git
778 lines
22 KiB
C++
778 lines
22 KiB
C++
/****************************************************************************
|
|
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 "CCLuaEngine.h"
|
|
#include "cocos2d.h"
|
|
#include "cocoa/CCArray.h"
|
|
#include "CCScheduler.h"
|
|
#include "LuaScriptHandlerMgr.h"
|
|
#include "GUI/CCControlExtension/CCControl.h"
|
|
#include "LuaOpengl.h"
|
|
|
|
NS_CC_BEGIN
|
|
|
|
LuaEngine* LuaEngine::_defaultEngine = NULL;
|
|
|
|
LuaEngine* LuaEngine::getInstance(void)
|
|
{
|
|
if (!_defaultEngine)
|
|
{
|
|
_defaultEngine = new LuaEngine();
|
|
_defaultEngine->init();
|
|
}
|
|
return _defaultEngine;
|
|
}
|
|
|
|
LuaEngine::~LuaEngine(void)
|
|
{
|
|
CC_SAFE_RELEASE(_stack);
|
|
_defaultEngine = NULL;
|
|
}
|
|
|
|
bool LuaEngine::init(void)
|
|
{
|
|
_stack = LuaStack::create();
|
|
_stack->retain();
|
|
extendLuaObject();
|
|
executeScriptFile("Deprecated.lua");
|
|
return true;
|
|
}
|
|
|
|
void LuaEngine::addSearchPath(const char* path)
|
|
{
|
|
_stack->addSearchPath(path);
|
|
}
|
|
|
|
void LuaEngine::addLuaLoader(lua_CFunction func)
|
|
{
|
|
_stack->addLuaLoader(func);
|
|
}
|
|
|
|
void LuaEngine::removeScriptObjectByObject(Object* pObj)
|
|
{
|
|
_stack->removeScriptObjectByObject(pObj);
|
|
ScriptHandlerMgr::getInstance()->removeObjectAllHandlers(pObj);
|
|
}
|
|
|
|
void LuaEngine::removeScriptHandler(int nHandler)
|
|
{
|
|
_stack->removeScriptHandler(nHandler);
|
|
}
|
|
|
|
int LuaEngine::executeString(const char *codes)
|
|
{
|
|
int ret = _stack->executeString(codes);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::executeScriptFile(const char* filename)
|
|
{
|
|
int ret = _stack->executeScriptFile(filename);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::executeGlobalFunction(const char* functionName)
|
|
{
|
|
int ret = _stack->executeGlobalFunction(functionName);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::executeNodeEvent(Node* pNode, int nAction)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int LuaEngine::executeMenuItemEvent(MenuItem* pMenuItem)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int LuaEngine::executeNotificationEvent(NotificationCenter* pNotificationCenter, const char* pszName)
|
|
{
|
|
int nHandler = pNotificationCenter->getObserverHandlerByName(pszName);
|
|
if (!nHandler) return 0;
|
|
|
|
_stack->pushString(pszName);
|
|
int ret = _stack->executeFunctionByHandler(nHandler, 1);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::executeCallFuncActionEvent(CallFunc* pAction, Object* pTarget/* = NULL*/)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int LuaEngine::executeSchedule(int nHandler, float dt, Node* pNode/* = NULL*/)
|
|
{
|
|
if (!nHandler) return 0;
|
|
_stack->pushFloat(dt);
|
|
int ret = _stack->executeFunctionByHandler(nHandler, 1);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::executeLayerTouchEvent(Layer* pLayer, int eventType, Touch *pTouch)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int LuaEngine::executeLayerTouchesEvent(Layer* pLayer, int eventType, Set *pTouches)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int LuaEngine::executeLayerKeypadEvent(Layer* pLayer, int eventType)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int LuaEngine::executeAccelerometerEvent(Layer* pLayer, Acceleration* pAccelerationValue)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int LuaEngine::executeEvent(int nHandler, const char* pEventName, Object* pEventSource /* = NULL*/, const char* pEventSourceClassName /* = NULL*/)
|
|
{
|
|
_stack->pushString(pEventName);
|
|
if (pEventSource)
|
|
{
|
|
_stack->pushObject(pEventSource, pEventSourceClassName ? pEventSourceClassName : "CCObject");
|
|
}
|
|
int ret = _stack->executeFunctionByHandler(nHandler, pEventSource ? 2 : 1);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
bool LuaEngine::handleAssert(const char *msg)
|
|
{
|
|
bool ret = _stack->handleAssert(msg);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::reallocateScriptHandler(int nHandler)
|
|
{
|
|
int nRet = _stack->reallocateScriptHandler(nHandler);
|
|
_stack->clean();
|
|
return nRet;
|
|
}
|
|
|
|
int LuaEngine::sendEvent(ScriptEvent* evt)
|
|
{
|
|
if (NULL == evt)
|
|
return 0;
|
|
|
|
switch (evt->type)
|
|
{
|
|
case kNodeEvent:
|
|
{
|
|
return handleNodeEvent(evt->data);
|
|
}
|
|
break;
|
|
case kMenuClickedEvent:
|
|
{
|
|
return handleMenuClickedEvent(evt->data);
|
|
}
|
|
break;
|
|
case kNotificationEvent:
|
|
{
|
|
return handleNotificationEvent(evt->data);
|
|
}
|
|
break;
|
|
case kCallFuncEvent:
|
|
{
|
|
return handleCallFuncActionEvent(evt->data);
|
|
}
|
|
break;
|
|
case kScheduleEvent:
|
|
{
|
|
return handleScheduler(evt->data);
|
|
}
|
|
break;
|
|
case kTouchEvent:
|
|
{
|
|
return handleTouchEvent(evt->data);
|
|
}
|
|
break;
|
|
case kTouchesEvent:
|
|
{
|
|
return handleTouchesEvent(evt->data);
|
|
}
|
|
break;
|
|
case kKeypadEvent:
|
|
{
|
|
return handleKeypadEvent(evt->data);
|
|
}
|
|
break;
|
|
case kAccelerometerEvent:
|
|
{
|
|
return handleAccelerometerEvent(evt->data);
|
|
}
|
|
break;
|
|
case kCommonEvent:
|
|
{
|
|
return handleCommonEvent(evt->data);
|
|
}
|
|
break;
|
|
case kControlEvent:
|
|
{
|
|
return handlerControlEvent(evt->data);
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int LuaEngine::handleNodeEvent(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
BasicScriptData* basicScriptData = (BasicScriptData*)data;
|
|
if (NULL == basicScriptData->nativeObject || NULL == basicScriptData->value)
|
|
return 0;
|
|
|
|
int handler = ScriptHandlerMgr::getInstance()->getObjectHandler(basicScriptData->nativeObject, ScriptHandlerMgr::kNodeHandler);
|
|
|
|
if (0 == handler)
|
|
return 0;
|
|
|
|
int action = *((int*)(basicScriptData->value));
|
|
switch (action)
|
|
{
|
|
case kNodeOnEnter:
|
|
_stack->pushString("enter");
|
|
break;
|
|
|
|
case kNodeOnExit:
|
|
_stack->pushString("exit");
|
|
break;
|
|
|
|
case kNodeOnEnterTransitionDidFinish:
|
|
_stack->pushString("enterTransitionFinish");
|
|
break;
|
|
|
|
case kNodeOnExitTransitionDidStart:
|
|
_stack->pushString("exitTransitionStart");
|
|
break;
|
|
|
|
case kNodeOnCleanup:
|
|
_stack->pushString("cleanup");
|
|
break;
|
|
|
|
default:
|
|
return 0;
|
|
}
|
|
int ret = _stack->executeFunctionByHandler(handler, 1);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleMenuClickedEvent(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
BasicScriptData* basicScriptData = (BasicScriptData*)data;
|
|
if (NULL == basicScriptData->nativeObject)
|
|
return 0;
|
|
|
|
MenuItem* menuItem = static_cast<MenuItem*>(basicScriptData->nativeObject);
|
|
|
|
int handler = ScriptHandlerMgr::getInstance()->getObjectHandler(menuItem, ScriptHandlerMgr::kMenuClickHandler);
|
|
if (0 == handler)
|
|
return 0;
|
|
|
|
_stack->pushInt(menuItem->getTag());
|
|
_stack->pushObject(menuItem, "CCMenuItem");
|
|
int ret = _stack->executeFunctionByHandler(handler, 2);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleNotificationEvent(void* data)
|
|
{
|
|
if ( NULL == data)
|
|
return 0;
|
|
|
|
BasicScriptData* basicScriptData = (BasicScriptData*)(data);
|
|
if (NULL == basicScriptData->nativeObject ||NULL == basicScriptData->value)
|
|
return 0;
|
|
|
|
NotificationCenter* center = static_cast<NotificationCenter*>(basicScriptData->nativeObject);
|
|
|
|
int handler = center->getObserverHandlerByName((const char*)basicScriptData->value);
|
|
|
|
if (0 == handler)
|
|
return 0;
|
|
|
|
_stack->pushString((const char*)basicScriptData->value);
|
|
int ret = _stack->executeFunctionByHandler(handler, 1);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleCallFuncActionEvent(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
BasicScriptData* basicScriptData = static_cast<BasicScriptData*>(data);
|
|
if (NULL == basicScriptData->nativeObject)
|
|
return 0;
|
|
|
|
int handler =ScriptHandlerMgr::getInstance()->getObjectHandler(basicScriptData->nativeObject, ScriptHandlerMgr::kCallFuncHandler);
|
|
|
|
if (0 == handler)
|
|
return 0;
|
|
|
|
Object* target = static_cast<Object*>(basicScriptData->value);
|
|
if (NULL != target)
|
|
{
|
|
_stack->pushObject(target, "CCNode");
|
|
}
|
|
int ret = _stack->executeFunctionByHandler(handler, target ? 1 : 0);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleScheduler(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
SchedulerScriptData* schedulerInfo = static_cast<SchedulerScriptData*>(data);
|
|
|
|
_stack->pushFloat(schedulerInfo->elapse);
|
|
int ret = _stack->executeFunctionByHandler(schedulerInfo->handler, 1);
|
|
_stack->clean();
|
|
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleKeypadEvent(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
KeypadScriptData* keypadScriptData = static_cast<KeypadScriptData*>(data);
|
|
if (NULL == keypadScriptData->nativeObject)
|
|
return 0;
|
|
|
|
int handler = ScriptHandlerMgr::getInstance()->getObjectHandler(keypadScriptData->nativeObject, ScriptHandlerMgr::kKeypadHandler);
|
|
|
|
if (0 == handler)
|
|
return 0;
|
|
|
|
int action = keypadScriptData->actionType;
|
|
|
|
switch (action)
|
|
{
|
|
case kTypeBackClicked:
|
|
_stack->pushString("backClicked");
|
|
break;
|
|
|
|
case kTypeMenuClicked:
|
|
_stack->pushString("menuClicked");
|
|
break;
|
|
|
|
default:
|
|
return 0;
|
|
}
|
|
int ret = _stack->executeFunctionByHandler(handler, 1);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleAccelerometerEvent(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
BasicScriptData* basicScriptData = static_cast<BasicScriptData*>(data);
|
|
if (NULL == basicScriptData->nativeObject || NULL == basicScriptData->value)
|
|
return 0;
|
|
|
|
int handler = ScriptHandlerMgr::getInstance()->getObjectHandler(basicScriptData->nativeObject, ScriptHandlerMgr::kAccelerometerHandler);
|
|
if (0 == handler)
|
|
return 0;
|
|
|
|
Acceleration* accelerationValue = static_cast<Acceleration*>(basicScriptData->value);
|
|
_stack->pushFloat(accelerationValue->x);
|
|
_stack->pushFloat(accelerationValue->y);
|
|
_stack->pushFloat(accelerationValue->z);
|
|
_stack->pushFloat(accelerationValue->timestamp);
|
|
int ret = _stack->executeFunctionByHandler(handler, 4);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleCommonEvent(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
CommonScriptData* commonInfo = static_cast<CommonScriptData*>(data);
|
|
if (NULL == commonInfo->eventName || 0 == commonInfo->handler)
|
|
return 0;
|
|
|
|
_stack->pushString(commonInfo->eventName);
|
|
if (NULL != commonInfo->eventSource)
|
|
{
|
|
if (NULL != commonInfo->eventSourceClassName && strlen(commonInfo->eventSourceClassName) > 0)
|
|
{
|
|
_stack->pushObject(commonInfo->eventSource, commonInfo->eventSourceClassName);
|
|
}
|
|
else
|
|
{
|
|
_stack->pushObject(commonInfo->eventSource, "CCObject");
|
|
}
|
|
}
|
|
int ret = _stack->executeFunctionByHandler(commonInfo->handler, commonInfo->eventSource ? 2 : 1);
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleTouchEvent(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
TouchScriptData* touchScriptData = static_cast<TouchScriptData*>(data);
|
|
if (NULL == touchScriptData->nativeObject || NULL == touchScriptData->touch)
|
|
return 0;
|
|
|
|
int handler = ScriptHandlerMgr::getInstance()->getObjectHandler((void*)touchScriptData->nativeObject, ScriptHandlerMgr::kTouchesHandler);
|
|
|
|
if (0 == handler)
|
|
return 0;
|
|
|
|
switch (touchScriptData->actionType)
|
|
{
|
|
case CCTOUCHBEGAN:
|
|
_stack->pushString("began");
|
|
break;
|
|
|
|
case CCTOUCHMOVED:
|
|
_stack->pushString("moved");
|
|
break;
|
|
|
|
case CCTOUCHENDED:
|
|
_stack->pushString("ended");
|
|
break;
|
|
|
|
case CCTOUCHCANCELLED:
|
|
_stack->pushString("cancelled");
|
|
break;
|
|
|
|
default:
|
|
return 0;
|
|
}
|
|
|
|
int ret = 0;
|
|
|
|
Touch* touch = touchScriptData->touch;
|
|
if (NULL != touch) {
|
|
const Point pt = Director::getInstance()->convertToGL(touch->getLocationInView());
|
|
_stack->pushFloat(pt.x);
|
|
_stack->pushFloat(pt.y);
|
|
ret = _stack->executeFunctionByHandler(handler, 3);
|
|
}
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handleTouchesEvent(void* data)
|
|
{
|
|
if (NULL == data)
|
|
return 0;
|
|
|
|
TouchesScriptData* touchesScriptData = static_cast<TouchesScriptData*>(data);
|
|
if (NULL == touchesScriptData->nativeObject || NULL == touchesScriptData->touches)
|
|
return 0;
|
|
|
|
int handler = ScriptHandlerMgr::getInstance()->getObjectHandler((void*)touchesScriptData->nativeObject, ScriptHandlerMgr::kTouchesHandler);
|
|
|
|
if (0 == handler)
|
|
return 0;
|
|
|
|
switch (touchesScriptData->actionType)
|
|
{
|
|
case CCTOUCHBEGAN:
|
|
_stack->pushString("began");
|
|
break;
|
|
|
|
case CCTOUCHMOVED:
|
|
_stack->pushString("moved");
|
|
break;
|
|
|
|
case CCTOUCHENDED:
|
|
_stack->pushString("ended");
|
|
break;
|
|
|
|
case CCTOUCHCANCELLED:
|
|
_stack->pushString("cancelled");
|
|
break;
|
|
|
|
default:
|
|
return 0;
|
|
}
|
|
|
|
Director* pDirector = Director::getInstance();
|
|
lua_State *L = _stack->getLuaState();
|
|
int ret = 0;
|
|
|
|
lua_newtable(L);
|
|
int i = 1;
|
|
for (SetIterator it = touchesScriptData->touches->begin(); it != touchesScriptData->touches->end(); ++it)
|
|
{
|
|
Touch* pTouch = static_cast<Touch*>(*it);
|
|
Point pt = pDirector->convertToGL(pTouch->getLocationInView());
|
|
lua_pushnumber(L, pt.x);
|
|
lua_rawseti(L, -2, i++);
|
|
lua_pushnumber(L, pt.y);
|
|
lua_rawseti(L, -2, i++);
|
|
lua_pushinteger(L, pTouch->getID());
|
|
lua_rawseti(L, -2, i++);
|
|
}
|
|
ret = _stack->executeFunctionByHandler(handler, 2);
|
|
|
|
_stack->clean();
|
|
return ret;
|
|
}
|
|
|
|
int LuaEngine::handlerControlEvent(void* data)
|
|
{
|
|
if ( NULL == data )
|
|
return 0;
|
|
|
|
BasicScriptData* basicScriptData = static_cast<BasicScriptData*>(data);
|
|
if (NULL == basicScriptData->nativeObject)
|
|
return 0;
|
|
|
|
int controlEvents = *((int*)(basicScriptData->value));
|
|
|
|
int handler = 0;
|
|
int ret = 0;
|
|
|
|
for (int i = 0; i < kControlEventTotalNumber; i++)
|
|
{
|
|
if ((controlEvents & (1 << i)))
|
|
{
|
|
handler = ScriptHandlerMgr::getInstance()->getObjectHandler(basicScriptData->nativeObject, ScriptHandlerMgr::kControlTouchDownHandler + i);
|
|
|
|
if (0 != handler)
|
|
{
|
|
_stack->pushObject((Object*)basicScriptData->nativeObject, "CCObject");
|
|
ret = _stack->executeFunctionByHandler(handler, 1);
|
|
_stack->clean();
|
|
}
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
void LuaEngine::extendLuaObject()
|
|
{
|
|
if ( NULL == _stack || NULL == _stack->getLuaState())
|
|
return;
|
|
|
|
lua_State* lua_S = _stack->getLuaState();
|
|
extendNode(lua_S);
|
|
extendMenuItem(lua_S);
|
|
extendLayer(lua_S);
|
|
extendControl(lua_S);
|
|
extendWebsocket(lua_S);
|
|
extendGLNode(lua_S);
|
|
extendScrollView(lua_S);
|
|
extendDrawNode(lua_S);
|
|
|
|
_stack->clean();
|
|
}
|
|
|
|
void LuaEngine::extendNode(lua_State* lua_S)
|
|
{
|
|
if(NULL == lua_S)
|
|
return;
|
|
|
|
lua_pushstring(lua_S,"CCNode");
|
|
lua_rawget(lua_S,LUA_REGISTRYINDEX);
|
|
if (lua_istable(lua_S,-1))
|
|
{
|
|
lua_pushstring(lua_S,"registerScriptHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_registerScriptHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
lua_pushstring(lua_S,"unregisterScriptHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_unregisterScriptHandler00);
|
|
lua_rawset(lua_S, -3);
|
|
}
|
|
}
|
|
|
|
void LuaEngine::extendMenuItem(lua_State* lua_S)
|
|
{
|
|
if (NULL == lua_S)
|
|
return;
|
|
|
|
lua_pushstring(lua_S,"CCMenuItem");
|
|
lua_rawget(lua_S,LUA_REGISTRYINDEX);
|
|
if (lua_istable(lua_S,-1))
|
|
{
|
|
lua_pushstring(lua_S,"registerScriptTapHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_registerScriptTapHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
lua_pushstring(lua_S, "unregisterScriptTapHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_unregisterScriptTapHandler00);
|
|
lua_rawset(lua_S, -3);
|
|
}
|
|
}
|
|
|
|
void LuaEngine::extendLayer(lua_State* lua_S)
|
|
{
|
|
if (NULL == lua_S)
|
|
return;
|
|
|
|
lua_pushstring(lua_S,"CCLayer");
|
|
lua_rawget(lua_S,LUA_REGISTRYINDEX);
|
|
if (lua_istable(lua_S,-1))
|
|
{
|
|
lua_pushstring(lua_S,"registerScriptTouchHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_registerScriptTouchHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
lua_pushstring(lua_S, "unregisterScriptTouchHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_unregisterScriptTouchHandler00);
|
|
lua_rawset(lua_S, -3);
|
|
lua_pushstring(lua_S, "registerScriptKeypadHandler");
|
|
lua_pushcfunction(lua_S, tolua_Cocos2d_registerScriptKeypadHandler00);
|
|
lua_rawset(lua_S, -3);
|
|
lua_pushstring(lua_S, "unregisterScriptKeypadHandler");
|
|
lua_pushcfunction(lua_S, tolua_Cocos2d_unregisterScriptKeypadHandler00);
|
|
lua_rawset(lua_S, -3);
|
|
lua_pushstring(lua_S, "registerScriptAccelerateHandler");
|
|
lua_pushcfunction(lua_S, tolua_Cocos2d_registerScriptAccelerateHandler00);
|
|
lua_rawset(lua_S, -3);
|
|
lua_pushstring(lua_S, "unregisterScriptAccelerateHandler");
|
|
lua_pushcfunction(lua_S, tolua_Cocos2d_unregisterScriptAccelerateHandler00);
|
|
lua_rawset(lua_S, -3);
|
|
}
|
|
}
|
|
|
|
void LuaEngine::extendControl(lua_State* lua_S)
|
|
{
|
|
if (NULL == lua_S)
|
|
return;
|
|
|
|
lua_pushstring(lua_S,"CCControl");
|
|
lua_rawget(lua_S,LUA_REGISTRYINDEX);
|
|
if (lua_istable(lua_S,-1))
|
|
{
|
|
lua_pushstring(lua_S,"registerControlEventHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_registerControlEventHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
lua_pushstring(lua_S,"unregisterControlEventHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_unregisterControlEventHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
}
|
|
}
|
|
|
|
void LuaEngine::extendWebsocket(lua_State* lua_S)
|
|
{
|
|
#if (CC_TARGET_PLATFORM == CC_PLATFORM_IOS || CC_TARGET_PLATFORM == CC_PLATFORM_ANDROID || CC_TARGET_PLATFORM == CC_PLATFORM_WIN32)
|
|
if (NULL == lua_S)
|
|
return;
|
|
|
|
lua_pushstring(lua_S,"WebSocket");
|
|
lua_rawget(lua_S,LUA_REGISTRYINDEX);
|
|
if (lua_istable(lua_S,-1))
|
|
{
|
|
lua_pushstring(lua_S,"registerScriptHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_WebSocket_registerScriptHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
lua_pushstring(lua_S,"unregisterScriptHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_WebSocket_unregisterScriptHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void LuaEngine::extendGLNode(lua_State* lua_S)
|
|
{
|
|
if (NULL == lua_S)
|
|
return;
|
|
|
|
lua_pushstring(lua_S,"GLNode");
|
|
lua_rawget(lua_S,LUA_REGISTRYINDEX);
|
|
if (lua_istable(lua_S,-1))
|
|
{
|
|
lua_pushstring(lua_S,"registerScriptDrawHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_GLNode_registerScriptDrawHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
lua_pushstring(lua_S,"unregisterScriptDrawHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_GLNode_unregisterScriptDrawHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
}
|
|
}
|
|
|
|
void LuaEngine::extendScrollView(lua_State* lua_S)
|
|
{
|
|
if (NULL == lua_S)
|
|
return;
|
|
|
|
lua_pushstring(lua_S,"CCScrollView");
|
|
lua_rawget(lua_S,LUA_REGISTRYINDEX);
|
|
if (lua_istable(lua_S,-1))
|
|
{
|
|
lua_pushstring(lua_S,"registerScriptHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_ScrollView_registerScriptHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
lua_pushstring(lua_S,"unregisterScriptHandler");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_ScrollView_unregisterScriptHandler00);
|
|
lua_rawset(lua_S,-3);
|
|
}
|
|
}
|
|
|
|
void LuaEngine::extendDrawNode(lua_State* lua_S)
|
|
{
|
|
if (NULL == lua_S)
|
|
return;
|
|
|
|
lua_pushstring(lua_S,"CCDrawNode");
|
|
lua_rawget(lua_S,LUA_REGISTRYINDEX);
|
|
if (lua_istable(lua_S,-1))
|
|
{
|
|
lua_pushstring(lua_S,"drawPolygon");
|
|
lua_pushcfunction(lua_S,tolua_Cocos2d_CCDrawNode_drawPolygon00);
|
|
lua_rawset(lua_S,-3);
|
|
}
|
|
|
|
}
|
|
NS_CC_END
|