NasNas
An intuitive and beginner friendly 2D game framework for C++
System.hpp
1 // Created by Modar Nasser on 16/08/2021.
2 
3 #pragma once
4 
5 #include <functional>
6 #include <utility>
7 
8 namespace ns::ecs {
9  namespace detail {
10  template <typename T>
11  class Registry;
12  }
13 
14  template <typename... TComps>
15  class System {
17  using FunctionType = std::function<void(TComps&...)>;
18  public:
19  System() = default;
20 
21  explicit System(FunctionType fn) {
22  set(fn);
23  }
24 
25  auto operator=(FunctionType fn) -> System<TComps...>& {
26  set(fn);
27  return *this;
28  }
29 
30  void operator() (TComps&... comps) {
31  m_function(comps...);
32  }
33 
34  private:
35  void set(FunctionType fn) {
36  m_function = std::move(fn);
37  }
38 
39  FunctionType m_function {};
40  };
41 }