2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
2020-10-17 16:32:16 +08:00
|
|
|
Copyright (c) 2013-2017 Chukong Technologies Inc.
|
2019-11-23 20:27:39 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-10-21 10:12:00 +08:00
|
|
|
#include "TriggerMng.h"
|
2020-05-06 15:42:25 +08:00
|
|
|
#include "rapidjson/prettywriter.h"
|
|
|
|
#include "rapidjson/stringbuffer.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#include "base/CCDirector.h"
|
|
|
|
#include "base/CCEventDispatcher.h"
|
|
|
|
#include "base/ccUtils.h"
|
|
|
|
#include "base/CCEventCustom.h"
|
|
|
|
|
|
|
|
using namespace cocos2d;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace cocostudio
|
|
|
|
{
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
TriggerMng* TriggerMng::_sharedTriggerMng = nullptr;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
TriggerMng::TriggerMng(void) : _movementDispatches(new std::unordered_map<Armature*, ArmatureMovementDispatcher*>)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
_eventDispatcher = Director::getInstance()->getEventDispatcher();
|
|
|
|
_eventDispatcher->retain();
|
|
|
|
}
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
TriggerMng::~TriggerMng(void)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
removeAll();
|
2021-12-25 10:04:45 +08:00
|
|
|
_triggerObjs.clear();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
removeAllArmatureMovementCallBack();
|
|
|
|
CC_SAFE_DELETE(_movementDispatches);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
CC_SAFE_RELEASE(_eventDispatcher);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char* TriggerMng::triggerMngVersion()
|
|
|
|
{
|
|
|
|
return "1.0.0.0";
|
|
|
|
}
|
|
|
|
|
|
|
|
TriggerMng* TriggerMng::getInstance()
|
|
|
|
{
|
|
|
|
if (nullptr == _sharedTriggerMng)
|
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
_sharedTriggerMng = new TriggerMng();
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
return _sharedTriggerMng;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TriggerMng::destroyInstance()
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(_sharedTriggerMng);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void TriggerMng::parse(const rapidjson::Value& root)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
CCLOG("%s", triggerMngVersion());
|
|
|
|
int count = DICTOOL->getArrayCount_json(root, "Triggers");
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
|
|
|
ScriptEngineProtocol* engine = ScriptEngineManager::getInstance()->getScriptEngine();
|
2021-12-25 10:04:45 +08:00
|
|
|
bool useBindings = engine != nullptr;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
if (useBindings)
|
|
|
|
{
|
|
|
|
if (count > 0)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
const rapidjson::Value& subDict = DICTOOL->getSubDictionary_json(root, "Triggers");
|
2019-11-23 20:27:39 +08:00
|
|
|
rapidjson::StringBuffer buffer;
|
|
|
|
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
|
|
|
|
subDict.Accept(writer);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
engine->parseConfig(ScriptEngineProtocol::ConfigType::COCOSTUDIO, buffer.GetString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif // #if CC_ENABLE_SCRIPT_BINDING
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
const rapidjson::Value& subDict = DICTOOL->getSubDictionary_json(root, "Triggers", i);
|
|
|
|
TriggerObj* obj = TriggerObj::create();
|
2019-11-23 20:27:39 +08:00
|
|
|
obj->serialize(subDict);
|
|
|
|
_triggerObjs.insert(std::pair<unsigned int, TriggerObj*>(obj->getId(), obj));
|
|
|
|
obj->retain();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
void TriggerMng::parse(cocostudio::CocoLoader* pCocoLoader, cocostudio::stExpCocoNode* pCocoNode)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
CCLOG("%s", triggerMngVersion());
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
int count = pCocoNode[13].GetChildNum();
|
|
|
|
stExpCocoNode* pTriggersArray = pCocoNode[13].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
|
|
|
ScriptEngineProtocol* engine = ScriptEngineManager::getInstance()->getScriptEngine();
|
2021-12-25 10:04:45 +08:00
|
|
|
bool useBindings = engine != nullptr;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
if (useBindings)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (count > 0)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
rapidjson::Document document;
|
|
|
|
buildJson(document, pCocoLoader, pCocoNode);
|
|
|
|
rapidjson::StringBuffer buffer;
|
|
|
|
rapidjson::Writer<rapidjson::StringBuffer> writer(buffer);
|
|
|
|
document.Accept(writer);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
engine->parseConfig(ScriptEngineProtocol::ConfigType::COCOSTUDIO, buffer.GetString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif // #if CC_ENABLE_SCRIPT_BINDING
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
TriggerObj* obj = TriggerObj::create();
|
2019-11-23 20:27:39 +08:00
|
|
|
obj->serialize(pCocoLoader, &pTriggersArray[i]);
|
|
|
|
_triggerObjs.insert(std::pair<unsigned int, TriggerObj*>(obj->getId(), obj));
|
|
|
|
obj->retain();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TriggerObj* TriggerMng::getTriggerObj(unsigned int id) const
|
|
|
|
{
|
|
|
|
auto iter = _triggerObjs.find(id);
|
|
|
|
if (iter == _triggerObjs.end())
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return iter->second;
|
|
|
|
}
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
void TriggerMng::removeAll(void)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
auto etIter = _triggerObjs.begin();
|
2021-12-25 10:04:45 +08:00
|
|
|
for (; etIter != _triggerObjs.end(); ++etIter)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
etIter->second->removeAll();
|
|
|
|
CC_SAFE_DELETE(etIter->second);
|
|
|
|
}
|
|
|
|
_triggerObjs.clear();
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
bool TriggerMng::removeTriggerObj(TriggerObj* Obj)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
if (Obj == nullptr)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return removeTriggerObj(Obj->getId());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TriggerMng::removeTriggerObj(unsigned int id)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
TriggerObj* obj = getTriggerObj(id);
|
|
|
|
if (obj == nullptr)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2019-11-23 20:27:39 +08:00
|
|
|
obj->removeAll();
|
|
|
|
_triggerObjs.erase(id);
|
2021-12-25 10:04:45 +08:00
|
|
|
return true;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
bool TriggerMng::isEmpty(void) const
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
return _triggerObjs.empty();
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void TriggerMng::buildJson(rapidjson::Document& document,
|
|
|
|
cocostudio::CocoLoader* pCocoLoader,
|
|
|
|
cocostudio::stExpCocoNode* pCocoNode)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
int count = pCocoNode[13].GetChildNum();
|
2019-11-23 20:27:39 +08:00
|
|
|
int length = 0;
|
2021-12-25 10:04:45 +08:00
|
|
|
int num = 0;
|
|
|
|
int size = 0;
|
2019-11-23 20:27:39 +08:00
|
|
|
int extent = 0;
|
|
|
|
int border = 0;
|
|
|
|
std::string key0;
|
2021-12-25 10:04:45 +08:00
|
|
|
stExpCocoNode* pTriggersArray = pCocoNode[13].GetChildArray(pCocoLoader);
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
document.SetArray();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
rapidjson::Document::AllocatorType& allocator = document.GetAllocator();
|
|
|
|
for (int i0 = 0; i0 < count; ++i0)
|
|
|
|
{
|
|
|
|
rapidjson::Value vElemItem(rapidjson::kObjectType);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
border = pTriggersArray[i0].GetChildNum();
|
|
|
|
stExpCocoNode* pTriggerArray = pTriggersArray[i0].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i1 = 0; i1 < border; ++i1)
|
|
|
|
{
|
|
|
|
std::string key1 = pTriggerArray[i1].GetName(pCocoLoader);
|
2021-12-25 10:04:45 +08:00
|
|
|
const char* str1 = pTriggerArray[i1].GetValue(pCocoLoader);
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
if (key1.compare("actions") == 0)
|
|
|
|
{
|
|
|
|
rapidjson::Value actionsItem(rapidjson::kArrayType);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
length = pTriggerArray[i1].GetChildNum();
|
|
|
|
stExpCocoNode* pActionsArray = pTriggerArray[i1].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i2 = 0; i2 < length; ++i2)
|
|
|
|
{
|
|
|
|
rapidjson::Value action(rapidjson::kObjectType);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
num = pActionsArray[i2].GetChildNum();
|
|
|
|
stExpCocoNode* pActionArray = pActionsArray[i2].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i3 = 0; i3 < num; ++i3)
|
|
|
|
{
|
|
|
|
std::string key2 = pActionArray[i3].GetName(pCocoLoader);
|
2021-12-25 10:04:45 +08:00
|
|
|
const char* str2 = pActionArray[i3].GetValue(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
if (key2.compare("classname") == 0)
|
|
|
|
{
|
|
|
|
if (str2 != nullptr)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
action.AddMember("classname", rapidjson::Value(str2, allocator), allocator);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (key2.compare("dataitems") == 0)
|
|
|
|
{
|
|
|
|
rapidjson::Value dataitems(rapidjson::kArrayType);
|
2021-12-25 10:04:45 +08:00
|
|
|
size = pActionArray[i3].GetChildNum();
|
|
|
|
stExpCocoNode* pDataItemsArray = pActionArray[i3].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i4 = 0; i4 < size; ++i4)
|
|
|
|
{
|
|
|
|
rapidjson::Value dataitem(rapidjson::kObjectType);
|
2021-12-25 10:04:45 +08:00
|
|
|
extent = pDataItemsArray[i4].GetChildNum();
|
|
|
|
stExpCocoNode* pDataItemArray = pDataItemsArray[i4].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i5 = 0; i5 < extent; ++i5)
|
|
|
|
{
|
|
|
|
std::string key3 = pDataItemArray[i5].GetName(pCocoLoader);
|
2021-12-25 10:04:45 +08:00
|
|
|
const char* str3 = pDataItemArray[i5].GetValue(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
if (key3.compare("key") == 0)
|
|
|
|
{
|
|
|
|
if (str3 != nullptr)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
dataitem.AddMember("key", rapidjson::Value(str3, allocator), allocator);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rapidjson::Type type = pDataItemArray[i5].GetType(pCocoLoader);
|
|
|
|
if (type == rapidjson::kStringType)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
dataitem.AddMember("value", rapidjson::Value(str3, allocator), allocator);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
int nV = atoi(str3);
|
2019-11-23 20:27:39 +08:00
|
|
|
float fV = utils::atof(str3);
|
|
|
|
if (fabs(nV - fV) < 0.0000001)
|
|
|
|
{
|
|
|
|
dataitem.AddMember("value", nV, allocator);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dataitem.AddMember("value", fV, allocator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dataitems.PushBack(dataitem, allocator);
|
|
|
|
}
|
|
|
|
action.AddMember("dataitems", dataitems, allocator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
actionsItem.PushBack(action, allocator);
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
vElemItem.AddMember("actions", actionsItem, allocator);
|
|
|
|
}
|
|
|
|
else if (key1.compare("conditions") == 0)
|
|
|
|
{
|
|
|
|
rapidjson::Value condsItem(rapidjson::kArrayType);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
length = pTriggerArray[i1].GetChildNum();
|
|
|
|
stExpCocoNode* pConditionsArray = pTriggerArray[i1].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i6 = 0; i6 < length; ++i6)
|
|
|
|
{
|
|
|
|
rapidjson::Value cond(rapidjson::kObjectType);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
num = pConditionsArray[i6].GetChildNum();
|
|
|
|
stExpCocoNode* pConditionArray = pConditionsArray[i6].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i7 = 0; i7 < num; ++i7)
|
|
|
|
{
|
|
|
|
std::string key4 = pConditionArray[i7].GetName(pCocoLoader);
|
2021-12-25 10:04:45 +08:00
|
|
|
const char* str4 = pConditionArray[i7].GetValue(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
if (key4.compare("classname") == 0)
|
|
|
|
{
|
|
|
|
if (str4 != nullptr)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
cond.AddMember("classname", rapidjson::Value(str4, allocator), allocator);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (key4.compare("dataitems") == 0)
|
|
|
|
{
|
|
|
|
rapidjson::Value dataitems(rapidjson::kArrayType);
|
2021-12-25 10:04:45 +08:00
|
|
|
size = pConditionArray[i7].GetChildNum();
|
|
|
|
stExpCocoNode* pDataItemsArray = pConditionArray[i7].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i8 = 0; i8 < size; ++i8)
|
|
|
|
{
|
|
|
|
rapidjson::Value dataitem(rapidjson::kObjectType);
|
2021-12-25 10:04:45 +08:00
|
|
|
extent = pDataItemsArray[i8].GetChildNum();
|
|
|
|
stExpCocoNode* pDataItemArray = pDataItemsArray[i8].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i9 = 0; i9 < extent; ++i9)
|
|
|
|
{
|
|
|
|
std::string key5 = pDataItemArray[i9].GetName(pCocoLoader);
|
2021-12-25 10:04:45 +08:00
|
|
|
const char* str5 = pDataItemArray[i9].GetValue(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
if (key5.compare("key") == 0)
|
|
|
|
{
|
|
|
|
if (str5 != nullptr)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
dataitem.AddMember("key", rapidjson::Value(str5, allocator), allocator);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rapidjson::Type type = pDataItemArray[i9].GetType(pCocoLoader);
|
|
|
|
if (type == rapidjson::kStringType)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
dataitem.AddMember("value", rapidjson::Value(str5, allocator), allocator);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
int nV = atoi(str5);
|
2019-11-23 20:27:39 +08:00
|
|
|
float fV = utils::atof(str5);
|
|
|
|
if (fabs(nV - fV) < 0.0000001)
|
|
|
|
{
|
|
|
|
dataitem.AddMember("value", nV, allocator);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dataitem.AddMember("value", fV, allocator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dataitems.PushBack(dataitem, allocator);
|
|
|
|
}
|
|
|
|
cond.AddMember("dataitems", dataitems, allocator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
condsItem.PushBack(cond, allocator);
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
vElemItem.AddMember("conditions", condsItem, allocator);
|
|
|
|
}
|
|
|
|
else if (key1.compare("events") == 0)
|
|
|
|
{
|
|
|
|
rapidjson::Value eventsItem(rapidjson::kArrayType);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
length = pTriggerArray[i1].GetChildNum();
|
|
|
|
stExpCocoNode* pEventsArray = pTriggerArray[i1].GetChildArray(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
for (int i10 = 0; i10 < length; ++i10)
|
|
|
|
{
|
|
|
|
rapidjson::Value event(rapidjson::kObjectType);
|
2021-12-25 10:04:45 +08:00
|
|
|
stExpCocoNode* pEventArray = pEventsArray->GetChildArray(pCocoLoader);
|
|
|
|
std::string key6 = pEventArray[0].GetName(pCocoLoader);
|
|
|
|
const char* str6 = pEventArray[0].GetValue(pCocoLoader);
|
2019-11-23 20:27:39 +08:00
|
|
|
if (key6.compare("id") == 0 && str6 != nullptr)
|
|
|
|
{
|
|
|
|
event.AddMember("id", atoi(str6), allocator);
|
|
|
|
eventsItem.PushBack(event, allocator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vElemItem.AddMember("events", eventsItem, allocator);
|
|
|
|
}
|
|
|
|
else if (key1.compare("id") == 0)
|
|
|
|
{
|
|
|
|
if (str1 != nullptr)
|
|
|
|
{
|
|
|
|
vElemItem.AddMember("id", atoi(str1), allocator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
document.PushBack(vElemItem, allocator);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void TriggerMng::addArmatureMovementCallBack(Armature* pAr, Ref* pTarget, SEL_MovementEventCallFunc mecf)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (pAr == nullptr || _movementDispatches == nullptr || pTarget == nullptr || mecf == nullptr)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto iter = _movementDispatches->find(pAr);
|
|
|
|
ArmatureMovementDispatcher* amd = nullptr;
|
|
|
|
if (iter == _movementDispatches->end())
|
|
|
|
{
|
|
|
|
amd = new ArmatureMovementDispatcher();
|
|
|
|
pAr->getAnimation()->setMovementEventCallFunc(CC_CALLBACK_0(ArmatureMovementDispatcher::animationEvent, amd,
|
|
|
|
std::placeholders::_1, std::placeholders::_2,
|
|
|
|
std::placeholders::_3));
|
|
|
|
amd->addAnimationEventCallBack(pTarget, mecf);
|
|
|
|
_movementDispatches->emplace(pAr, amd);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
amd = iter->second;
|
2019-11-23 20:27:39 +08:00
|
|
|
amd->addAnimationEventCallBack(pTarget, mecf);
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void TriggerMng::removeArmatureMovementCallBack(Armature* pAr, Ref* pTarget, SEL_MovementEventCallFunc mecf)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (pAr == nullptr || _movementDispatches == nullptr || pTarget == nullptr || mecf == nullptr)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto iter = _movementDispatches->find(pAr);
|
|
|
|
ArmatureMovementDispatcher* amd = nullptr;
|
|
|
|
if (iter == _movementDispatches->end())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
amd = iter->second;
|
|
|
|
amd->removeAnnimationEventCallBack(pTarget, mecf);
|
|
|
|
}
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void TriggerMng::removeArmatureAllMovementCallBack(Armature* pAr)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
if (pAr == nullptr)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto iter = _movementDispatches->find(pAr);
|
|
|
|
if (iter == _movementDispatches->end())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(iter->second);
|
|
|
|
_movementDispatches->erase(iter);
|
|
|
|
}
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TriggerMng::removeAllArmatureMovementCallBack()
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
auto iter = _movementDispatches->begin();
|
|
|
|
while (iter != _movementDispatches->end())
|
|
|
|
{
|
|
|
|
removeArmatureAllMovementCallBack(iter->first);
|
|
|
|
}
|
|
|
|
_movementDispatches->clear();
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TriggerMng::dispatchEvent(cocos2d::EventCustom* tEvent)
|
|
|
|
{
|
|
|
|
_eventDispatcher->dispatchEvent(tEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TriggerMng::removeEventListener(cocos2d::EventListener* listener)
|
|
|
|
{
|
|
|
|
_eventDispatcher->removeEventListener(listener);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TriggerMng::addEventListenerWithFixedPriority(cocos2d::EventListener* listener, int fixedPriority)
|
|
|
|
{
|
|
|
|
_eventDispatcher->addEventListenerWithFixedPriority(listener, fixedPriority);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
ArmatureMovementDispatcher::ArmatureMovementDispatcher(void) : _mapEventAnimation(nullptr)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_mapEventAnimation = new std::unordered_map<Ref*, SEL_MovementEventCallFunc>;
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2020-10-17 16:32:16 +08:00
|
|
|
ArmatureMovementDispatcher::~ArmatureMovementDispatcher(void)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
_mapEventAnimation->clear();
|
|
|
|
CC_SAFE_DELETE(_mapEventAnimation);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void ArmatureMovementDispatcher::animationEvent(Armature* armature,
|
|
|
|
MovementEventType movementType,
|
2021-12-28 21:27:32 +08:00
|
|
|
std::string_view movementID)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
|
|
|
for (auto iter = _mapEventAnimation->begin(); iter != _mapEventAnimation->end(); ++iter)
|
|
|
|
{
|
|
|
|
(iter->first->*iter->second)(armature, movementType, movementID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ArmatureMovementDispatcher::addAnimationEventCallBack(Ref* pTarget, SEL_MovementEventCallFunc mecf)
|
|
|
|
{
|
|
|
|
_mapEventAnimation->emplace(pTarget, mecf);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ArmatureMovementDispatcher::removeAnnimationEventCallBack(Ref* pTarget, SEL_MovementEventCallFunc /*mecf*/)
|
|
|
|
{
|
|
|
|
_mapEventAnimation->erase(pTarget);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
} // namespace cocostudio
|