2013-09-20 22:23:13 +08:00
|
|
|
/****************************************************************************
|
2014-01-07 11:47:11 +08:00
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2013-12-26 16:29:59 +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.
|
|
|
|
****************************************************************************/
|
2013-09-20 22:23:13 +08:00
|
|
|
|
|
|
|
#ifndef __ActionMANAGER_H__
|
|
|
|
#define __ActionMANAGER_H__
|
|
|
|
|
2013-10-16 16:48:39 +08:00
|
|
|
#include "cocostudio/CCActionObject.h"
|
2013-12-24 20:33:55 +08:00
|
|
|
#include "cocostudio/DictionaryHelper.h"
|
2013-09-20 22:23:13 +08:00
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
namespace cocostudio {
|
2014-06-18 15:55:01 +08:00
|
|
|
|
|
|
|
class CocoLoader;
|
|
|
|
struct stExpCocoNode;
|
2013-09-20 22:23:13 +08:00
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
class ActionManagerEx:public cocos2d::Ref
|
2013-09-20 22:23:13 +08:00
|
|
|
{
|
|
|
|
public:
|
2013-12-26 16:29:59 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default constructor
|
|
|
|
* @js ctor
|
|
|
|
*/
|
|
|
|
ActionManagerEx();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Default destructor
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual ~ActionManagerEx();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the static instance of ActionManager.
|
|
|
|
* @js getInstance
|
|
|
|
* @lua getInstance
|
|
|
|
*/
|
2013-12-27 10:43:49 +08:00
|
|
|
static ActionManagerEx* getInstance();
|
2013-12-26 16:29:59 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Purges ActionManager point.
|
|
|
|
* @js purge
|
|
|
|
* @lua destroyActionManager
|
|
|
|
*/
|
2013-12-27 17:21:13 +08:00
|
|
|
static void destroyInstance();
|
2013-09-20 22:23:13 +08:00
|
|
|
|
2013-12-26 16:29:59 +08:00
|
|
|
/**
|
|
|
|
* Gets an ActionObject with a name.
|
|
|
|
*
|
|
|
|
* @param jsonName UI file name
|
|
|
|
*
|
|
|
|
* @param actionName action name in the UI file.
|
|
|
|
*
|
|
|
|
* @return ActionObject which named as the param name
|
|
|
|
*/
|
2013-09-20 22:23:13 +08:00
|
|
|
ActionObject* getActionByName(const char* jsonName,const char* actionName);
|
|
|
|
|
|
|
|
/**
|
2013-12-26 16:29:59 +08:00
|
|
|
* Play an Action with a name.
|
|
|
|
*
|
|
|
|
* @param jsonName UI file name
|
|
|
|
*
|
|
|
|
* @param actionName action name in teh UIfile.
|
|
|
|
*
|
|
|
|
* @return ActionObject which named as the param name
|
|
|
|
*/
|
2013-11-19 00:57:22 +08:00
|
|
|
ActionObject* playActionByName(const char* jsonName,const char* actionName);
|
2013-12-26 16:29:59 +08:00
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
/**
|
|
|
|
* Play an Action with a name.
|
|
|
|
*
|
|
|
|
* @param jsonName UI file name
|
|
|
|
*
|
|
|
|
* @param actionName action name in teh UIfile.
|
|
|
|
*
|
|
|
|
* @param func ui action call back
|
|
|
|
*/
|
|
|
|
ActionObject* playActionByName(const char* jsonName,const char* actionName, cocos2d::CallFunc* func);
|
2013-09-20 22:23:13 +08:00
|
|
|
|
2013-12-24 20:33:55 +08:00
|
|
|
/*init properties with json dictionay*/
|
2014-02-20 10:53:49 +08:00
|
|
|
void initWithDictionary(const char* jsonName,const rapidjson::Value &dic, Ref* root);
|
2014-06-23 10:02:09 +08:00
|
|
|
void initWithBinary(const char* file, Ref* root, CocoLoader* cocoLoader, stExpCocoNode* pCocoNode);
|
2014-06-18 15:55:01 +08:00
|
|
|
|
2013-09-20 22:23:13 +08:00
|
|
|
/**
|
2013-12-26 16:29:59 +08:00
|
|
|
* Release all actions.
|
|
|
|
*
|
|
|
|
*/
|
2013-09-20 22:23:13 +08:00
|
|
|
void releaseActions();
|
|
|
|
|
|
|
|
protected:
|
2013-12-27 10:50:50 +08:00
|
|
|
std::unordered_map<std::string, cocos2d::Vector<ActionObject*>> _actionDic;
|
2013-09-20 22:23:13 +08:00
|
|
|
};
|
|
|
|
|
2013-10-15 18:00:03 +08:00
|
|
|
}
|
2013-09-20 22:23:13 +08:00
|
|
|
|
|
|
|
#endif
|