23template<
class F,
class T>
24concept PoolInvocable = std::invocable<F, decltype(std::declval<ComponentRegistry*>()->GetPool<T>())>;
36 static constexpr auto base = Base;
39 using FilterType = std::conditional_t<Base == FilterBase::All,
41 std::conditional_t<Base == FilterBase::Basic,
43 detail::MatchFilter<Includes...>>>;
46 template<
class... TargetIncludes>
47 static constexpr bool HasAccess = (FilterType::template included<TargetIncludes> && ...);
50 template<FilterBase TargetBase>
54 template<
FilterBase TargetBase,
class... TargetIncludes>
59 : m_registry{®istry} {}
62 template<FilterBase TargetBase,
class... TargetIncludes>
64 operator AccessPolicy<TargetBase, TargetIncludes...>()
const noexcept
66 return AccessPolicy<TargetBase, TargetIncludes...>{*m_registry};
70 template<RegistryType T>
74 return m_registry->
GetPool<T>();
78 template<RegistryType T>
82 return m_registry->
GetPool<T>();
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
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 ®istry) 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