axmol/cocos/scripting/lua-bindings/manual/cocosbuilder/CCBProxy.h

130 lines
4.0 KiB
C
Raw Normal View History

/****************************************************************************
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.
****************************************************************************/
2014-03-10 14:04:58 +08:00
#ifndef __CCBPROXY_H_
#define __CCBPROXY_H_
2016-04-18 15:09:21 +08:00
#include "scripting/lua-bindings/manual/CCLuaEngine.h"
Squashed commit of the following: commit c16dcfaaea0922039aad05bce1f4efed18e04871 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 19:05:18 2014 -0700 more linux fixes commit 1553795976c9090a1b46deb53d12910fe0676008 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 19:04:04 2014 -0700 more linux fixes commit 1e43a8cabff33cbf25aa5eb5412f53a878222d83 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 19:02:07 2014 -0700 fixes linux isuses commit 723a445dd6411f91846da2b801248ad8298174f1 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:58:50 2014 -0700 more linux fixes commit 533c8025e794fc76cef02f396b3a93b3d7f4cfc8 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:57:33 2014 -0700 more linux fixes commit 4ba1e84959670bcbf044f18d1c0d4b3cb3be4090 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:53:43 2014 -0700 more linux fixes commit 1f8e011f306a47ed4134224e5e349929201f0539 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:49:28 2014 -0700 more linux fixes commit 3e2033100822ff6d532a1b4f012337491dc11920 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:47:43 2014 -0700 more linux fixes commit 2e708863c75fd032f1b2396dfdf1d31f7a62b713 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:46:00 2014 -0700 more linux fixes commit 861b5b92a6efd4de7b926c20d636ce9d749b293f Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:43:15 2014 -0700 more linux fixes commit 2a43365a0c1755e9b9cada53301be1a20adb31cf Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:36:06 2014 -0700 more fixes for linux commit 7d332bf911892f87c7824d2a5da7bf73ce7ec411 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:35:29 2014 -0700 more fixes for linux commit f1becc17d3316dfe3678c23c9dcedb7a447d9235 Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:34:44 2014 -0700 more fixes for linux commit d2e5959bb0dde921dd5e73be1d8acc3b3f50e51d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:33:45 2014 -0700 fixes for linux commit ad9b633c352107cf0e8b060a0e23d6e6a3f5e80f Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:16:48 2014 -0700 compiles on Windows commit 4425ee8e5de8f42a2d6050e4470109600dce8b5d Author: Ricardo Quesada <ricardoquesada@gmail.com> Date: Wed Apr 30 18:07:20 2014 -0700 fix builder
2014-05-01 10:09:13 +08:00
#include "audio/include/SimpleAudioEngine.h"
2014-03-10 14:04:58 +08:00
#include "extensions/cocos-ext.h"
#include "editor-support/cocosbuilder/CocosBuilder.h"
2014-03-10 14:04:58 +08:00
USING_NS_CC;
USING_NS_CC_EXT;
using namespace cocosbuilder;
2015-03-26 22:07:44 +08:00
/**
* @addtogroup lua
* @{
*/
2015-03-20 14:39:33 +08:00
/**
* CCBProxy is a proxy for cocosbuilder.
* By using CCBProxy we could create a CCBReader object conveniently and set the Lua callback function when some events triggered should be passed onto Lua.
*/
2014-03-10 14:04:58 +08:00
class CCBProxy : public Layer{
public:
2015-03-20 14:39:33 +08:00
/**
* Default constructor,do nothing.
2015-03-26 22:07:44 +08:00
*
* @lua NA
* @js NA
2015-03-20 14:39:33 +08:00
*/
2014-03-10 14:04:58 +08:00
CCBProxy() { }
2015-03-20 14:39:33 +08:00
/**
* Destructor.
2015-03-26 22:07:44 +08:00
*
* @lua NA
* @js NA
2015-03-20 14:39:33 +08:00
*/
2014-03-10 14:04:58 +08:00
virtual ~ CCBProxy(){ }
2015-03-20 14:39:33 +08:00
/**
* Create a CCBProxy object.
*
* @return a CCBProxy object.
2015-03-26 22:07:44 +08:00
*
* @lua NA
* @js NA
2015-03-20 14:39:33 +08:00
*/
2014-03-10 14:04:58 +08:00
CCB_STATIC_NEW_AUTORELEASE_OBJECT_WITH_INIT_METHOD(CCBProxy, create);
2015-03-20 14:39:33 +08:00
/**
2015-11-03 03:31:17 +08:00
* Create a CCBReader object.
2015-03-20 14:39:33 +08:00
*
* @return a CCBReader object.
2015-03-26 22:07:44 +08:00
*
* @lua NA
* @js NA
2015-03-20 14:39:33 +08:00
*/
2014-03-10 14:04:58 +08:00
CCBReader* createCCBReader();
2015-03-26 22:07:44 +08:00
/**
* Read a ccb file.
*
* @param pszFileName the string pointer point to the file name.
* @param pCCBReader the CCBreader object pointer.
* @param bSetOwner whether to set the owner or not.
* @return a Node object pointer.
* @js NA
*/
2014-03-10 14:04:58 +08:00
Node* readCCBFromFile(const char *pszFileName,CCBReader* pCCBReader,bool bSetOwner = false);
2015-03-20 14:39:33 +08:00
/**
* Get the true type name of pNode.
2015-11-03 03:31:17 +08:00
* By using the dynamic_cast function, we could get the true type name of pNode.
2015-03-20 14:39:33 +08:00
*
2015-03-27 15:27:08 +08:00
* @param pNode the Node object used to query.
2015-03-20 14:39:33 +08:00
* @return a string pointer point to the true type name otherwise return "No Support".
2015-03-26 22:07:44 +08:00
* @js NA
2015-03-20 14:39:33 +08:00
*/
2014-03-10 14:04:58 +08:00
const char* getNodeTypeName(Node* pNode);
2015-03-20 14:39:33 +08:00
/**
2015-10-14 11:42:51 +08:00
* Set relationship between the Lua callback function reference index handle and the node.
2015-03-20 14:39:33 +08:00
* According to the different controlEvents values,we would choose different ScriptHandlerMgr::HandlerTyp.
2015-10-14 11:42:51 +08:00
* When node receive the events information should be passed on to Lua, it would find the Lua callback function by the Lua callback function reference index.
2015-03-20 14:39:33 +08:00
*
* @param node the node object should pass on the events information to Lua,when the events are triggered.
2015-10-14 11:42:51 +08:00
* @param handle the Lua callback function reference index.
2015-03-20 14:39:33 +08:00
* @param controlEvents the combination value of Control::EventType, default 0.
2015-03-26 22:07:44 +08:00
* @js NA
2015-03-20 14:39:33 +08:00
*/
2014-03-10 14:04:58 +08:00
void setCallback(Node* node,int handle, int controlEvents = 0);
};
2015-03-26 22:07:44 +08:00
// end group
/// @}
/// @cond
2014-03-10 14:04:58 +08:00
class CCBLayerLoader:public LayerLoader{
public:
CCB_STATIC_NEW_AUTORELEASE_OBJECT_METHOD(CCBLayerLoader, loader);
};
2015-03-26 22:07:44 +08:00
/// @endcond
2014-03-10 14:04:58 +08:00
#endif // __CCBPROXY_H_