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_COMCONTAINER_H__
|
|
|
|
#define __AX_FRAMEWORK_COMCONTAINER_H__
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/// @cond DO_NOT_SHOW
|
|
|
|
|
2023-06-11 13:08:08 +08:00
|
|
|
#include "base/Map.h"
|
2019-11-23 20:27:39 +08:00
|
|
|
#include <string>
|
|
|
|
|
2024-08-26 00:25:33 +08:00
|
|
|
namespace ax
|
|
|
|
{
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
class Component;
|
|
|
|
class Node;
|
|
|
|
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL ComponentContainer
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* @js ctor
|
|
|
|
*/
|
|
|
|
ComponentContainer(Node* node);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
~ComponentContainer();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
/**
|
2019-11-23 20:27:39 +08:00
|
|
|
* @js getComponent
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
Component* get(std::string_view name) const;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
bool add(Component* com);
|
2021-12-31 12:12:40 +08:00
|
|
|
bool remove(std::string_view name);
|
2021-12-25 10:04:45 +08:00
|
|
|
bool remove(Component* com);
|
2019-11-23 20:27:39 +08:00
|
|
|
void removeAll();
|
|
|
|
void visit(float delta);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
void onEnter();
|
|
|
|
void onExit();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
bool isEmpty() const { return _componentMap.empty(); }
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
private:
|
2021-12-31 12:12:40 +08:00
|
|
|
hlookup::string_map<Component*> _componentMap;
|
2021-12-25 10:04:45 +08:00
|
|
|
Node* _owner;
|
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
friend class Node;
|
|
|
|
};
|
|
|
|
|
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_COMCONTAINER_H__
|