实体组件系统和共享公共基类型的多个组件
Entity Component System and multiple components sharing common base type
我正在尝试为我的游戏引擎实现一个简单的 ECS。我知道我的实现并非严格意义上的 ECS,但我正在重构我的代码以使其更加基于组件。到目前为止,我有以下 classes:
Entity
:它是组件的容器,因为我希望我的实体有多个相同类型的组件,所以它将它们存储在一个
std::map<ComponentID,std::vector<std::unique_ptr<Component>>>
。每个组件都有一个唯一的 ID(一个无符号整数),这是我从网上学到的一个简单的模板技巧中得到的:
名为 GetUniqueComponentID 的函数:
using ComponentID = unsigned int;
inline ComponentID GetUniqueComponentID()
{
static ComponentID id = 0;
return id++;
}
包含一个简单地生成递增数字的计数器。
我从名为 GetComponentID:
的函数模板调用此函数
template <typename T>
ComponentID GetComponentID()
{
static ComponentID id = GetUniqueComponentID();
return id;
}
此模板为我添加到我的实体中的每个组件实例化了一个不同的函数,因此需要检索组件的代码可以使用 GetComponentId<Component_type>
对地图进行索引,并将具体组件类型作为模板参数函数。
实体 class 有类似 AddComponent 和 GetComponent 的方法,它们分别创建一个组件并将其添加到实体,并检索一个组件(如果存在):
class Entity
{
public:
Entity();
~Entity();
template <typename T, typename... TArgs>
T &AddComponent(TArgs&&... args);
template <typename T>
bool HasComponent();
//template <typename T>
//T &GetComponent();
template <typename T>
std::vector<T*> GetComponents();
bool IsAlive() { return mIsAlive; }
void Destroy() { mIsAlive = false; }
private:
//std::map<ComponentID, std::unique_ptr<Component>> mComponents; // single component per type
std::map<ComponentID, std::vector<std::unique_ptr<Component>>> mComponents; // multiple components per type
bool mIsAlive = true;
};
template <typename T, typename... TArgs>
T &Entity::AddComponent(TArgs&&... args)
{
T *c = new T(std::forward<TArgs>(args)...);
std::unique_ptr<Component> component(c);
component->SetEntity(this);
mComponents[GetComponentID<T>()].push_back(std::move(component));
return *c;
}
template <typename T>
bool Entity::HasComponent() // use bitset (faster)
{
std::map<ComponentID, std::vector<std::unique_ptr<Component>>>::iterator it = mComponents.find(GetComponentID<T>());
if (it != mComponents.end())
return true;
return false;
}
template <typename T>
std::vector<T*> Entity::GetComponents()
{
std::vector<T*> components;
for (std::unique_ptr<Component> &component : mComponents[GetComponentID<T>()])
components.push_back(static_cast<T*>(component.get()));
return components;
}
由于我要存储多个相同类型的组件,所以我将它们存储在一个std::map<ComponentID,std::vector<std::unique_ptr<Component>>>
.
现在我的问题是:
我需要为一种类型的组件创建组件层次结构:我有一个 ForceGenerator 组件,它是各种具体 ForceGenerator(弹簧、重力等)的(抽象)基础 class。所以我需要创建具体的组件,但我需要通过指向基础的指针以多态方式使用它们 class:我的物理子系统只需要关心指向基础 ForceGenerator 的指针,调用它的 Update() 方法关心更新部队。
我不能使用当前的方法,因为我每次创建特定的 ForceGenerator 组件时都会用不同的类型调用 AddComponent,同时我需要将它们存储在同一个数组中(映射到基础的组件 ID力发生器)。
我该如何解决这个问题?
您可以像这样使用默认模板参数:
class Entity
{
template <typename T,typename StoreAs=T, typename... TArgs>
T &Entity::AddComponent(TArgs&&... args);
};
template <typename T,typename StoreAs, typename... TArgs>
T &Entity::AddComponent(TArgs&&... args)
{
T *c = new T(std::forward<TArgs>(args)...);
std::unique_ptr<Component> component(c);
component->SetEntity(this);
mComponents[GetComponentID<StoreAs()].push_back(std::move(component));
return *c;
}
被称为
entity.AddComponent<T>(...)//Will instatiate AddComponent<T,T,...>
entity.AddComponent<T,U>(...)//Will instatiate AddComponent<T,U,...>
您甚至可以更进一步,使用一些 SFINAE 仅在组件可以存储为该类型时启用此功能:(可能会或可能不会实际改善错误消息)
template <typename T,typename StoreAs, typename... TArgs>
std::enable_if_t<std::is_base_of_v<StoreAs,T>,T&> //Return type is `T&`
Entity::AddComponent(TArgs&&... args)
{
T *c = new T(std::forward<TArgs>(args)...);
std::unique_ptr<Component> component(c);
component->SetEntity(this);
mComponents[GetComponentID<StoreAs>()].push_back(std::move(component));
return *c;
}
我假设 Component
是所有组件的基础 class。如果您有一组有限的已知组件,则可以将它们存储在 std::variant<List types here>
而不是唯一指针中。
编辑:
显然 clang 抱怨:"template parameter redefines default argument"。 Gcc 不介意,但只是为了正确,将 StoreAs
初始化 StoreAs=T
仅放在实体 class 中,而不是执行。我编辑了源代码。
新提案
看了另一个答案我有了一个想法,你可以从另一个 CRTP 基 class 继承来定义存储位置(仅当使用映射存储时)。
示例:
//Just for check class
struct StoreAs {};
//Give the store type
template<typename T>
struct StoreAsT : public StoreAs {
using store_as_type = T;
};
//Some components
struct ComponentA { };
struct ComponentC { };
struct ComponentB : public StoreAsT<ComponentC> { };
//Dummy add
template<typename T>
void Add(T&& cmp) {
if constexpr(std::is_base_of_v<StoreAs, T>) {
std::cout << "Store as (remap)" << GetComponentID<typename T::store_as_type>() << std::endl;
} else {
std::cout << "Store as " << GetComponentID<T>() << std::endl;
}
}
//Example add
int main() {
Add(ComponentA {});
Add(ComponentB {});
Add(ComponentC {});
return 0;
}
输出:
Store as 0
Store as (remap)1
Store as 1
旧提议:
作为一种简单但非常冗长且不是通用解决方案的方法,您可以扩展 ID 生成技巧:
template <typename T>
ComponentID GetComponentID()
{
static ComponentID id = GetUniqueComponentID();
return id;
}
至
template <typename T>
struct ComponentIDGenerator {
static ComponentID GetComponentID() {
static ComponentID id = GetUniqueComponentID();
return id;
}
};
现在您需要使用 ComponenteIDGenerator::GetComponentID() 而不是使用 GetComponentID,但现在您可以创建特定的专业化。
因此,您可以专门重新映射一些 ID:
template<>
struct ComponentIDGenerator<SomeForce1> {
static ComponentID GetComponentID() {
return ComponentIDGenerator<NotRemappedForceType>::GetComponentID();
}
};
template<>
struct ComponentIDGenerator<SomeForce2> {
static ComponentID GetComponentID() {
return ComponentIDGenerator<NotRemappedForceType>::GetComponentID();
}
};
现在(SomeFroce1 和 SomeForce2)returns "NotRemappedForceType" 的 ID
最后恢复原来的功能:
template<typename T>
ComponentID GetComponentID() {
return ComponentIDGenerator<T>::GetComponentID();
}
我正在尝试为我的游戏引擎实现一个简单的 ECS。我知道我的实现并非严格意义上的 ECS,但我正在重构我的代码以使其更加基于组件。到目前为止,我有以下 classes:
Entity
:它是组件的容器,因为我希望我的实体有多个相同类型的组件,所以它将它们存储在一个
std::map<ComponentID,std::vector<std::unique_ptr<Component>>>
。每个组件都有一个唯一的 ID(一个无符号整数),这是我从网上学到的一个简单的模板技巧中得到的:
名为 GetUniqueComponentID 的函数:
using ComponentID = unsigned int;
inline ComponentID GetUniqueComponentID()
{
static ComponentID id = 0;
return id++;
}
包含一个简单地生成递增数字的计数器。 我从名为 GetComponentID:
的函数模板调用此函数template <typename T>
ComponentID GetComponentID()
{
static ComponentID id = GetUniqueComponentID();
return id;
}
此模板为我添加到我的实体中的每个组件实例化了一个不同的函数,因此需要检索组件的代码可以使用 GetComponentId<Component_type>
对地图进行索引,并将具体组件类型作为模板参数函数。
实体 class 有类似 AddComponent 和 GetComponent 的方法,它们分别创建一个组件并将其添加到实体,并检索一个组件(如果存在):
class Entity
{
public:
Entity();
~Entity();
template <typename T, typename... TArgs>
T &AddComponent(TArgs&&... args);
template <typename T>
bool HasComponent();
//template <typename T>
//T &GetComponent();
template <typename T>
std::vector<T*> GetComponents();
bool IsAlive() { return mIsAlive; }
void Destroy() { mIsAlive = false; }
private:
//std::map<ComponentID, std::unique_ptr<Component>> mComponents; // single component per type
std::map<ComponentID, std::vector<std::unique_ptr<Component>>> mComponents; // multiple components per type
bool mIsAlive = true;
};
template <typename T, typename... TArgs>
T &Entity::AddComponent(TArgs&&... args)
{
T *c = new T(std::forward<TArgs>(args)...);
std::unique_ptr<Component> component(c);
component->SetEntity(this);
mComponents[GetComponentID<T>()].push_back(std::move(component));
return *c;
}
template <typename T>
bool Entity::HasComponent() // use bitset (faster)
{
std::map<ComponentID, std::vector<std::unique_ptr<Component>>>::iterator it = mComponents.find(GetComponentID<T>());
if (it != mComponents.end())
return true;
return false;
}
template <typename T>
std::vector<T*> Entity::GetComponents()
{
std::vector<T*> components;
for (std::unique_ptr<Component> &component : mComponents[GetComponentID<T>()])
components.push_back(static_cast<T*>(component.get()));
return components;
}
由于我要存储多个相同类型的组件,所以我将它们存储在一个std::map<ComponentID,std::vector<std::unique_ptr<Component>>>
.
现在我的问题是:
我需要为一种类型的组件创建组件层次结构:我有一个 ForceGenerator 组件,它是各种具体 ForceGenerator(弹簧、重力等)的(抽象)基础 class。所以我需要创建具体的组件,但我需要通过指向基础的指针以多态方式使用它们 class:我的物理子系统只需要关心指向基础 ForceGenerator 的指针,调用它的 Update() 方法关心更新部队。
我不能使用当前的方法,因为我每次创建特定的 ForceGenerator 组件时都会用不同的类型调用 AddComponent,同时我需要将它们存储在同一个数组中(映射到基础的组件 ID力发生器)。
我该如何解决这个问题?
您可以像这样使用默认模板参数:
class Entity
{
template <typename T,typename StoreAs=T, typename... TArgs>
T &Entity::AddComponent(TArgs&&... args);
};
template <typename T,typename StoreAs, typename... TArgs>
T &Entity::AddComponent(TArgs&&... args)
{
T *c = new T(std::forward<TArgs>(args)...);
std::unique_ptr<Component> component(c);
component->SetEntity(this);
mComponents[GetComponentID<StoreAs()].push_back(std::move(component));
return *c;
}
被称为
entity.AddComponent<T>(...)//Will instatiate AddComponent<T,T,...>
entity.AddComponent<T,U>(...)//Will instatiate AddComponent<T,U,...>
您甚至可以更进一步,使用一些 SFINAE 仅在组件可以存储为该类型时启用此功能:(可能会或可能不会实际改善错误消息)
template <typename T,typename StoreAs, typename... TArgs>
std::enable_if_t<std::is_base_of_v<StoreAs,T>,T&> //Return type is `T&`
Entity::AddComponent(TArgs&&... args)
{
T *c = new T(std::forward<TArgs>(args)...);
std::unique_ptr<Component> component(c);
component->SetEntity(this);
mComponents[GetComponentID<StoreAs>()].push_back(std::move(component));
return *c;
}
我假设 Component
是所有组件的基础 class。如果您有一组有限的已知组件,则可以将它们存储在 std::variant<List types here>
而不是唯一指针中。
编辑:
显然 clang 抱怨:"template parameter redefines default argument"。 Gcc 不介意,但只是为了正确,将 StoreAs
初始化 StoreAs=T
仅放在实体 class 中,而不是执行。我编辑了源代码。
新提案
看了另一个答案我有了一个想法,你可以从另一个 CRTP 基 class 继承来定义存储位置(仅当使用映射存储时)。
示例:
//Just for check class
struct StoreAs {};
//Give the store type
template<typename T>
struct StoreAsT : public StoreAs {
using store_as_type = T;
};
//Some components
struct ComponentA { };
struct ComponentC { };
struct ComponentB : public StoreAsT<ComponentC> { };
//Dummy add
template<typename T>
void Add(T&& cmp) {
if constexpr(std::is_base_of_v<StoreAs, T>) {
std::cout << "Store as (remap)" << GetComponentID<typename T::store_as_type>() << std::endl;
} else {
std::cout << "Store as " << GetComponentID<T>() << std::endl;
}
}
//Example add
int main() {
Add(ComponentA {});
Add(ComponentB {});
Add(ComponentC {});
return 0;
}
输出:
Store as 0
Store as (remap)1
Store as 1
旧提议:
作为一种简单但非常冗长且不是通用解决方案的方法,您可以扩展 ID 生成技巧:
template <typename T>
ComponentID GetComponentID()
{
static ComponentID id = GetUniqueComponentID();
return id;
}
至
template <typename T>
struct ComponentIDGenerator {
static ComponentID GetComponentID() {
static ComponentID id = GetUniqueComponentID();
return id;
}
};
现在您需要使用 ComponenteIDGenerator::GetComponentID() 而不是使用 GetComponentID,但现在您可以创建特定的专业化。
因此,您可以专门重新映射一些 ID:
template<>
struct ComponentIDGenerator<SomeForce1> {
static ComponentID GetComponentID() {
return ComponentIDGenerator<NotRemappedForceType>::GetComponentID();
}
};
template<>
struct ComponentIDGenerator<SomeForce2> {
static ComponentID GetComponentID() {
return ComponentIDGenerator<NotRemappedForceType>::GetComponentID();
}
};
现在(SomeFroce1 和 SomeForce2)returns "NotRemappedForceType" 的 ID
最后恢复原来的功能:
template<typename T>
ComponentID GetComponentID() {
return ComponentIDGenerator<T>::GetComponentID();
}