2 #ifndef MAINCONTROLLER_HPP
3 #define MAINCONTROLLER_HPP
15 std::string_view
name()
const override {
16 return "test::app::MainController";
Controllers are a hook into the App main loop execution. By overriding virtual functions of this clas...
Definition: Controller.hpp:41
Definition: MainController.hpp:13
bool loop() override
Checks whether the main loop should continue. Executes in the core::App::loop.
Definition: MainController.cpp:26
void draw() override
Draw the world state. Executes in the core::App::draw.
Definition: MainController.cpp:50
void update() override
Update the controller state and prepare for drawing. Executes in the core::App::update.
Definition: MainController.cpp:42
float m_backpack_scale
Definition: MainController.hpp:40
std::string_view name() const override
Definition: MainController.hpp:15
void draw_backpack()
Definition: MainController.cpp:59
bool m_cursor_enabled
Definition: MainController.hpp:42
void begin_draw() override
Perform preparation for drawing. Executes in the core::App::draw, before core::Controller::draw.
Definition: MainController.cpp:46
void initialize() override
Initializes the controller. Executes in the core::App::initialize.
Definition: MainController.cpp:17
void draw_skybox()
Definition: MainController.cpp:70
bool m_draw_gui
Definition: MainController.hpp:41
void update_camera()
Definition: MainController.cpp:76
void poll_events() override
Process internal and external events. Executes in the core::App::poll_events.
Definition: MainController.cpp:34
void end_draw() override
Finalize drawing. Executes in the core::App::draw, after engine::core::Controller::draw.
Definition: MainController.cpp:55
Definition: MainController.hpp:6
void on_mouse_move(engine::platform::MousePosition position) override
Called by engine::platform::PlatformController for every frame in which the mouse moved.
Definition: MainController.cpp:13
void on_key(engine::platform::Key key) override
Called by engine::platform::PlatformController for every frame in an event occurred on the keyboard o...
Definition: MainController.cpp:9
Definition: GUIController.hpp:6