NcEngine
EcsFilter.h
Go to the documentation of this file.
1
5#pragma once
6
7#include <type_traits>
8
9namespace nc::ecs
10{
15enum class FilterBase
16{
17 None = 0, // Include only explicitly listed types and those derived from FreeComponent.
18 Basic = 1, // Include common types needed to enable operations and any explicitly requested types.
19 All = 2 // Include all types.
20};
21
23namespace detail
24{
25template<class... Ts>
26struct MatchFilter
27{
28 template<class T>
29 static constexpr auto included = (std::is_same_v<T, Ts> || ...);
30};
31
32struct AllFilter
33{
34 template<class T>
35 static constexpr auto included = true;
36};
37} // namespace detail
39} // namespace nc::ecs
FilterBase
Filter option for AccessPolicy providing coarse control over type access.
Definition: EcsFilter.h:16