matf-rg-engine  1.0.0
Base for project for the Computer Graphics course at Faculty of Mathematics, University of Belgrade
PlatformController.hpp
Go to the documentation of this file.
1 
6 #ifndef MATF_RG_PROJECT_PLATFORM_H
7 #define MATF_RG_PROJECT_PLATFORM_H
8 
10 #include <memory>
11 #include <vector>
15 
16 struct GLFWwindow;
17 
18 namespace engine::platform {
23  struct FrameTime {
27  float dt;
28 
32  float previous;
33 
37  float current;
38  };
39 
45  class PlatformController final : public core::Controller {
46  public:
52  const Key &key(KeyId key) const;
53 
58  const MousePosition &mouse() const;
59 
64  std::string_view name() const override;
65 
70  const Window *window() const {
71  return &m_window;
72  }
73 
78  void register_platform_event_observer(std::unique_ptr<PlatformEventObserver> observer);
79 
84  const FrameTime &frame_time() const {
85  return m_frame_time;
86  }
87 
92  float dt() const {
93  return m_frame_time.dt;
94  }
95 
99  void set_enable_cursor(bool enabled);
100 
104  void swap_buffers();
105 
109  void _platform_on_mouse(double x, double y);
110 
114  void _platform_on_keyboard(int key, int action);
115 
119  void _platform_on_scroll(double x, double y);
120 
124  void _platform_on_framebuffer_resize(int width, int height);
125 
129  void _platform_on_window_close(GLFWwindow *window);
130 
131  void _platform_on_mouse_button(int button, int action);
132 
133  private:
134  Key &key_ref(KeyId key);
135 
139  void initialize() override;
140 
144  void terminate() override;
145 
146  bool loop() override;
147 
148  void poll_events() override;
149 
150  void update_mouse();
151 
152  void update_key(Key &key_data) const;
153 
156  std::vector<Key> m_keys;
157  std::vector<std::unique_ptr<PlatformEventObserver> > m_platform_event_observers;
158  };
159 } // namespace engine
160 
161 #endif//MATF_RG_PROJECT_PLATFORM_H
Defines the Controller class that serves as the base class for all controllers in the engine.
Defines the Input class that serves as the interface handling user input via keyboard and mouse.
Defines the PlatformEventObserver class that serves as the interface for platform-specific event obse...
Defines the Window class that provides basic window properties.
Controllers are a hook into the App main loop execution. By overriding virtual functions of this clas...
Definition: Controller.hpp:41
Represents the state of the key in a given frame.
Definition: Input.hpp:154
Registers Platform events such as mouse movement, key press, window events...
Definition: PlatformController.hpp:45
const FrameTime & frame_time() const
Get FrameTime for the previous frame. Updated in during core::App::loop.
Definition: PlatformController.hpp:84
void poll_events() override
Process internal and external events. Executes in the core::App::poll_events.
Definition: PlatformController.cpp:94
void swap_buffers()
Swaps the current draw buffer for the main window. Should be called at the end of the frame.
Definition: PlatformController.cpp:102
void _platform_on_mouse(double x, double y)
Called from the platform-specific callback. You shouldn't call this function directly.
Definition: PlatformController.cpp:195
Key & key_ref(KeyId key)
Definition: PlatformController.cpp:173
void initialize() override
Initializes the platform layer and registers platform-specific event callbacks.
Definition: PlatformController.cpp:38
Window m_window
Definition: PlatformController.hpp:155
void update_key(Key &key_data) const
Updates the state of a key. Key states are repesented as a state machine with the following states: R...
Definition: PlatformController.cpp:123
void terminate() override
Terminate the platform layer.
Definition: PlatformController.cpp:78
std::vector< std::unique_ptr< PlatformEventObserver > > m_platform_event_observers
Definition: PlatformController.hpp:157
void _platform_on_framebuffer_resize(int width, int height)
Called from the platform-specific callback. You shouldn't call this function directly.
Definition: PlatformController.cpp:221
FrameTime m_frame_time
Definition: PlatformController.hpp:154
void _platform_on_window_close(GLFWwindow *window)
Called from the platform-specific callback. You shouldn't call this function directly.
Definition: PlatformController.cpp:229
std::string_view name() const override
Get the name of the Controller.
Definition: PlatformController.cpp:187
float dt() const
Get elapsed time for the previous frame.
Definition: PlatformController.hpp:92
const Window * window() const
Get the window.
Definition: PlatformController.hpp:70
void _platform_on_scroll(double x, double y)
Called from the platform-specific callback. You shouldn't call this function directly.
Definition: PlatformController.cpp:214
const Key & key(KeyId key) const
Get the state of the Key in the current frame.
Definition: PlatformController.cpp:178
void set_enable_cursor(bool enabled)
Enables/disabled the visibility of the cursor on screen.
Definition: PlatformController.cpp:242
const MousePosition & mouse() const
Get the state of the MousePosition in the current frame.
Definition: PlatformController.cpp:183
bool loop() override
Checks whether the main loop should continue. Executes in the core::App::loop.
Definition: PlatformController.cpp:86
std::vector< Key > m_keys
Definition: PlatformController.hpp:156
void _platform_on_mouse_button(int button, int action)
Definition: PlatformController.cpp:235
void _platform_on_keyboard(int key, int action)
Called from the platform-specific callback. You shouldn't call this function directly.
Definition: PlatformController.cpp:207
void register_platform_event_observer(std::unique_ptr< PlatformEventObserver > observer)
Register a PlatformEventObserver callback for platform events. By default, the PlatformController reg...
Definition: PlatformController.cpp:191
Holds window properties.
Definition: Window.hpp:16
Definition: Input.hpp:10
KeyId
All the Keys that the engine can register.
Definition: Input.hpp:14
Stores elapsed time for frames in seconds.
Definition: PlatformController.hpp:23
float dt
Elapsed seconds for the previous frame.
Definition: PlatformController.hpp:27
float current
Time from the initialization of the Platform to the moment when the current frame began.
Definition: PlatformController.hpp:37
float previous
Time from the initialization of the Platform to the moment when the previous frame began.
Definition: PlatformController.hpp:32
Represents mouse position in a given frame relative to the top left corner of the screen.
Definition: Input.hpp:237