/**************************************************************************** Copyright (c) 2010-2012 cocos2d-x.org Copyright (c) 2013-2016 Chukong Technologies Inc. Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. 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 __SCRIPT_SUPPORT_H__ #define __SCRIPT_SUPPORT_H__ #include "base/ccConfig.h" #include "platform/CCCommon.h" #include "base/CCTouch.h" #include "base/CCEventTouch.h" #include "base/CCEventKeyboard.h" #include #include #include /** * @addtogroup base * @{ */ #if CC_ENABLE_SCRIPT_BINDING typedef struct lua_State lua_State; NS_CC_BEGIN class TimerScriptHandler; class Layer; class MenuItem; class CallFunc; class Acceleration; class Action; enum ccScriptType { kScriptTypeNone = 0, kScriptTypeLua, kScriptTypeJavascript }; /** * This classes is wrapped to store the handler corresponding to the Lua function pointer and assign the handler a unique id * @js NA */ class ScriptHandlerEntry : public Ref { public: /** * create a ScriptHandlerEntry instance by the handler. * * @param handler corresponding to the Lua function pointer. * @return ScriptHandlerEntry instance. * @lua NA * @js NA */ static ScriptHandlerEntry* create(int handler); /** * Destructor of ScriptHandlerEntry. * @lua NA * @js NA */ virtual ~ScriptHandlerEntry(); /** * Get the handler corresponding to the Lua function pointer. * * @return the handler corresponding to the Lua function pointer. * @lua NA * @js NA */ int getHandler(void) { return _handler; } /** * Get the unique id corresponding to the handler. * * @return the unique id corresponding to the handler. * @lua NA * @js NA */ int getEntryId(void) { return _entryId; } protected: ScriptHandlerEntry(int handler) : _handler(handler) { static int newEntryId = 0; newEntryId++; _entryId = newEntryId; } int _handler; int _entryId; }; /** * The SchedulerScriptHandlerEntry is used to store the handler corresponding to the Lua function pointer and assign the handler a unique id like ScriptHandlerEntry. * Meanwhile,create a timer that named TimerScriptHandler to execute the Lua function corresponding to the handler in the interval time if the SchedulerScriptHandlerEntry object isn't paused. * @js NA */ class SchedulerScriptHandlerEntry : public ScriptHandlerEntry { public: /** * create a SchedulerScriptHandlerEntry object. * * @param handler the index corresponding to the Lua function pointer. * @param interval the interval to execute the Lua function. If the value is 0, then the lua function will be scheduled every frame. * @param paused if paused is true, then the timer won't be started until it is resumed. * @return a SchedulerScriptHandlerEntry object. * @js NA * @lua NA */ static SchedulerScriptHandlerEntry* create(int handler, float interval, bool paused); /** * Destructor of SchedulerScriptHandlerEntry. * @js NA * @lua NA */ virtual ~SchedulerScriptHandlerEntry(); /** * Get the pointer of TimerScriptHandler object. * * @return the pointer of TimerScriptHandler object. * @js NA * @lua NA */ TimerScriptHandler* getTimer(void) { return _timer; } /** * Get the flag whether paused or not. * * @return the flag whether paused or not. * @js NA * @lua NA */ bool isPaused(void) { return _paused; } /** * Set the markedForDeletion flag true. * @js NA * @lua NA */ void markedForDeletion(void) { _markedForDeletion = true; } /** * Get the flag whether markedForDeletion or not. * * @return the flag whether markedForDeletion or not. * @js NA * @lua NA */ bool isMarkedForDeletion(void) { return _markedForDeletion; } private: SchedulerScriptHandlerEntry(int handler) : ScriptHandlerEntry(handler) , _timer(nullptr) , _paused(false) , _markedForDeletion(false) { } bool init(float interval, bool paused); TimerScriptHandler* _timer; bool _paused; bool _markedForDeletion; }; /** * @cond * @js NA */ class TouchScriptHandlerEntry : public ScriptHandlerEntry { public: static TouchScriptHandlerEntry* create(int handler, bool isMultiTouches, int priority, bool swallowsTouches); virtual ~TouchScriptHandlerEntry(); bool isMultiTouches(void) { return _isMultiTouches; } int getPriority(void) { return _priority; } bool getSwallowsTouches(void) { return _swallowsTouches; } private: TouchScriptHandlerEntry(int handler) : ScriptHandlerEntry(handler) , _isMultiTouches(false) , _priority(0) , _swallowsTouches(false) { } bool init(bool isMultiTouches, int priority, bool swallowsTouches); bool _isMultiTouches; int _priority; bool _swallowsTouches; }; /** * @endcond * @js NA */ /** ScriptEventType enum*/ enum ScriptEventType { kNodeEvent = 0, kMenuClickedEvent, kCallFuncEvent, kScheduleEvent, kTouchEvent, kTouchesEvent, kKeypadEvent, kAccelerometerEvent, kControlEvent, kCommonEvent, kComponentEvent, kRestartGame, kScriptActionEvent }; /** * For Lua, Wrapper the script data that should be used to find the handler corresponding to the Lua function by the nativeobject pointer and store the value pointer which would be converted concretely by the different events,then the converted data would be passed into the Lua stack. * @js NA */ struct BasicScriptData { /** * For Lua, nativeobject is used to get handler corresponding to the Lua function. * * @js NA * @lua NA */ void* nativeObject; /** * A pointer point to the value data which would be converted by different events. * * @js NA * @lua NA */ void* value; /** * Constructor of BasicScriptData. * * @js NA * @lua NA */ BasicScriptData(void* inObject,void* inValue = nullptr) : nativeObject(inObject),value(inValue) { } }; /** * For Lua, Wrapper the script data that should be used to find the handler corresponding to the Lua function by the nativeobject pointer and store the value pointer which would be converted concretely by the different events,then the converted data would be passed into the Lua stack. * @js NA */ struct ActionObjectScriptData { /** * For Lua, nativeobject is used to get handler corresponding to the Lua function. * * @js NA * @lua NA */ void* nativeObject; /** * A pointer point to the value data which event action * * @js NA * @lua NA */ int* eventType; /** * A pointer point to the value data which would be converted by different events. * * @js NA * @lua NA */ void* param; /** * Constructor of BasicScriptData. * * @js NA * @lua NA */ ActionObjectScriptData(void* inObject,int* inValue = nullptr, void* inParam = nullptr) : nativeObject(inObject),eventType(inValue), param(inParam) { } }; /** * For Lua, the SchedulerScriptData is used to find the Lua function pointer by the handler, then call the Lua function by push the elapse into the Lua stack as a parameter when scheduler update event is triggered. * @js NA */ struct SchedulerScriptData { /** * the handler corresponding to the Lua function pointer, only use in the Lua. * * @js NA * @lua NA */ int handler; /** * the parameter would be passed in to the Lua function, only use in the Lua. * * @js NA * @lua NA */ float elapse; // js use void* node; /** * Constructor of SchedulerScriptData. * * @js NA * @lua NA */ SchedulerScriptData(int inHandler,float inElapse,void* inNode = nullptr) : handler(inHandler), elapse(inElapse), node(inNode) { } }; /** * For Lua, the TouchesScriptData is used to find the Lua function pointer by the nativeObject, then call the Lua function by push touches data and actionType into the Lua stack as the parameters when the touches event is triggered. * @js NA */ struct TouchesScriptData { /** * The EventTouch::EventCode type. * * @lua NA * @js NA */ EventTouch::EventCode actionType; /** * For Lua, it Used to find the Lua function pointer by the ScriptHandlerMgr. * * @lua NA * @js NA */ void* nativeObject; /** * The vector of Touch.For Lua, it would be convert to the Lua table form to be pushed into the Lua stack. * * @lua NA * @js NA */ const std::vector& touches; /** * event information, it is useless for Lua. * * @lua NA * @js NA */ Event* event; /** * Constructor of TouchesScriptData. * * @lua NA * @js NA */ TouchesScriptData(EventTouch::EventCode inActionType, void* inNativeObject, const std::vector& inTouches, Event* evt) : actionType(inActionType), nativeObject(inNativeObject), touches(inTouches), event(evt) { } }; /** * For Lua, the TouchScriptData is used to find the Lua function pointer by the nativeObject, then call the Lua function by push touch data and actionType converted to string type into the Lua stack as the parameters when the touch event is triggered. * @js NA */ struct TouchScriptData { /** * The EventTouch::EventCode type. * * @lua NA * @js NA */ EventTouch::EventCode actionType; /** * For Lua, it Used to find the Lua function pointer by the ScriptHandlerMgr. * * @lua NA * @js NA */ void* nativeObject; /** * touch information. it would be in x,y form to push into the Lua stack. * * @lua NA * @js NA */ Touch* touch; /** * event information,it is useless for Lua. * * @lua NA * @js NA */ Event* event; /** * Constructor of TouchScriptData. * * @lua NA * @js NA */ TouchScriptData(EventTouch::EventCode inActionType, void* inNativeObject, Touch* inTouch, Event* evt) : actionType(inActionType), nativeObject(inNativeObject), touch(inTouch), event(evt) { } }; /** * For Lua, the KeypadScriptData is used to find the Lua function pointer by the nativeObject, then call the Lua function by push the actionType converted to string type into the Lua stack as the parameters when the Keypad event is triggered. * @js NA */ struct KeypadScriptData { /** * The specific type of EventKeyboard::KeyCode * * @lua NA * @js NA */ EventKeyboard::KeyCode actionType; /** * For Lua, it Used to find the Lua function pointer by the ScriptHandlerMgr. * * @lua NA * @js NA */ void* nativeObject; /** * Constructor of KeypadScriptData. * * @lua NA * @js NA */ KeypadScriptData(EventKeyboard::KeyCode inActionType,void* inNativeObject) : actionType(inActionType),nativeObject(inNativeObject) { } }; /** * For Lua, the CommonScriptData is used to find the Lua function pointer by the handler, then call the Lua function by push the eventName, eventSource(if it not nullptr), eventSourceClassName(if it is nullptr or "", and the eventSource is not nullptr,would give the default string "cc.Ref") into the Lua stack as the parameter when the common event such as is triggered. * @js NA */ struct CommonScriptData { /** * The index to find the corresponding to the Lua function pointer. * * @lua NA * @js NA */ int handler; /** * The string value to be pushed into the Lua stack. * * @lua NA * @js NA */ char eventName[64]; /** * The source object trigger the event,could be nullptr. * * @lua NA * @js NA */ Ref* eventSource; /** * The class name of source object trigger the event, could be nullptr. * * @lua NA * @js NA */ char eventSourceClassName[64]; /** * Constructor of CommonScriptData. * * @lua NA * @js NA */ CommonScriptData(int inHandler,const char* inName, Ref* inSource = nullptr,const char* inClassName = nullptr) : handler(inHandler), eventSource(inSource) { if (nullptr == inName) { memset(eventName, 0, sizeof(eventName)); } else { strncpy(eventName, inName, sizeof(eventName)); } if (nullptr == inClassName) { memset(eventSourceClassName, 0, sizeof(eventSourceClassName)); } else { strncpy(eventSourceClassName, inClassName, 64); } } }; /** * The ScriptEvent wrapper the different script data corresponding to the ScriptEventType in to the unified struct. * when the corresponding event is triggered, we could call the `sendEvent` of ScriptEngineProtocol to handle the event. * @js NA */ struct ScriptEvent { /** * The specific type of ScriptEventType. * * @lua NA * @js NA */ ScriptEventType type; /** * Pointer point to the different data. * * @lua NA * @js NA */ void* data; /** * Constructor of ScriptEvent. * * @lua NA * @js NA */ ScriptEvent(ScriptEventType inType,void* inData) : type(inType), data(inData) { } }; /** * Don't make ScriptEngineProtocol inherits from Object since setScriptEngine is invoked only once in AppDelegate.cpp, * It will affect the lifecycle of ScriptEngine instance, the autorelease pool will be destroyed before destructing ScriptEngine. * So a crash will appear on Win32 if you click the close button. * @js NA */ class CC_DLL ScriptEngineProtocol { public: /** * Constructor of ScriptEngineProtocol. * * @lua NA * @js NA */ ScriptEngineProtocol() {} /** * Destructor of ScriptEngineProtocol. * * @lua NA * @js NA */ virtual ~ScriptEngineProtocol() {} /** * Get the specific script type. * * @return the specific script type. * * @lua NA * @js NA */ virtual ccScriptType getScriptType() { return kScriptTypeNone; } /** * Reflect the retain relationship to script scope */ virtual void retainScriptObject(Ref* /*owner*/, Ref* /*target*/) {} /** * Add the script object to root object */ virtual void rootScriptObject(Ref* /*target*/) {} /** * Reflect the release relationship to script scope */ virtual void releaseScriptObject(Ref* /*owner*/, Ref* /*target*/) {} /** * Remove the script object from root object */ virtual void unrootScriptObject(Ref* /*target*/) {} /** * Release all children native refs for the given node in script scope */ virtual void releaseAllChildrenRecursive(Node* /*node*/) {} /** * Release all native refs for the given owner in script scope */ virtual void releaseAllNativeRefs(cocos2d::Ref* /*owner*/) {} /** * Remove script object,The specific meaning should refer to the ScriptType. * For Lua, @see removeScriptObjectByObject of LuaEngine. * * @lua NA * @js NA */ virtual void removeScriptObjectByObject(Ref* /*obj*/) {} /** * Remove script function handler, only LuaEngine class need to implement this function. * @see removeScriptHandler of LuaEngine. * @lua NA * @js NA */ virtual void removeScriptHandler(int /*handler*/) {} /** * Reallocate script function handler, only LuaEngine class need to implement this function. * @see reallocateScriptHandler of LuaEngine. * @lua NA * @js NA */ virtual int reallocateScriptHandler(int /*handler*/) { return 0; } /** * Execute script code contained in the given string. * * @param codes holding the valid script code that should be executed. * @return 0 if the string is executed correctly. * @return other if the string is executed wrongly. * @lua NA * @js NA */ virtual int executeString(const char* codes) = 0; /** * Execute a script file. * * @param filename String object holding the filename of the script file that is to be executed. * @return 0 if it happen the error or it hasn't return value, otherwise it return the value by calling the lua function. * @lua NA * @js NA */ virtual int executeScriptFile(const char* filename) = 0; /** * 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. * @lua NA * @js NA */ virtual int executeGlobalFunction(const char* functionName) = 0; /** * When trigger a script event ,call this func,add params needed into ScriptEvent object.nativeObject is object triggering the event, can be nullptr in Lua. * * * @lua NA * @js NA */ virtual int sendEvent(ScriptEvent* evt) = 0; /** * Handle the assert message. * * @return true if the assert was handled by the script engine, false otherwise. * * @lua NA * @js NA */ virtual bool handleAssert(const char *msg) = 0; /** * Useless for Lua. * * @lua NA * @js NA */ virtual void setCalledFromScript(bool /*callFromScript*/) {} /** * Useless for Lua. * * @lua NA * @js NA */ virtual bool isCalledFromScript() { return false; }; /** ConfigType enum. */ enum class ConfigType { NONE, COCOSTUDIO }; /** * Parse configuration file. * * @param type the specific type value. * @param str the information data. * * @lua NA * @js NA */ virtual bool parseConfig(ConfigType type, const std::string& str) = 0; /** Root a Reference. It tells the Garbage Collector that the associated Scripting object should not be collected */ virtual void rootObject(Ref* /*obj*/) {} /** Unroot a Reference. It tells the Garbage Collector that the associated Scripting object can be collected */ virtual void unrootObject(Ref* /*obj*/) {} /** Remove proxy for a native object */ virtual void removeObjectProxy(Ref* obj) {} /** Triggers the garbage collector */ virtual void garbageCollect() {} }; class Node; /** * ScriptEngineManager is a singleton which manager an object instance of ScriptEngineProtocol, such as LuaEngine. * * @since v0.99.5-x-0.8.5 * @js NA */ class CC_DLL ScriptEngineManager { public: /** * Constructor of ScriptEngineManager. * * @lua NA * @js NA */ ~ScriptEngineManager(void); /** * Get the ScriptEngineProtocol object. * * @return the ScriptEngineProtocol object. * * @lua NA * @js NA */ ScriptEngineProtocol* getScriptEngine(void) { return _scriptEngine; } /** * Set the ScriptEngineProtocol object should be managed. * * @param scriptEngine should be managed. * * @lua NA * @js NA */ void setScriptEngine(ScriptEngineProtocol *scriptEngine); /** * Remove the ScriptEngineProtocol object managed. * * * @lua NA * @js NA */ void removeScriptEngine(void); /** * Get the instance of ScriptEngineManager object. * * @return the instance of ScriptEngineManager object. * * @lua NA * @js NA */ static ScriptEngineManager* getInstance(); /** * Destroy the singleton about ScriptEngineManager. * * @lua NA * @js NA */ static void destroyInstance(); /** * * * @lua NA * @js NA */ static bool sendActionEventToJS(Action* actionObject, int eventType, void* param); /** * * * @lua NA * @js NA */ static bool sendNodeEventToJS(Node* node, int action); /** * * * @lua NA * @js NA */ static bool sendNodeEventToJSExtended(Node* node, int action); /** * Call the Lua function when the event of node is triggered. * * @param node the nativeobject triggers the event. * @param action the specific type. * * @lua NA * @js NA */ static void sendNodeEventToLua(Node* node, int action); /** * @deprecated Use getInstance() instead. * * @lua NA * @js NA */ CC_DEPRECATED_ATTRIBUTE static ScriptEngineManager* sharedManager() { return ScriptEngineManager::getInstance(); }; /** * @deprecated Use destroyInstance() instead. * * @lua NA * @js NA */ CC_DEPRECATED_ATTRIBUTE static void purgeSharedManager() { ScriptEngineManager::destroyInstance(); }; private: ScriptEngineManager(void) : _scriptEngine(nullptr) { } ScriptEngineProtocol *_scriptEngine; }; NS_CC_END #endif // #if CC_ENABLE_SCRIPT_BINDING // end group /// @} #endif // __SCRIPT_SUPPORT_H__