NcEngine
NcGraphics.h
Go to the documentation of this file.
1
5#pragma once
6
8#include "ncengine/graphics/Camera.h"
12#include "ncengine/type/EngineId.h"
13#include "ncengine/ui/IUI.h"
14
15namespace nc
16{
17struct SystemEvents;
18
19namespace config
20{
21struct AssetSettings;
22struct GraphicsSettings;
23struct MemorySettings;
24struct ProjectSettings;
25} // namespace config
26
45struct NcGraphics : public Module
46{
47 explicit NcGraphics() noexcept
48 : Module{NcGraphicsId} {}
49
58 virtual void SetCamera(Camera* camera) noexcept = 0;
59
64 virtual auto GetCamera() noexcept -> Camera* = 0;
65
70 virtual void SetUi(ui::IUI* ui) noexcept = 0;
71
75 virtual bool IsUiHovered() const noexcept = 0;
76
81 virtual void SetSkybox(const std::string& path) = 0;
82
87 virtual auto GetSkybox() const -> nc::asset::AssetId = 0;
88
95 virtual void ClearEnvironment() = 0;
96
98 virtual auto IsPostProcessEffectEnabled(PostProcessEffectId effectId) const -> bool = 0;
99
101 virtual void SetPostProcessEffectEnabled(PostProcessEffectId effectId, bool enabled) = 0;
102
105 PostProcessPassFlag::type pass) const -> const PostProcessPassProperties& = 0;
106
109 PostProcessPassFlag::type pass,
110 const PostProcessPassProperties& properties) = 0;
111};
112
117auto BuildGraphicsModule(const config::ProjectSettings& projectSettings,
118 const config::AssetSettings& assetSettings,
119 const config::GraphicsSettings& graphicsSettings,
120 const config::MemorySettings& memorySettings,
121 ModuleProvider modules,
122 ecs::Ecs world,
123 SystemEvents& events) -> std::unique_ptr<NcGraphics>;
124} // namespace nc
std::variant< EmptyPassProperties, OutlinePassProperties, NoisePassProperties > PostProcessPassProperties
Generic post process property type.
Definition: PostProcess.h:68
uint32_t PostProcessEffectId
Identifier for a post process effect.
Definition: PostProcess.h:27
Basic camera component.
Definition: Camera.h:33
Modules are extensions that provide functionality to the engine.
Definition: Module.h:18
Provides access to registered Modules.
Definition: ModuleProvider.h:15
Graphics module interface.
Definition: NcGraphics.h:46
virtual void SetSkybox(const std::string &path)=0
Set the current skybox.
virtual auto IsPostProcessEffectEnabled(PostProcessEffectId effectId) const -> bool=0
Returns if a post process effect is enabled.
virtual auto GetPostProcessEffectProperties(PostProcessEffectId effectId, PostProcessPassFlag::type pass) const -> const PostProcessPassProperties &=0
Get the pass properties for a post process effect.
virtual void SetCamera(Camera *camera) noexcept=0
Set the main Camera.
virtual void SetUi(ui::IUI *ui) noexcept=0
Set a custom ui to receive draw callbacks during rendering.
virtual auto GetCamera() noexcept -> Camera *=0
Get the main Camera.
virtual auto GetSkybox() const -> nc::asset::AssetId=0
Gets the current skybox.
virtual bool IsUiHovered() const noexcept=0
Returns if the ui is currently hovered by the mouse.
virtual void ClearEnvironment()=0
Clear all environment data (currently only the skybox).
virtual void SetPostProcessEffectEnabled(PostProcessEffectId effectId, bool enabled)=0
Enabled or disable a post process effect.
virtual void SetPostProcessEffectProperties(PostProcessEffectId effectId, PostProcessPassFlag::type pass, const PostProcessPassProperties &properties)=0
Set the pass properties for a post process effect.
Post process pass flags.
Definition: PostProcess.h:17
Signals for internal engine events.
Definition: Events.h:14