matf-rg-engine  1.0.0
Base for project for the Computer Graphics course at Faculty of Mathematics, University of Belgrade
Controller.hpp
Go to the documentation of this file.
1 
6 #ifndef MATF_RG_PROJECT_CONTROLLER_HPP
7 #define MATF_RG_PROJECT_CONTROLLER_HPP
8 
9 #include <engine/util/Errors.hpp>
10 #include <memory>
11 #include <string_view>
12 #include <vector>
13 #include <typeinfo>
14 
15 namespace engine::core {
41  class Controller {
42  friend class App;
43 
44  public:
51  template<typename TController>
52  static TController *get(std::source_location location = std::source_location::current()) {
53  static_assert(std::is_base_of_v<Controller, TController>);
54  static TController *controller = create_if_absent<TController>();
55  RG_GUARANTEE(controller->is_registered(),
56  "Trying to get an unregistered controller in: {}:{}.\nPlease call register_controller<> first during App::app_setup.",
57  location.file_name(), location.line());
58  return controller;
59  }
60 
65  virtual std::string_view name() const {
66  return typeid(*this).name();
67  }
68 
69  virtual ~Controller() = default;
70 
77  this->m_next.push_back(next);
78  }
79 
85  void after(Controller *prev) {
86  prev->before(this);
87  }
88 
93  const std::vector<Controller *> &next() const {
94  return m_next;
95  }
96 
102  bool is_enabled() const {
103  return m_enabled;
104  }
105 
112  void set_enable(bool value) {
113  m_enabled = value;
114  }
115 
116  private:
118  m_registered = true;
119  }
120 
121  bool is_registered() const {
122  return m_registered;
123  }
124 
128  virtual void initialize() {
129  }
130 
135  virtual bool loop() {
136  return true;
137  }
138 
142  virtual void poll_events() {
143  }
144 
148  virtual void update() {
149  }
150 
154  virtual void begin_draw() {
155  }
156 
160  virtual void draw() {
161  }
162 
166  virtual void end_draw() {
167  }
168 
174  virtual void terminate() {
175  }
176 
177  template<typename TController>
178  static TController *create_if_absent() {
179  static_assert(std::is_base_of_v<Controller, TController>);
180  static std::unique_ptr<TController> controller = std::make_unique<TController>();
181  return controller.get();
182  }
183 
189  std::vector<Controller *> m_next{};
190 
194  bool m_registered{false};
195 
199  bool m_enabled{true};
200  };
201 
216  class EngineControllersBegin final : public Controller {
217  public:
218  std::string_view name() const override {
219  return "EngineControllersBegin";
220  }
221  };
222 
237  class EngineControllersEnd final : public Controller {
238  public:
239  std::string_view name() const override {
240  return "EngineControllersEnd";
241  }
242  };
243 } // namespace engine
244 
245 #endif//MATF_RG_PROJECT_CONTROLLER_HPP
Defines Error, UserError, and EngineError classes, along with macros for error handling.
#define RG_GUARANTEE(expr, msg,...)
Guarantees that an expression is true. If it is not, an engine::util::EngineError is thrown.
Definition: Errors.hpp:164
Defines the base App class that serves as the application core structure and the entry point.
Definition: App.hpp:45
Controllers are a hook into the App main loop execution. By overriding virtual functions of this clas...
Definition: Controller.hpp:41
virtual void initialize()
Initializes the controller. Executes in the core::App::initialize.
Definition: Controller.hpp:128
static TController * create_if_absent()
Definition: Controller.hpp:178
const std::vector< Controller * > & next() const
Definition: Controller.hpp:93
virtual void begin_draw()
Perform preparation for drawing. Executes in the core::App::draw, before core::Controller::draw.
Definition: Controller.hpp:154
void before(Controller *next)
Definition: Controller.hpp:76
static TController * get(std::source_location location=std::source_location::current())
Serves as a single access point for all the Controller types throughout the code base....
Definition: Controller.hpp:52
std::vector< Controller * > m_next
List of controllers that are dependent on this controller. If controller A is in the m_next,...
Definition: Controller.hpp:189
void set_enable(bool value)
Enables or disables the controller based on value. The engine::core::App executes only the enabled co...
Definition: Controller.hpp:112
void mark_as_registered()
Definition: Controller.hpp:117
bool m_enabled
Internal field used to control weather the engine::core::App executes the controller.
Definition: Controller.hpp:199
virtual std::string_view name() const
Definition: Controller.hpp:65
virtual ~Controller()=default
virtual void draw()
Draw the world state. Executes in the core::App::draw.
Definition: Controller.hpp:160
virtual bool loop()
Checks whether the main loop should continue. Executes in the core::App::loop.
Definition: Controller.hpp:135
bool m_registered
Internal Controller field used to ensure that the controller isn't registered twice.
Definition: Controller.hpp:194
virtual void poll_events()
Process internal and external events. Executes in the core::App::poll_events.
Definition: Controller.hpp:142
void after(Controller *prev)
Definition: Controller.hpp:85
bool is_enabled() const
Controller will execute as long this function returns true.
Definition: Controller.hpp:102
virtual void update()
Update the controller state and prepare for drawing. Executes in the core::App::update.
Definition: Controller.hpp:148
virtual void end_draw()
Finalize drawing. Executes in the core::App::draw, after engine::core::Controller::draw.
Definition: Controller.hpp:166
bool is_registered() const
Definition: Controller.hpp:121
virtual void terminate()
Terminate the controller. Executes in the core::App::terminate.
Definition: Controller.hpp:174
This controller does nothing and together with EngineControllersEnd it servers as a sentinel controll...
Definition: Controller.hpp:216
std::string_view name() const override
Definition: Controller.hpp:218
This controller does nothing and together with EngineControllersEnd it servers as a sentinel controll...
Definition: Controller.hpp:237
std::string_view name() const override
Definition: Controller.hpp:239
Definition: App.hpp:15