зеркало из https://github.com/microsoft/cocos2d-x.git
155 строки
3.4 KiB
C++
155 строки
3.4 KiB
C++
/****************************************************************************
|
|
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
|
|
|
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 "2d/CCComponent.h"
|
|
|
|
|
|
NS_CC_BEGIN
|
|
|
|
Component::Component(void)
|
|
: _owner(nullptr)
|
|
, _enabled(true)
|
|
{
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
|
ScriptEngineProtocol* engine = ScriptEngineManager::getInstance()->getScriptEngine();
|
|
_scriptType = engine != nullptr ? engine->getScriptType() : kScriptTypeNone;
|
|
#endif
|
|
}
|
|
|
|
Component::~Component(void)
|
|
{
|
|
}
|
|
|
|
bool Component::init()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
|
|
|
static bool sendComponentEventToJS(Component* node, int action)
|
|
{
|
|
auto scriptEngine = ScriptEngineManager::getInstance()->getScriptEngine();
|
|
|
|
if (scriptEngine->isCalledFromScript())
|
|
{
|
|
scriptEngine->setCalledFromScript(false);
|
|
}
|
|
else
|
|
{
|
|
BasicScriptData data(node,(void*)&action);
|
|
ScriptEvent scriptEvent(kComponentEvent,(void*)&data);
|
|
if (scriptEngine->sendEvent(&scriptEvent))
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
#endif
|
|
|
|
void Component::onEnter()
|
|
{
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
|
if (_scriptType == kScriptTypeJavascript)
|
|
{
|
|
if (sendComponentEventToJS(this, kComponentOnEnter))
|
|
return;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void Component::onExit()
|
|
{
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
|
if (_scriptType == kScriptTypeJavascript)
|
|
{
|
|
if (sendComponentEventToJS(this, kComponentOnExit))
|
|
return;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void Component::update(float delta)
|
|
{
|
|
#if CC_ENABLE_SCRIPT_BINDING
|
|
if (_scriptType == kScriptTypeJavascript)
|
|
{
|
|
if (sendComponentEventToJS(this, kComponentOnUpdate))
|
|
return;
|
|
}
|
|
#endif
|
|
}
|
|
|
|
bool Component::serialize(void *ar)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
Component* Component::create(void)
|
|
{
|
|
Component * ret = new (std::nothrow) Component();
|
|
if (ret != nullptr && ret->init())
|
|
{
|
|
ret->autorelease();
|
|
}
|
|
else
|
|
{
|
|
CC_SAFE_DELETE(ret);
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
const std::string& Component::getName() const
|
|
{
|
|
return _name;
|
|
}
|
|
|
|
void Component::setName(const std::string& name)
|
|
{
|
|
_name = name;
|
|
}
|
|
|
|
Node* Component::getOwner() const
|
|
{
|
|
return _owner;
|
|
}
|
|
|
|
void Component::setOwner(Node *owner)
|
|
{
|
|
_owner = owner;
|
|
}
|
|
|
|
bool Component::isEnabled() const
|
|
{
|
|
return _enabled;
|
|
}
|
|
|
|
void Component::setEnabled(bool b)
|
|
{
|
|
_enabled = b;
|
|
}
|
|
|
|
NS_CC_END
|