axmol/cocos/2d/CCComponent.h

84 lines
2.3 KiB
C
Raw Normal View History

2013-06-04 17:38:43 +08:00
/****************************************************************************
Copyright (c) 2013-2014 Chukong Technologies Inc.
2013-06-04 17:38:43 +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.
****************************************************************************/
#ifndef __CC_FRAMEWORK_COMPONENT_H__
#define __CC_FRAMEWORK_COMPONENT_H__
#include "base/CCRef.h"
2014-04-27 01:35:57 +08:00
#include "2d/CCScriptSupport.h"
2013-06-04 17:38:43 +08:00
#include <string>
NS_CC_BEGIN
class Node;
enum {
kComponentOnEnter,
kComponentOnExit,
kComponentOnUpdate
};
class CC_DLL Component : public Ref
2013-06-04 17:38:43 +08:00
{
2014-03-24 17:44:01 +08:00
CC_CONSTRUCTOR_ACCESS:
/**
* @js ctor
*/
Component(void);
2013-06-04 17:38:43 +08:00
public:
/**
* @js NA
* @lua NA
*/
virtual ~Component(void);
2013-06-04 17:38:43 +08:00
virtual bool init();
2013-06-04 17:38:43 +08:00
virtual void onEnter();
virtual void onExit();
virtual void update(float delta);
virtual bool serialize(void* r);
virtual bool isEnabled() const;
2013-06-04 17:38:43 +08:00
virtual void setEnabled(bool b);
static Component* create(void);
2013-06-04 17:38:43 +08:00
const std::string& getName() const;
void setName(const std::string& name);
2013-06-04 17:38:43 +08:00
void setOwner(Node *pOwner);
Node* getOwner() const;
2013-06-04 17:38:43 +08:00
protected:
Node *_owner;
std::string _name;
bool _enabled;
#if CC_ENABLE_SCRIPT_BINDING
ccScriptType _scriptType; ///< type of script binding, lua or javascript
#endif
2013-06-04 17:38:43 +08:00
};
NS_CC_END
#endif // __FUNDATION__CCCOMPONENT_H__