2014-01-07 11:47:11 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
2013-12-25 17:40:54 +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.
|
|
|
|
****************************************************************************/
|
|
|
|
#include "TriggerObj.h"
|
|
|
|
|
|
|
|
using namespace cocos2d;
|
|
|
|
|
|
|
|
namespace cocostudio {
|
|
|
|
|
|
|
|
BaseTriggerCondition::BaseTriggerCondition(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseTriggerCondition::~BaseTriggerCondition(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseTriggerCondition::init()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseTriggerCondition::detect()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseTriggerCondition::serialize(const rapidjson::Value &val)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseTriggerCondition::removeAll()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseTriggerAction::BaseTriggerAction(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseTriggerAction::~BaseTriggerAction(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BaseTriggerAction::init()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseTriggerAction::done()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseTriggerAction::serialize(const rapidjson::Value &val)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void BaseTriggerAction::removeAll()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TriggerObj::TriggerObj(void)
|
2013-12-25 19:46:09 +08:00
|
|
|
:_id(UINT_MAX)
|
2013-12-30 20:57:46 +08:00
|
|
|
,_enabled(true)
|
2013-12-25 17:40:54 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TriggerObj::~TriggerObj(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TriggerObj::init()
|
|
|
|
{
|
2013-12-25 19:46:09 +08:00
|
|
|
return true;
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
TriggerObj* TriggerObj::create()
|
|
|
|
{
|
|
|
|
TriggerObj * pRet = new TriggerObj();
|
|
|
|
if (pRet && pRet->init())
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
}
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TriggerObj::detect()
|
|
|
|
{
|
2014-03-04 23:55:36 +08:00
|
|
|
if (!_enabled || _cons.empty())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2013-12-30 20:57:46 +08:00
|
|
|
|
2014-03-11 22:02:55 +08:00
|
|
|
bool ret = false;
|
2013-12-25 19:46:09 +08:00
|
|
|
|
2013-12-30 20:57:46 +08:00
|
|
|
for (const auto& con : _cons)
|
2013-12-25 17:40:54 +08:00
|
|
|
{
|
2014-03-11 22:02:55 +08:00
|
|
|
ret = ret || con->detect();
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
|
|
|
|
2013-12-30 20:57:46 +08:00
|
|
|
return ret;
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TriggerObj::done()
|
|
|
|
{
|
2014-03-04 23:55:36 +08:00
|
|
|
if (!_enabled || _acts.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2013-12-25 17:40:54 +08:00
|
|
|
|
2013-12-30 20:57:46 +08:00
|
|
|
for (const auto& act : _acts)
|
2013-12-25 17:40:54 +08:00
|
|
|
{
|
|
|
|
act->done();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TriggerObj::removeAll()
|
|
|
|
{
|
2013-12-30 20:57:46 +08:00
|
|
|
for (const auto& con : _cons)
|
2013-12-25 17:40:54 +08:00
|
|
|
{
|
2013-12-25 19:46:09 +08:00
|
|
|
con->removeAll();
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
2013-12-30 20:57:46 +08:00
|
|
|
|
|
|
|
for (const auto& act : _acts)
|
2013-12-25 17:40:54 +08:00
|
|
|
{
|
2013-12-25 19:46:09 +08:00
|
|
|
act->removeAll();
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
2014-03-04 23:55:36 +08:00
|
|
|
|
|
|
|
for (const auto& lis : _listeners)
|
|
|
|
{
|
|
|
|
TriggerMng::getInstance()->removeEventListener(lis);
|
|
|
|
}
|
2013-12-25 19:46:09 +08:00
|
|
|
|
|
|
|
_cons.clear();
|
|
|
|
_acts.clear();
|
2014-03-04 23:55:36 +08:00
|
|
|
_listeners.clear();
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void TriggerObj::serialize(const rapidjson::Value &val)
|
|
|
|
{
|
2014-03-04 23:55:36 +08:00
|
|
|
_id = (unsigned int)(DICTOOL->getIntValue_json(val, "id"));
|
2013-12-25 17:40:54 +08:00
|
|
|
int count = DICTOOL->getArrayCount_json(val, "conditions");
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
const rapidjson::Value &subDict = DICTOOL->getSubDictionary_json(val, "conditions", i);
|
|
|
|
const char *classname = DICTOOL->getStringValue_json(subDict, "classname");
|
2013-12-26 01:17:04 +08:00
|
|
|
if (classname == nullptr)
|
2013-12-25 17:40:54 +08:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
BaseTriggerCondition *con = dynamic_cast<BaseTriggerCondition*>(ObjectFactory::getInstance()->createObject(classname));
|
2013-12-30 15:26:51 +08:00
|
|
|
if(con == nullptr)
|
|
|
|
{
|
|
|
|
CCLOG("class %s can not be implemented!", classname);
|
|
|
|
CCASSERT(con != nullptr, "");
|
|
|
|
}
|
|
|
|
|
|
|
|
CCASSERT(con != nullptr, "");
|
2013-12-25 17:40:54 +08:00
|
|
|
con->serialize(subDict);
|
2014-03-04 23:55:36 +08:00
|
|
|
con->init();
|
2013-12-25 19:46:09 +08:00
|
|
|
_cons.pushBack(con);
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
|
|
|
|
2014-03-04 23:55:36 +08:00
|
|
|
count = DICTOOL->getArrayCount_json(val, "actions");
|
|
|
|
for (int i = 0; i < count; ++i)
|
|
|
|
{
|
|
|
|
const rapidjson::Value &subDict = DICTOOL->getSubDictionary_json(val, "actions", i);
|
|
|
|
const char *classname = DICTOOL->getStringValue_json(subDict, "classname");
|
|
|
|
if (classname == nullptr)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
BaseTriggerAction *act = dynamic_cast<BaseTriggerAction*>(ObjectFactory::getInstance()->createObject(classname));
|
|
|
|
if(act == nullptr)
|
2013-12-30 15:26:51 +08:00
|
|
|
{
|
|
|
|
CCLOG("class %s can not be implemented!", classname);
|
|
|
|
CCASSERT(act != nullptr, "");
|
|
|
|
}
|
2014-03-04 23:55:36 +08:00
|
|
|
act->serialize(subDict);
|
|
|
|
act->init();
|
|
|
|
_acts.pushBack(act);
|
|
|
|
}
|
|
|
|
|
|
|
|
int length = DICTOOL->getArrayCount_json(val, "events");
|
|
|
|
for (int i = 0; i < length; ++i)
|
|
|
|
{
|
|
|
|
const rapidjson::Value &sub = DICTOOL->getSubDictionary_json(val, "events", i);
|
|
|
|
int event = DICTOOL->getIntValue_json(sub, "id");
|
|
|
|
if (event < 0)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* buf = new char[10];
|
|
|
|
sprintf(buf, "%d", event);
|
|
|
|
std::string custom_event_name(buf);
|
|
|
|
CC_SAFE_DELETE_ARRAY(buf);
|
|
|
|
|
|
|
|
EventListenerCustom *_listener = EventListenerCustom::create(custom_event_name, [=](EventCustom* event){
|
|
|
|
if (detect())
|
|
|
|
{
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
_listeners.pushBack(_listener);
|
|
|
|
TriggerMng::getInstance()->addEventListenerWithFixedPriority(_listener, 1);
|
|
|
|
}
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int TriggerObj::getId()
|
|
|
|
{
|
2014-03-04 23:55:36 +08:00
|
|
|
return _id;
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
|
|
|
|
2013-12-30 20:57:46 +08:00
|
|
|
void TriggerObj::setEnabled(bool enabled)
|
2013-12-25 17:40:54 +08:00
|
|
|
{
|
2014-03-04 23:55:36 +08:00
|
|
|
_enabled = enabled;
|
2013-12-25 17:40:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|