2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
2024-06-10 02:25:43 +08:00
|
|
|
https://axmol.dev/
|
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:
|
|
|
|
|
|
|
|
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-16 10:43:05 +08:00
|
|
|
#ifndef __AX_FRAMEWORK_COMPONENT_H__
|
|
|
|
#define __AX_FRAMEWORK_COMPONENT_H__
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/// @cond DO_NOT_SHOW
|
|
|
|
#include <string>
|
2024-05-03 22:15:08 +08:00
|
|
|
#include "base/Object.h"
|
2023-06-11 13:08:08 +08:00
|
|
|
#include "base/ScriptSupport.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2024-08-26 00:25:33 +08:00
|
|
|
namespace ax
|
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
class Node;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
enum
|
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
kComponentOnEnter,
|
|
|
|
kComponentOnExit,
|
|
|
|
kComponentOnAdd,
|
|
|
|
kComponentOnRemove,
|
|
|
|
kComponentOnUpdate
|
|
|
|
};
|
|
|
|
|
2024-05-03 22:15:08 +08:00
|
|
|
class AX_DLL Component : public Object
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static Component* create();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual ~Component();
|
|
|
|
|
|
|
|
virtual bool init();
|
|
|
|
|
|
|
|
bool isEnabled() const { return _enabled; }
|
|
|
|
virtual void setEnabled(bool enabled);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2021-12-31 12:12:40 +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
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
Node* getOwner() const { return _owner; }
|
2021-12-25 10:04:45 +08:00
|
|
|
virtual void setOwner(Node* owner);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
virtual void update(float delta);
|
|
|
|
virtual bool serialize(void* r);
|
|
|
|
|
|
|
|
virtual void onEnter();
|
|
|
|
virtual void onExit();
|
|
|
|
virtual void onAdd();
|
|
|
|
virtual void onRemove();
|
|
|
|
|
2022-03-18 21:46:07 +08:00
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
|
|
|
Component();
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
Node* _owner;
|
|
|
|
std::string _name;
|
|
|
|
bool _enabled;
|
|
|
|
};
|
|
|
|
|
2024-08-26 00:25:33 +08:00
|
|
|
}
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/// @endcond
|
2022-07-16 10:43:05 +08:00
|
|
|
#endif // __AX_FRAMEWORK_COMPONENT_H__
|