Registers Platform events such as mouse movement, key press, window events...
More...
#include <PlatformController.hpp>
|
template<typename TController > |
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. Make sure to register the controller via App::register_controller before calling this function. More...
|
|
Registers Platform events such as mouse movement, key press, window events...
◆ key()
const Key & engine::platform::PlatformController::key |
( |
KeyId |
key | ) |
const |
Get the state of the Key in the current frame.
- Parameters
-
- Returns
- The state of the key in the current frame
◆ mouse()
const MousePosition & engine::platform::PlatformController::mouse |
( |
| ) |
const |
◆ name()
std::string_view engine::platform::PlatformController::name |
( |
| ) |
const |
|
overridevirtual |
◆ window()
const Window* engine::platform::PlatformController::window |
( |
| ) |
const |
|
inline |
◆ register_platform_event_observer()
void engine::platform::PlatformController::register_platform_event_observer |
( |
std::unique_ptr< PlatformEventObserver > |
observer | ) |
|
◆ frame_time()
const FrameTime& engine::platform::PlatformController::frame_time |
( |
| ) |
const |
|
inline |
◆ dt()
float engine::platform::PlatformController::dt |
( |
| ) |
const |
|
inline |
Get elapsed time for the previous frame.
◆ set_enable_cursor()
void engine::platform::PlatformController::set_enable_cursor |
( |
bool |
enabled | ) |
|
Enables/disabled the visibility of the cursor on screen.
◆ swap_buffers()
void engine::platform::PlatformController::swap_buffers |
( |
| ) |
|
Swaps the current draw buffer for the main window. Should be called at the end of the frame.
◆ _platform_on_mouse()
void engine::platform::PlatformController::_platform_on_mouse |
( |
double |
x, |
|
|
double |
y |
|
) |
| |
Called from the platform-specific callback. You shouldn't call this function directly.
◆ _platform_on_keyboard()
void engine::platform::PlatformController::_platform_on_keyboard |
( |
int |
key, |
|
|
int |
action |
|
) |
| |
Called from the platform-specific callback. You shouldn't call this function directly.
◆ _platform_on_scroll()
void engine::platform::PlatformController::_platform_on_scroll |
( |
double |
x, |
|
|
double |
y |
|
) |
| |
Called from the platform-specific callback. You shouldn't call this function directly.
◆ _platform_on_framebuffer_resize()
void engine::platform::PlatformController::_platform_on_framebuffer_resize |
( |
int |
width, |
|
|
int |
height |
|
) |
| |
Called from the platform-specific callback. You shouldn't call this function directly.
◆ _platform_on_window_close()
void engine::platform::PlatformController::_platform_on_window_close |
( |
GLFWwindow * |
window | ) |
|
Called from the platform-specific callback. You shouldn't call this function directly.
◆ _platform_on_mouse_button()
void engine::platform::PlatformController::_platform_on_mouse_button |
( |
int |
button, |
|
|
int |
action |
|
) |
| |
◆ key_ref()
Key & engine::platform::PlatformController::key_ref |
( |
KeyId |
key | ) |
|
|
private |
◆ initialize()
void engine::platform::PlatformController::initialize |
( |
| ) |
|
|
overrideprivatevirtual |
Initializes the platform layer and registers platform-specific event callbacks.
Reimplemented from engine::core::Controller.
◆ terminate()
void engine::platform::PlatformController::terminate |
( |
| ) |
|
|
overrideprivatevirtual |
◆ loop()
bool engine::platform::PlatformController::loop |
( |
| ) |
|
|
overrideprivatevirtual |
◆ poll_events()
void engine::platform::PlatformController::poll_events |
( |
| ) |
|
|
overrideprivatevirtual |
◆ update_mouse()
void engine::platform::PlatformController::update_mouse |
( |
| ) |
|
|
private |
◆ update_key()
void engine::platform::PlatformController::update_key |
( |
Key & |
key_data | ) |
const |
|
private |
Updates the state of a key. Key states are repesented as a state machine with the following states: Released, JustPressed, Pressed, JustReleased. The state machine transitions are as follows:
- Released -> JustPressed if the key is pressed.
- JustPressed -> Pressed if the key is still pressed.
- Pressed -> JustReleased if the key is released.
- JustReleased -> Released if the key is released.
- Parameters
-
key_data | The key to update. |
◆ m_frame_time
FrameTime engine::platform::PlatformController::m_frame_time |
|
private |
◆ m_window
Window engine::platform::PlatformController::m_window |
|
private |
◆ m_keys
std::vector<Key> engine::platform::PlatformController::m_keys |
|
private |
◆ m_platform_event_observers
std::vector<std::unique_ptr<PlatformEventObserver> > engine::platform::PlatformController::m_platform_event_observers |
|
private |
The documentation for this class was generated from the following files: