NcEngine
Window.h
Go to the documentation of this file.
1
5#pragma once
6
8#include "ncengine/type/EngineId.h"
10#include "ncengine/window/IOnResizeReceiver.h"
11
12#include "ncmath/Vector.h"
13
14struct GLFWwindow;
15
16namespace nc
17{
18namespace config
19{
20struct ProjectSettings;
21struct GraphicsSettings;
22} // namespace config
23
24namespace window
25{
28
31
34
36auto ToNormalizedDeviceCoordinates(const Vector2& screenCoordinates) -> Vector2;
37
43
49
54{
56 bool isHeadless = false;
57 bool useNativeResolution = false;
58 bool launchInFullScreen = false;
59 bool isResizable = false;
60};
61
65class NcWindow : public Module
66{
67 public:
68 explicit NcWindow() noexcept
69 : Module{NcWindowId} {}
70
72 auto GetDimensions() const noexcept -> const Vector2& { return m_dimensions; }
73
75 auto GetScreenExtent() const noexcept -> const Vector2& { return m_screenExtent; }
76
78 auto GetContentScale() const noexcept -> const Vector2& { return m_contentScale; }
79
81 auto GetWindowHandle() const noexcept -> GLFWwindow* { return m_window; }
82
84 auto OnResize() noexcept -> Signal<const Vector2&, bool>& { return m_onResize; }
85
87 virtual void SetWindow(WindowInfo windowInfo) = 0;
88
93 virtual void ProcessSystemMessages() = 0;
94
95 protected:
96 Vector2 m_dimensions;
97 Vector2 m_screenExtent;
98 Vector2 m_contentScale;
99 GLFWwindow* m_window;
101};
102
104auto BuildWindowModule(const config::ProjectSettings& projectSettings,
105 bool isGraphicsEnabled,
106 Signal<>& quit) -> std::unique_ptr<NcWindow>;
107} // namespace window
108} // namespace nc
auto GetDimensions() -> Vector2
Get the window dimensions.
auto ToNormalizedDeviceCoordinates(const Vector2 &screenCoordinates) -> Vector2
Convert screen space coordinates to normalized device coordinates (in the range [-1,...
void UnregisterOnResizeReceiver(IOnResizeReceiver *receiver) noexcept
Unregister an object from receiving window resize events.
auto BuildWindowModule(const config::ProjectSettings &projectSettings, bool isGraphicsEnabled, Signal<> &quit) -> std::unique_ptr< NcWindow >
Build an NcWindow module instance.
auto GetScreenExtent() -> Vector2
Get the dimensions of the screen after aspect ratio transformations.
auto GetContentScale() -> Vector2
Get the current DPI.
void RegisterOnResizeReceiver(IOnResizeReceiver *receiver)
Allow an object to receive window resize events. Receivers must be unregistered before they are destr...
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
An event source supporting multiple Connections.
Definition: Signal.h:65
Definition: IOnResizeReceiver.h:8
Window module interface.
Definition: Window.h:66
virtual void ProcessSystemMessages()=0
Process window and input events.
auto OnResize() noexcept -> Signal< const Vector2 &, bool > &
Get the Signal for window resize events.
Definition: Window.h:84
virtual void SetWindow(WindowInfo windowInfo)=0
Set the window for the module.
auto GetContentScale() const noexcept -> const Vector2 &
Get the ratio between the current DPI and the platform's default DPI.
Definition: Window.h:78
auto GetWindowHandle() const noexcept -> GLFWwindow *
Get the GLFW window handle.
Definition: Window.h:81
auto GetScreenExtent() const noexcept -> const Vector2 &
Get the dimensions of the renderable window region.
Definition: Window.h:75
auto GetDimensions() const noexcept -> const Vector2 &
Get the dimensions of the entire window.
Definition: Window.h:72
A two component vector.
Definition: Vector.h:13
General project options.
Definition: Config.h:14
The window's create info.
Definition: Window.h:54
bool isResizable
True if the window is resizable.
Definition: Window.h:59
bool launchInFullScreen
True if the window should launch in full screen.
Definition: Window.h:58
bool isHeadless
True if this is a headless window. Still receives input events.
Definition: Window.h:56
bool useNativeResolution
True if the window should use the monitor's native resolution.
Definition: Window.h:57
Vector2 dimensions
The window's dimensions.
Definition: Window.h:55