2013-06-04 17:38:43 +08:00
|
|
|
/****************************************************************************
|
2018-01-29 16:25:32 +08:00
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2013-06-04 17:38:43 +08:00
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
https://axmolengine.github.io/
|
2013-06-04 17:38:43 +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:
|
|
|
|
|
|
|
|
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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-07-15 19:17:01 +08:00
|
|
|
#ifndef __AX_FRAMEWORK_COMPONENT_H__
|
|
|
|
#define __AX_FRAMEWORK_COMPONENT_H__
|
2013-06-04 17:38:43 +08:00
|
|
|
|
2015-03-24 20:23:51 +08:00
|
|
|
/// @cond DO_NOT_SHOW
|
2015-09-18 11:48:43 +08:00
|
|
|
#include <string>
|
2014-04-27 01:11:22 +08:00
|
|
|
#include "base/CCRef.h"
|
2014-05-17 05:36:00 +08:00
|
|
|
#include "base/CCScriptSupport.h"
|
2013-06-04 17:38:43 +08:00
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2013-06-04 17:38:43 +08:00
|
|
|
|
2014-02-20 10:53:49 +08:00
|
|
|
class Node;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
enum
|
|
|
|
{
|
2014-03-24 14:24:27 +08:00
|
|
|
kComponentOnEnter,
|
|
|
|
kComponentOnExit,
|
2015-06-04 14:08:47 +08:00
|
|
|
kComponentOnAdd,
|
|
|
|
kComponentOnRemove,
|
2014-03-24 14:24:27 +08:00
|
|
|
kComponentOnUpdate
|
|
|
|
};
|
|
|
|
|
2022-07-15 19:17:01 +08:00
|
|
|
class AX_DLL Component : public Ref
|
2013-06-04 17:38:43 +08:00
|
|
|
{
|
|
|
|
public:
|
2015-09-18 11:48:43 +08:00
|
|
|
static Component* create();
|
|
|
|
|
2013-09-13 13:52:42 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2015-09-18 11:48:43 +08:00
|
|
|
virtual ~Component();
|
|
|
|
|
2013-06-04 17:38:43 +08:00
|
|
|
virtual bool init();
|
2014-03-24 14:24:27 +08:00
|
|
|
|
2015-09-18 11:48:43 +08:00
|
|
|
bool isEnabled() const { return _enabled; }
|
|
|
|
virtual void setEnabled(bool enabled);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2021-12-26 23:26:34 +08:00
|
|
|
std::string_view getName() const { return _name; }
|
|
|
|
virtual void setName(std::string_view name) { _name = name; }
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2015-09-18 11:48:43 +08:00
|
|
|
Node* getOwner() const { return _owner; }
|
2021-12-25 10:04:45 +08:00
|
|
|
virtual void setOwner(Node* owner);
|
2015-09-18 11:48:43 +08:00
|
|
|
|
|
|
|
virtual void update(float delta);
|
|
|
|
virtual bool serialize(void* r);
|
|
|
|
|
2013-06-04 17:38:43 +08:00
|
|
|
virtual void onEnter();
|
|
|
|
virtual void onExit();
|
2015-06-04 14:06:31 +08:00
|
|
|
virtual void onAdd();
|
|
|
|
virtual void onRemove();
|
2015-09-18 11:48:43 +08:00
|
|
|
|
2022-03-18 21:46:07 +08:00
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
|
|
|
Component();
|
2014-03-26 16:39:32 +08:00
|
|
|
|
2013-06-04 17:38:43 +08:00
|
|
|
protected:
|
2015-09-18 11:48:43 +08:00
|
|
|
Node* _owner;
|
2013-06-15 14:03:30 +08:00
|
|
|
std::string _name;
|
|
|
|
bool _enabled;
|
2013-06-04 17:38:43 +08:00
|
|
|
};
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2013-06-04 17:38:43 +08:00
|
|
|
|
2015-03-24 20:23:51 +08:00
|
|
|
/// @endcond
|
2022-07-15 19:17:01 +08:00
|
|
|
#endif // __AX_FRAMEWORK_COMPONENT_H__
|