diff --git a/src/dawn/component/display/IRenderableComponent.hpp b/src/dawn/component/display/IRenderableComponent.hpp index 3ed34ff7..1bf77f5a 100644 --- a/src/dawn/component/display/IRenderableComponent.hpp +++ b/src/dawn/component/display/IRenderableComponent.hpp @@ -4,133 +4,11 @@ // https://opensource.org/licenses/MIT #pragma once -#include "game/Game.hpp" -#include "scene/Scene.hpp" +#include "display/pass/RenderPass.hpp" +#include "display/pass/RenderPassContext.hpp" #include "display/mesh/Mesh.hpp" -#include "display/shader/Shader.hpp" -#include "component/display/Camera.hpp" -#include "component/display/MeshRenderer.hpp" namespace Dawn { - class IRenderPass { - public: - std::shared_ptr mesh; - - /** - * Binds the shader for this render pass. - */ - virtual void bind() = 0; - - /** - * Sets the data for this render pass to the shader. - */ - virtual void setData() = 0; - - /** - * Uploads the data to the GPU. - */ - virtual void upload() = 0; - - /** - * Draws the mesh for this render pass. - */ - virtual void draw() = 0; - - /** - * Cleans up the render pass. - */ - virtual ~IRenderPass() { - } - }; - - template - class RenderPass : public IRenderPass { - private: - std::shared_ptr shader; - const std::unordered_map< - shadertexturebinding_t, std::shared_ptr - > textures; - std::shared_ptr mesh; - const enum MeshDrawMode drawMode; - const int32_t indiceStart; - const int32_t indiceCount; - const D data; - - public: - /** - * Constructs a new RenderPass. - * - * @param self Self component instance that is creating this render pass. - * @param d The data to use for this render pass. - * @param mesh The mesh to use for this render pass. - * @param drawMode The draw mode to use for this render pass. - * @param indiceStart The indice to start drawing from. - * @param indiceCount The number of indices to draw. - */ - RenderPass( - SceneComponent &self, - const D d, - const std::unordered_map< - shadertexturebinding_t, std::shared_ptr - > textures, - const std::shared_ptr mesh, - const enum MeshDrawMode drawMode, - const int32_t indiceStart, - const int32_t indiceCount - ) : - data(d), - textures(textures), - mesh(mesh), - drawMode(drawMode), - indiceStart(indiceStart), - indiceCount(indiceCount) - { - //Get the shader - shader = ( - self.getGame()->renderHost.shaderManager.getShader() - ); - assertNotNull(shader, "Shader cannot be null!"); - - // Need mesh? - if(!this->mesh) { - auto meshRenderer = self.getItem()->getComponent(); - if(meshRenderer) this->mesh = meshRenderer->mesh; - } - } - - void bind() override { - shader->bind(); - } - - void setData() override { - shader->setData(data); - } - - void upload() override { - for(auto &pair : textures) { - if(!pair.second->isReady()) continue; - pair.second->bind(pair.first); - } - shader->upload(); - } - - void draw() override { - if(mesh) { - mesh->draw(drawMode, indiceStart, indiceCount); - } - } - - ~RenderPass() override { - } - }; - - struct RenderPassContext { - std::shared_ptr game; - std::shared_ptr scene; - std::shared_ptr camera; - std::shared_ptr renderTarget; - }; - class IRenderableComponent { public: /** diff --git a/src/dawn/display/pass/IRenderPass.hpp b/src/dawn/display/pass/IRenderPass.hpp new file mode 100644 index 00000000..a06da51b --- /dev/null +++ b/src/dawn/display/pass/IRenderPass.hpp @@ -0,0 +1,40 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "display/mesh/Mesh.hpp" + +namespace Dawn { + class IRenderPass { + public: + std::shared_ptr mesh; + + /** + * Binds the shader for this render pass. + */ + virtual void bind() = 0; + + /** + * Sets the data for this render pass to the shader. + */ + virtual void setData() = 0; + + /** + * Uploads the data to the GPU. + */ + virtual void upload() = 0; + + /** + * Draws the mesh for this render pass. + */ + virtual void draw() = 0; + + /** + * Cleans up the render pass. + */ + virtual ~IRenderPass() { + } + }; +} \ No newline at end of file diff --git a/src/dawn/display/pass/RenderPass.hpp b/src/dawn/display/pass/RenderPass.hpp new file mode 100644 index 00000000..82bac4c0 --- /dev/null +++ b/src/dawn/display/pass/RenderPass.hpp @@ -0,0 +1,93 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "display/pass/IRenderPass.hpp" +#include "display/shader/Shader.hpp" +#include "display/Texture.hpp" +#include "component/display/MeshRenderer.hpp" + +namespace Dawn { + template + class RenderPass : public IRenderPass { + private: + std::shared_ptr shader; + const std::unordered_map< + shadertexturebinding_t, std::shared_ptr + > textures; + std::shared_ptr mesh; + const enum MeshDrawMode drawMode; + const int32_t indiceStart; + const int32_t indiceCount; + const D data; + + public: + /** + * Constructs a new RenderPass. + * + * @param self Self component instance that is creating this render pass. + * @param d The data to use for this render pass. + * @param mesh The mesh to use for this render pass. + * @param drawMode The draw mode to use for this render pass. + * @param indiceStart The indice to start drawing from. + * @param indiceCount The number of indices to draw. + */ + RenderPass( + SceneComponent &self, + const D d, + const std::unordered_map< + shadertexturebinding_t, std::shared_ptr + > textures, + const std::shared_ptr mesh, + const enum MeshDrawMode drawMode, + const int32_t indiceStart, + const int32_t indiceCount + ) : + data(d), + textures(textures), + mesh(mesh), + drawMode(drawMode), + indiceStart(indiceStart), + indiceCount(indiceCount) + { + //Get the shader + shader = ( + self.getGame()->renderHost.shaderManager.getShader() + ); + assertNotNull(shader, "Shader cannot be null!"); + + // Need mesh? + if(!this->mesh) { + auto meshRenderer = self.getItem()->getComponent(); + if(meshRenderer) this->mesh = meshRenderer->mesh; + } + } + + void bind() override { + shader->bind(); + } + + void setData() override { + shader->setData(data); + } + + void upload() override { + for(auto &pair : textures) { + if(!pair.second->isReady()) continue; + pair.second->bind(pair.first); + } + shader->upload(); + } + + void draw() override { + if(mesh) { + mesh->draw(drawMode, indiceStart, indiceCount); + } + } + + ~RenderPass() override { + } + }; +} \ No newline at end of file diff --git a/src/dawn/display/pass/RenderPassContext.hpp b/src/dawn/display/pass/RenderPassContext.hpp new file mode 100644 index 00000000..87e54640 --- /dev/null +++ b/src/dawn/display/pass/RenderPassContext.hpp @@ -0,0 +1,18 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "game/Game.hpp" +#include "scene/Scene.hpp" +#include "component/display/Camera.hpp" + +namespace Dawn { + struct RenderPassContext { + std::shared_ptr game; + std::shared_ptr scene; + std::shared_ptr camera; + std::shared_ptr renderTarget; + }; +} \ No newline at end of file