6 #ifndef MATF_RG_PROJECT_CONTROLLER_HPP
7 #define MATF_RG_PROJECT_CONTROLLER_HPP
11 #include <string_view>
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>();
56 "Trying to get an unregistered controller in: {}:{}.\nPlease call register_controller<> first during App::app_setup.",
57 location.file_name(), location.line());
65 virtual std::string_view
name()
const {
66 return typeid(*this).name();
77 this->
m_next.push_back(next);
93 const std::vector<Controller *> &
next()
const {
177 template<
typename TController>
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();
218 std::string_view
name()
const override {
219 return "EngineControllersBegin";
239 std::string_view
name()
const override {
240 return "EngineControllersEnd";
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