8#include "ncengine/type/EngineId.h"
10#include "ncengine/window/IOnResizeReceiver.h"
20struct ProjectSettings;
21struct GraphicsSettings;
105 bool isGraphicsEnabled,
106 Signal<>& quit) -> std::unique_ptr<NcWindow>;
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