NcEngine
AccessPolicy.h
Go to the documentation of this file.
1
5#pragma once
6
10#include "ncengine/ecs/Tag.h"
12
13#include <concepts>
14#include <type_traits>
15
16namespace nc::ecs
17{
19template<class T>
20concept RegistryType = Component<T> || std::same_as<Entity, T>;
21
23template<class F, class T>
24concept PoolInvocable = std::invocable<F, decltype(std::declval<ComponentRegistry*>()->GetPool<T>())>;
25
31template<FilterBase Base, class... Includes>
33{
34 public:
36 static constexpr auto base = Base;
37
39 using FilterType = std::conditional_t<Base == FilterBase::All,
40 detail::AllFilter,
41 std::conditional_t<Base == FilterBase::Basic,
42 detail::MatchFilter<Entity, Hierarchy, Tag, Transform, Includes...>,
43 detail::MatchFilter<Includes...>>>;
44
46 template<class... TargetIncludes>
47 static constexpr bool HasAccess = (FilterType::template included<TargetIncludes> && ...);
48
50 template<FilterBase TargetBase>
51 static constexpr bool BaseContains = Base >= TargetBase;
52
54 template<FilterBase TargetBase, class... TargetIncludes>
55 static constexpr bool ConvertibleTo = BaseContains<TargetBase> && HasAccess<TargetIncludes...>;
56
58 AccessPolicy(ComponentRegistry& registry) noexcept
59 : m_registry{&registry} {}
60
62 template<FilterBase TargetBase, class... TargetIncludes>
63 requires ConvertibleTo<TargetBase, TargetIncludes...>
64 operator AccessPolicy<TargetBase, TargetIncludes...>() const noexcept
65 {
66 return AccessPolicy<TargetBase, TargetIncludes...>{*m_registry};
67 }
68
70 template<RegistryType T>
71 requires HasAccess<T>
72 auto GetPool() const -> decltype(auto)
73 {
74 return m_registry->GetPool<T>();
75 }
76
78 template<RegistryType T>
79 requires HasAccess<T>
80 auto GetPool() -> decltype(auto)
81 {
82 return m_registry->GetPool<T>();
83 }
84
86 auto GetFreeComponentPool() -> decltype(auto)
87 {
88 return m_registry->GetFreeComponentPool();
89 }
90
92 auto GetFreeComponentPool() const -> decltype(auto)
93 {
94 return m_registry->GetFreeComponentPool();
95 }
96
99 requires BaseContains<FilterBase::All>
100 {
101 return m_registry->GetComponentPools();
102 }
103
104 private:
105 mutable ComponentRegistry* m_registry;
106};
107} // namespace nc::ecs
FilterBase
Filter option for AccessPolicy providing coarse control over type access.
Definition: EcsFilter.h:16
Identifies an object in the registry.
Definition: Entity.h:18
Component with translation, rotation, and scale properties.
Definition: Transform.h:33
A proxy for ComponentRegistry providing filtered access to data pools.
Definition: AccessPolicy.h:33
std::conditional_t< Base==FilterBase::All, detail::AllFilter, std::conditional_t< Base==FilterBase::Basic, detail::MatchFilter< Entity, Hierarchy, Tag, Transform, Includes... >, detail::MatchFilter< Includes... > > > FilterType
The policy's filter type.
Definition: AccessPolicy.h:43
AccessPolicy(ComponentRegistry &registry) noexcept
Construct an AccessPolicy object.
Definition: AccessPolicy.h:58
auto GetPool() -> decltype(auto)
Get the pool for a given type.
Definition: AccessPolicy.h:80
auto GetPool() const -> decltype(auto)
Get the pool for a given type.
Definition: AccessPolicy.h:72
auto GetComponentPools()
Get a range of pointers to all ComponentPoolBase instances.
Definition: AccessPolicy.h:98
auto GetFreeComponentPool() const -> decltype(auto)
Get the pool for all FreeComponents.
Definition: AccessPolicy.h:92
static constexpr bool HasAccess
Indicates whether all requested types are accessible by the policy.
Definition: AccessPolicy.h:47
static constexpr bool ConvertibleTo
Indicates whether the policy is convertible to another policy with the requested ruleset.
Definition: AccessPolicy.h:55
static constexpr bool BaseContains
Indicates the policy's FilterBase is at least as permissive as the requested base.
Definition: AccessPolicy.h:51
static constexpr auto base
The value of the policy's FilterBase.
Definition: AccessPolicy.h:36
auto GetFreeComponentPool() -> decltype(auto)
Get the pool for all FreeComponents.
Definition: AccessPolicy.h:86
Core collection of data pools and registration information game types.
Definition: ComponentRegistry.h:26
auto GetPool() -> ComponentPool< T > &
Get the pool for a registered component type.
Definition: ComponentRegistry.h:78
auto GetFreeComponentPool() -> FreeComponentPool &
Get the pool for all FreeComponents.
Definition: ComponentRegistry.h:109
auto GetComponentPools()
Get a view of all registered component pools as ComponentPoolBase*.
Definition: ComponentRegistry.h:120
Specifies a type is invocable with a data pool of type T.
Definition: AccessPolicy.h:24
Specifies a type satisfies the requirements to be managed by the ComponentRegistry.
Definition: AccessPolicy.h:20
Component managing an Entity's scene graph relationships.
Definition: Hierarchy.h:24
Component with a string tag.
Definition: Tag.h:23