axmol/extensions/scripting/lua-bindings/manual/CCLuaEngine.h

254 lines
10 KiB
C
Raw Normal View History

2014-03-10 14:04:58 +08:00
/****************************************************************************
Copyright (c) 2012 cocos2d-x.org
Copyright (c) 2013-2016 Chukong Technologies Inc.
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
2014-03-10 14:04:58 +08:00
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.
****************************************************************************/
#ifndef __CC_LUA_ENGINE_H__
#define __CC_LUA_ENGINE_H__
extern "C" {
#include "lua.h"
}
2016-04-18 15:09:21 +08:00
Squashed commit of the following: commit a794d107ad85667e3d754f0b6251fc864dfbf288 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 14:33:49 2014 -0700 Yeah... everything compiles on win32 and wp8 commit 4740be6e4a0d16f742c27996e7ab2c100adc76af Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:58:38 2014 -0700 CCIME moved to base and compiles on Android commit ff3e1bf1eb27a01019f4e1b56d1aebbe2d385f72 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 13:02:57 2014 -0700 compiles Ok for Windows Phone 8 commit 8160a4eb2ecdc61b5bd1cf56b90d2da6f11e3ebd Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 12:25:31 2014 -0700 fixes for Windows Phone 8 commit 418197649efc93032aee0adc205e502101cdb53d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 11:15:13 2014 -0700 Compiles on Win32 commit 08813ed7cf8ac1079ffadeb1ce78ea9e833e1a33 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 10:08:31 2014 -0700 Compiles on linux! commit 118896521e5b335a5257090b6863f1fb2a2002fe Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 09:30:42 2014 -0700 moves cocos/2d/platform -> cocos/platform commit 4fe9319d7717b0c1bccb2db0156eeb86255a89e0 Merge: bd68ec2 511295e Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Fri May 16 08:24:41 2014 -0700 Merge remote-tracking branch 'cocos2d/v3' into files commit bd68ec2f0e3a826d8b2f4b60564ba65ce766bc56 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Thu May 15 19:36:23 2014 -0700 files in the correct directory
2014-05-17 05:36:00 +08:00
#include "base/CCScriptSupport.h"
#include "scripting/lua-bindings/manual/CCLuaStack.h"
#include "scripting/lua-bindings/manual/CCLuaValue.h"
#include "scripting/lua-bindings/manual/cocos2d/LuaScriptHandlerMgr.h"
#include "scripting/lua-bindings/manual/Lua-BindingsExport.h"
2014-03-10 14:04:58 +08:00
2015-03-26 22:07:44 +08:00
/**
* @addtogroup lua
* @{
*/
2014-03-10 14:04:58 +08:00
NS_CC_BEGIN
2015-03-19 16:45:53 +08:00
/**
* The Lua engine integrated into the cocos2d-x to process the interactive operation between lua and c++.
2015-03-27 15:27:08 +08:00
*
* @lua NA
* @js NA
2015-03-19 16:45:53 +08:00
*/
class CC_LUA_DLL LuaEngine : public ScriptEngineProtocol
2014-03-10 14:04:58 +08:00
{
public:
2015-03-19 16:45:53 +08:00
/**
* Get instance of LuaEngine.
*
* @return the instance of LuaEngine.
*/
2014-03-10 14:04:58 +08:00
static LuaEngine* getInstance(void);
2015-03-19 16:45:53 +08:00
/**
* Get defaultEngine of LuaEngine, it was deprecated.
*
* @return the instance of LuaEngine.
*/
2014-03-10 14:04:58 +08:00
CC_DEPRECATED_ATTRIBUTE static LuaEngine* defaultEngine(void) { return LuaEngine::getInstance(); }
2015-03-19 16:45:53 +08:00
2015-03-26 22:07:44 +08:00
/**
2015-11-03 03:31:17 +08:00
* Destructor of LuaEngine.
2015-03-26 22:07:44 +08:00
*/
2014-03-10 14:04:58 +08:00
virtual ~LuaEngine(void);
2015-03-19 16:45:53 +08:00
/**
2015-03-26 22:07:44 +08:00
* Get ccScriptType of LuaEngine used, it is always kScriptTypeLua.
2015-03-19 16:45:53 +08:00
*
* @return kScriptTypeLua.
*/
virtual ccScriptType getScriptType() override {
2014-03-10 14:04:58 +08:00
return kScriptTypeLua;
};
2015-03-19 16:45:53 +08:00
/**
* Get LuaStack of the LuaEngine.
* All the interactive operation are all base on the LuaStack.
*
* @return LuaStack object.
*/
2014-03-10 14:04:58 +08:00
LuaStack *getLuaStack(void) {
return _stack;
}
/**
2015-03-26 22:07:44 +08:00
* Add a path to find lua files in.
*
* @param path to be added to the Lua path.
2014-03-10 14:04:58 +08:00
*/
virtual void addSearchPath(const char* path);
/**
2015-03-19 16:45:53 +08:00
* Add lua loader.
2015-03-26 22:07:44 +08:00
*
2015-03-19 16:45:53 +08:00
* @param func a function pointer point to the loader function.
2014-03-10 14:04:58 +08:00
*/
virtual void addLuaLoader(lua_CFunction func);
/**
2015-03-19 16:45:53 +08:00
* Reload script code corresponding to moduleFileName.
2015-11-03 03:31:17 +08:00
* If value of package["loaded"][moduleFileName] is existed, it would set the value nil.Then,it calls executeString function.
2015-03-19 16:45:53 +08:00
*
* @param moduleFileName String object holding the filename of the script file that is to be executed.
2015-10-14 11:42:51 +08:00
* @return 0 if the string is executed correctly or other if the string is executed wrongly.
2014-03-10 14:04:58 +08:00
*/
virtual int reload(const char* moduleFileName);
/**
2015-03-19 16:45:53 +08:00
* Remove the related reference about the Ref object stored in the Lua table by set the value of corresponding key nil:
* The related Lua tables are toluafix_refid_ptr_mapping,toluafix_refid_type_mapping,tolua_value_root and object_Metatable["tolua_ubox"] or tolua_ubox.
2015-10-14 11:42:51 +08:00
* Meanwhile set the corresponding userdata nullptr and remove the all the lua function reference corresponding to this object.
2015-03-19 16:45:53 +08:00
*
* In current mechanism, this function is called in the destructor of Ref object, developer don't call this functions.
*
* @param object the key object to remove script object.
2014-03-10 14:04:58 +08:00
*/
virtual void removeScriptObjectByObject(Ref* object) override;
2014-03-10 14:04:58 +08:00
/**
2015-03-19 16:45:53 +08:00
* Remove Lua function reference by nHandler by setting toluafix_refid_function_mapping[nHandle] nil.
*
2015-11-03 03:31:17 +08:00
* @param nHandler the function reference index to find the corresponding Lua function pointer.
2014-03-10 14:04:58 +08:00
*/
virtual void removeScriptHandler(int nHandler) override;
2014-03-10 14:04:58 +08:00
/**
2015-10-14 11:42:51 +08:00
* Reallocate Lua function reference index to the Lua function pointer to add reference.
2015-03-19 16:45:53 +08:00
*
2015-11-03 03:31:17 +08:00
* @param nHandler the function reference index to find the corresponding Lua function pointer.
2014-03-10 14:04:58 +08:00
*/
virtual int reallocateScriptHandler(int nHandler) override;
2014-03-10 14:04:58 +08:00
/**
2015-03-19 16:45:53 +08:00
* Execute script code contained in the given string.
*
* @param codes holding the valid script code that should be executed.
2015-10-14 11:42:51 +08:00
* @return 0 if the string is executed correctly, other if the string is executed wrongly.
2014-03-10 14:04:58 +08:00
*/
virtual int executeString(const char* codes) override;
2014-03-10 14:04:58 +08:00
/**
2015-03-19 16:45:53 +08:00
* Execute a script file.
*
* @param filename String object holding the filename of the script file that is to be executed.
* @return the return values by calling executeFunction.
2014-03-10 14:04:58 +08:00
*/
virtual int executeScriptFile(const char* filename) override;
2014-03-10 14:04:58 +08:00
/**
2015-03-19 16:45:53 +08:00
* Execute a scripted global function.
* The function should not take any parameters and should return an integer.
*
* @param functionName String object holding the name of the function, in the global script environment, that is to be executed.
* @return The integer value returned from the script function.
2014-03-10 14:04:58 +08:00
*/
virtual int executeGlobalFunction(const char* functionName) override;
2014-03-10 14:04:58 +08:00
virtual int executeNodeEvent(Node* pNode, int nAction);
virtual int executeMenuItemEvent(MenuItem* pMenuItem);
virtual int executeCallFuncActionEvent(CallFunc* pAction, Ref* pTarget = NULL);
virtual int executeSchedule(int nHandler, float dt, Node* pNode = NULL);
virtual int executeLayerTouchEvent(Layer* pLayer, int eventType, Touch *pTouch);
virtual int executeLayerKeypadEvent(Layer* pLayer, int eventType);
virtual int executeAccelerometerEvent(Layer* pLayer, Acceleration* pAccelerationValue);
virtual int executeEvent(int nHandler, const char* pEventName, Ref* pEventSource = NULL, const char* pEventSourceClassName = NULL);
2015-03-19 16:45:53 +08:00
/**
* Handle the assert message.
*
* @return return true if current _callFromLua of LuaStack is not equal to 0 otherwise return false.
*/
virtual bool handleAssert(const char *msg) override;
2014-03-10 14:04:58 +08:00
2015-03-19 16:45:53 +08:00
/**
* Parse the config information data.
*
* @param type in current mechanism,it always ConfigType::COCOSTUDIO.
* @param str the information data.
* @return if __onParseConfig function exist in the Lua, it return the value that _stack->executeFunction returns otherwise return false.
*/
2014-03-10 14:04:58 +08:00
virtual bool parseConfig(ConfigType type, const std::string& str) override;
2015-03-19 16:45:53 +08:00
/**
* When some events triggered in the c++ also needs to pass on to lua to handle, we could call this function to send events.
*
* @param message the ScriptEvent object that has ScriptEventType and the pointer to information data.
* @return default return 0 otherwise return values the same as handleNodeEvent, handleMenuClickedEvent or handleCallFuncActionEvent,etc.
*/
virtual int sendEvent(const ScriptEvent& message) override;
2015-03-19 16:45:53 +08:00
/**
* Pass on the events related with ScrollView,TableCell,AssertManager, Armature, Accelerometer, Keyboard, Touch, Touches ,Mouse and Custom event to lua to handle.
*
* @param type Different ScriptHandlerMgr::HandlerType means different processing for the data.
* @param data The pointer point to the information which should be pass on to lua, it would be parsed in the function to convert to the specific data according to the ScriptHandlerMgr::HandlerType,then pass to lua as function parameters.
* @return default return 0 otherwise return values according different ScriptHandlerMgr::HandlerType.
*/
2014-03-10 14:04:58 +08:00
virtual int handleEvent(ScriptHandlerMgr::HandlerType type,void* data);
2015-03-19 16:45:53 +08:00
/**
* Pass on the events related with TableCell and TableView to lua to handle.
*
* @param type Different ScriptHandlerMgr::HandlerType means different processing for the data.
* @param data The pointer point to the information which should be pass on to lua, it would be parsed in the function to convert to the specific data according to the ScriptHandlerMgr::HandlerType,then pass to lua as function parameters.
* @param numResults The number of the return values.
* @param func The callback would be called when numResults is > 0.
* @return default return 0 otherwise return values according different ScriptHandlerMgr::HandlerType.
*/
2014-03-10 14:04:58 +08:00
virtual int handleEvent(ScriptHandlerMgr::HandlerType type, void* data, int numResults, const std::function<void(lua_State*,int)>& func);
private:
LuaEngine(void)
: _stack(nullptr)
2014-03-10 14:04:58 +08:00
{
}
bool init(void);
int handleNodeEvent(void* data);
int handleMenuClickedEvent(void* data);
int handleCallFuncActionEvent(void* data);
int handleScheduler(void* data);
int handleKeypadEvent(void* data);
int handleAccelerometerEvent(void* data);
int handleCommonEvent(void* data);
int handleTouchEvent(void* data);
int handleTouchesEvent(void* data);
int handlerControlEvent(void* data);
int handleEvenCustom(void* data);
int handleAssetsManagerEvent(ScriptHandlerMgr::HandlerType type,void* data);
int handleTableViewEvent(ScriptHandlerMgr::HandlerType type,void* data);
int handleTableViewEvent(ScriptHandlerMgr::HandlerType type,void* data, int numResults, const std::function<void(lua_State*,int)>& func);
int handleArmatureWrapper(ScriptHandlerMgr::HandlerType type,void* data);
int handleEventAcc(void* data);
int handleEventKeyboard(ScriptHandlerMgr::HandlerType type,void* data);
int handleEventTouch(ScriptHandlerMgr::HandlerType type, void* data);
int handleEventTouches(ScriptHandlerMgr::HandlerType type, void* data);
int handleEventMouse(ScriptHandlerMgr::HandlerType type, void* data);
private:
static LuaEngine* _defaultEngine;
LuaStack *_stack;
};
NS_CC_END
2015-03-26 22:07:44 +08:00
// end group
/// @}
2014-03-10 14:04:58 +08:00
#endif // __CC_LUA_ENGINE_H__