NcEngine
EcsFilter.h
Go to the documentation of this file.
1
5
#pragma once
6
7
#include <type_traits>
8
9
namespace
nc::ecs
10
{
15
enum 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
23
namespace
detail
24
{
25
template
<
class
... Ts>
26
struct
MatchFilter
27
{
28
template
<
class
T>
29
static
constexpr
auto
included = (std::is_same_v<T, Ts> || ...);
30
};
31
32
struct
AllFilter
33
{
34
template
<
class
T>
35
static
constexpr
auto
included =
true
;
36
};
37
}
// namespace detail
39
}
// namespace nc::ecs
nc::ecs::FilterBase
FilterBase
Filter option for AccessPolicy providing coarse control over type access.
Definition:
EcsFilter.h:16
include
ncengine
ecs
EcsFilter.h
Generated by
1.9.4