2019-11-23 20:27:39 +08:00
|
|
|
|
/****************************************************************************
|
|
|
|
|
Copyright (c) 2015 cocos2d-x.org
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef __cocos2d_libs__CCObjectExtensionData__
|
|
|
|
|
#define __cocos2d_libs__CCObjectExtensionData__
|
|
|
|
|
|
|
|
|
|
#include <string>
|
2020-10-17 16:32:16 +08:00
|
|
|
|
#include "libeditor/CCComBase.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
#include "2d/CCComponent.h"
|
2020-10-17 16:32:16 +08:00
|
|
|
|
#include "libeditor/CocosStudioExport.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
|
|
namespace cocostudio
|
|
|
|
|
{
|
|
|
|
|
namespace timeline
|
|
|
|
|
{
|
|
|
|
|
class ActionTimelineData;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace cocostudio
|
|
|
|
|
{
|
2020-10-17 16:32:16 +08:00
|
|
|
|
class CCS_DLL ComExtensionData : public cocos2d::Component
|
2019-11-23 20:27:39 +08:00
|
|
|
|
{
|
|
|
|
|
DECLARE_CLASS_COMPONENT_INFO
|
|
|
|
|
public:
|
|
|
|
|
const static std::string COMPONENT_NAME;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @js NA
|
|
|
|
|
* @lua NA
|
|
|
|
|
*/
|
|
|
|
|
virtual void onEnter() override;
|
|
|
|
|
/**
|
|
|
|
|
* @js NA
|
|
|
|
|
* @lua NA
|
|
|
|
|
*/
|
|
|
|
|
virtual void onExit() override;
|
|
|
|
|
/**
|
|
|
|
|
* @js NA
|
|
|
|
|
* @lua NA
|
|
|
|
|
*/
|
|
|
|
|
virtual void onAdd() override;
|
|
|
|
|
/**
|
|
|
|
|
* @js NA
|
|
|
|
|
* @lua NA
|
|
|
|
|
*/
|
|
|
|
|
virtual void onRemove() override;
|
|
|
|
|
static ComExtensionData* create();
|
|
|
|
|
virtual bool init() override;
|
|
|
|
|
|
|
|
|
|
virtual void setCustomProperty(const std::string& customProperty) { _customProperty = customProperty; }
|
|
|
|
|
virtual std::string getCustomProperty() const { return _customProperty; };
|
|
|
|
|
|
|
|
|
|
virtual void setActionTag(int actionTag);
|
|
|
|
|
virtual int getActionTag() const;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
ComExtensionData();
|
|
|
|
|
~ComExtensionData();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
std::string _customProperty;
|
|
|
|
|
cocostudio::timeline::ActionTimelineData* _timelineData;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* defined(__cocos2d_libs__CCObjectExtensionData__) */
|