2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (C) 2013 Henry van Merode. All rights reserved.
|
|
|
|
Copyright (c) 2015-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-02-24 18:51:36 +08:00
|
|
|
https://adxeproject.github.io/
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
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:
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
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 "CCPUEventHandlerTranslator.h"
|
2020-08-03 20:31:47 +08:00
|
|
|
#include "Particle3D/PU/CCPUParticleSystem3D.h"
|
|
|
|
#include "Particle3D/PU/CCPUEventHandlerManager.h"
|
|
|
|
#include "Particle3D/PU/CCPUObserver.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
PUEventHandlerTranslator::PUEventHandlerTranslator() : _handler(nullptr) {}
|
2019-11-23 20:27:39 +08:00
|
|
|
//-------------------------------------------------------------------------
|
2021-12-25 10:04:45 +08:00
|
|
|
void PUEventHandlerTranslator::translate(PUScriptCompiler* compiler, PUAbstractNode* node)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
PUObjectAbstractNode* obj = reinterpret_cast<PUObjectAbstractNode*>(node);
|
2019-11-23 20:27:39 +08:00
|
|
|
PUObjectAbstractNode* parent = obj->parent ? reinterpret_cast<PUObjectAbstractNode*>(obj->parent) : 0;
|
|
|
|
|
|
|
|
// The name of the obj is the type of the ParticleEventHandler
|
2021-12-25 10:04:45 +08:00
|
|
|
// Remark: This can be solved by using a listener, so that obj->values is filled with type + name. Something for
|
|
|
|
// later
|
2019-11-23 20:27:39 +08:00
|
|
|
std::string type;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!obj->name.empty())
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
type = obj->name;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
PUScriptTranslator* particleEventHandlerTranlator = PUEventHandlerManager::Instance()->getTranslator(type);
|
|
|
|
if (!particleEventHandlerTranlator)
|
|
|
|
return;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
// Create the ParticleEventHandler
|
2021-12-25 10:04:45 +08:00
|
|
|
// mParticleEventHandler = ParticleSystemManager::getSingletonPtr()->createEventHandler(type);
|
2019-11-23 20:27:39 +08:00
|
|
|
_handler = PUEventHandlerManager::Instance()->createEventHandler(type);
|
|
|
|
if (!_handler)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_handler->setEventHandlerType(type);
|
|
|
|
if (parent && parent->context)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
PUObserver* observer = static_cast<PUObserver*>(parent->context);
|
2019-11-23 20:27:39 +08:00
|
|
|
observer->addEventHandler(_handler);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//// It is an alias
|
2021-12-25 10:04:45 +08:00
|
|
|
// mParticleEventHandler->setAliasName(parent->name);
|
|
|
|
// ParticleSystemManager::getSingletonPtr()->addAlias(mParticleEventHandler);
|
2019-11-23 20:27:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// The first value is the (optional) name
|
|
|
|
std::string name;
|
2021-12-25 10:04:45 +08:00
|
|
|
if (!obj->values.empty())
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
getString(*obj->values.front(), &name);
|
|
|
|
_handler->setName(name);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set it in the context
|
|
|
|
obj->context = _handler;
|
|
|
|
|
|
|
|
// Run through properties
|
2021-12-25 10:04:45 +08:00
|
|
|
for (PUAbstractNodeList::iterator i = obj->children.begin(); i != obj->children.end(); ++i)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
// No properties of its own
|
2021-12-25 10:04:45 +08:00
|
|
|
if ((*i)->type == ANT_PROPERTY)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
PUPropertyAbstractNode* prop = reinterpret_cast<PUPropertyAbstractNode*>((*i));
|
|
|
|
if (particleEventHandlerTranlator->translateChildProperty(compiler, *i))
|
|
|
|
{
|
|
|
|
// Parsed the property by another translator; do nothing
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
errorUnexpectedProperty(compiler, prop);
|
|
|
|
}
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
else if ((*i)->type == ANT_OBJECT)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
if (particleEventHandlerTranlator->translateChildObject(compiler, *i))
|
|
|
|
{
|
|
|
|
// Parsed the object by another translator; do nothing
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
processNode(compiler, *i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
errorUnexpectedToken(compiler, *i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_END
|