From 1dfed5696ac6a697cdd15996f43c42a094213142 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Thu, 16 Nov 2023 15:58:57 -0600 Subject: [PATCH] start shader --- src/dawn/component/display/CMakeLists.txt | 1 + src/dawn/component/display/Material.cpp | 16 +++++ src/dawn/component/display/Material.hpp | 15 +++++ src/dawn/display/CMakeLists.txt | 2 +- src/dawn/display/shader/CMakeLists.txt | 10 ++++ src/dawn/display/shader/IShader.hpp | 58 +++++++++++++++++++ src/dawn/display/shader/IShaderStage.cpp | 18 ++++++ src/dawn/display/shader/IShaderStage.hpp | 30 ++++++++++ src/dawnhelloworld/scene/HelloWorldScene.cpp | 1 + src/dawnopengl/display/CMakeLists.txt | 3 +- src/dawnopengl/display/shader/CMakeLists.txt | 11 ++++ src/dawnopengl/display/shader/Shader.cpp | 6 ++ src/dawnopengl/display/shader/Shader.hpp | 16 +++++ src/dawnopengl/display/shader/ShaderStage.cpp | 17 ++++++ src/dawnopengl/display/shader/ShaderStage.hpp | 36 ++++++++++++ 15 files changed, 238 insertions(+), 2 deletions(-) create mode 100644 src/dawn/component/display/Material.cpp create mode 100644 src/dawn/component/display/Material.hpp create mode 100644 src/dawn/display/shader/CMakeLists.txt create mode 100644 src/dawn/display/shader/IShader.hpp create mode 100644 src/dawn/display/shader/IShaderStage.cpp create mode 100644 src/dawn/display/shader/IShaderStage.hpp create mode 100644 src/dawnopengl/display/shader/CMakeLists.txt create mode 100644 src/dawnopengl/display/shader/Shader.cpp create mode 100644 src/dawnopengl/display/shader/Shader.hpp create mode 100644 src/dawnopengl/display/shader/ShaderStage.cpp create mode 100644 src/dawnopengl/display/shader/ShaderStage.hpp diff --git a/src/dawn/component/display/CMakeLists.txt b/src/dawn/component/display/CMakeLists.txt index 19661266..709d5323 100644 --- a/src/dawn/component/display/CMakeLists.txt +++ b/src/dawn/component/display/CMakeLists.txt @@ -6,5 +6,6 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE Camera.cpp + Material.cpp MeshRenderer.cpp ) \ No newline at end of file diff --git a/src/dawn/component/display/Material.cpp b/src/dawn/component/display/Material.cpp new file mode 100644 index 00000000..59bbf643 --- /dev/null +++ b/src/dawn/component/display/Material.cpp @@ -0,0 +1,16 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "Material.hpp" + +using namespace Dawn; + +void Material::onInit() { + +} + +void Material::onDispose() { + +} \ No newline at end of file diff --git a/src/dawn/component/display/Material.hpp b/src/dawn/component/display/Material.hpp new file mode 100644 index 00000000..297cfd00 --- /dev/null +++ b/src/dawn/component/display/Material.hpp @@ -0,0 +1,15 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "scene/SceneComponent.hpp" + +namespace Dawn { + class Material : public SceneComponent { + public: + void onInit() override; + void onDispose() override; + }; +} \ No newline at end of file diff --git a/src/dawn/display/CMakeLists.txt b/src/dawn/display/CMakeLists.txt index 40b327d4..834595cd 100644 --- a/src/dawn/display/CMakeLists.txt +++ b/src/dawn/display/CMakeLists.txt @@ -12,4 +12,4 @@ target_sources(${DAWN_TARGET_NAME} # Subdirs # add_subdirectory(font) add_subdirectory(mesh) -# add_subdirectory(shader) \ No newline at end of file +add_subdirectory(shader) \ No newline at end of file diff --git a/src/dawn/display/shader/CMakeLists.txt b/src/dawn/display/shader/CMakeLists.txt new file mode 100644 index 00000000..c1917ed1 --- /dev/null +++ b/src/dawn/display/shader/CMakeLists.txt @@ -0,0 +1,10 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + IShaderStage.cpp +) \ No newline at end of file diff --git a/src/dawn/display/shader/IShader.hpp b/src/dawn/display/shader/IShader.hpp new file mode 100644 index 00000000..427f685d --- /dev/null +++ b/src/dawn/display/shader/IShader.hpp @@ -0,0 +1,58 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawnlibs.hpp" + +namespace Dawn { + template + class IShader { + private: + T data; + + public: + /** + * Returns the currently uploaded data on the Shader. + * + * @return The uploaded data. + */ + T getData() { + return data; + } + + /** + * Sets the entire data to be uploaded. + * + * @param data Data to be uploaded. + */ + void setData(const T data) { + this->data = data; + } + + /** + * Initializes the shader, this needs to be called before the shader can + * be used. + */ + virtual void init() = 0; + + /** + * Binds the shader as the current one, does not upload any data, somewhat + * relies on something else uploading the data. + */ + virtual void bind() = 0; + + /** + * Uploads the data to the GPU. + */ + virtual void upload() = 0; + + /** + * Disposes of the shader. + */ + virtual ~IShader() { + + } + }; +} \ No newline at end of file diff --git a/src/dawn/display/shader/IShaderStage.cpp b/src/dawn/display/shader/IShaderStage.cpp new file mode 100644 index 00000000..cd979b5c --- /dev/null +++ b/src/dawn/display/shader/IShaderStage.cpp @@ -0,0 +1,18 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "IShaderStage.hpp" + +using namespace Dawn; + +IShaderStage::IShaderStage(const enum ShaderType type) : + type(type) +{ + +} + +IShaderStage::~IShaderStage() { + +} \ No newline at end of file diff --git a/src/dawn/display/shader/IShaderStage.hpp b/src/dawn/display/shader/IShaderStage.hpp new file mode 100644 index 00000000..ac012186 --- /dev/null +++ b/src/dawn/display/shader/IShaderStage.hpp @@ -0,0 +1,30 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawnlibs.hpp" + +namespace Dawn { + enum ShaderType { + VERTEX, + FRAGMENT, + COMPUTE + }; + + class IShaderStage { + public: + /** + * Constructs a new Shader Stage. + * + * @param type Type of shader stage. + */ + IShaderStage(const enum ShaderType type); + + /** + * Destroy the IShaderStage object + */ + virtual ~IShaderStage(); + }; +} \ No newline at end of file diff --git a/src/dawnhelloworld/scene/HelloWorldScene.cpp b/src/dawnhelloworld/scene/HelloWorldScene.cpp index 0da25102..603091bf 100644 --- a/src/dawnhelloworld/scene/HelloWorldScene.cpp +++ b/src/dawnhelloworld/scene/HelloWorldScene.cpp @@ -15,6 +15,7 @@ void Dawn::helloWorldScene(Scene &s) { auto cameraItem = s.createSceneItem(); auto camera = cameraItem->addComponent(); + cameraItem->lookAt({ 3, 3, 3}, { 0, 0, 0 }, { 0, 1, 0 }); auto cubeMesh = std::make_shared(); CubeMesh::buffer(cubeMesh, glm::vec3(-1, -1, -1), glm::vec3(1, 1, 1), 0, 0); diff --git a/src/dawnopengl/display/CMakeLists.txt b/src/dawnopengl/display/CMakeLists.txt index 8cba0dac..73ca87f6 100644 --- a/src/dawnopengl/display/CMakeLists.txt +++ b/src/dawnopengl/display/CMakeLists.txt @@ -10,4 +10,5 @@ target_sources(${DAWN_TARGET_NAME} ) # Subdirs -add_subdirectory(mesh) \ No newline at end of file +add_subdirectory(mesh) +add_subdirectory(shader) \ No newline at end of file diff --git a/src/dawnopengl/display/shader/CMakeLists.txt b/src/dawnopengl/display/shader/CMakeLists.txt new file mode 100644 index 00000000..c63082ac --- /dev/null +++ b/src/dawnopengl/display/shader/CMakeLists.txt @@ -0,0 +1,11 @@ +# Copyright (c) 2023 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Sources +target_sources(${DAWN_TARGET_NAME} + PRIVATE + Shader.cpp + ShaderStage.cpp +) \ No newline at end of file diff --git a/src/dawnopengl/display/shader/Shader.cpp b/src/dawnopengl/display/shader/Shader.cpp new file mode 100644 index 00000000..f232ab7e --- /dev/null +++ b/src/dawnopengl/display/shader/Shader.cpp @@ -0,0 +1,6 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "Shader.hpp" \ No newline at end of file diff --git a/src/dawnopengl/display/shader/Shader.hpp b/src/dawnopengl/display/shader/Shader.hpp new file mode 100644 index 00000000..e400df59 --- /dev/null +++ b/src/dawnopengl/display/shader/Shader.hpp @@ -0,0 +1,16 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "display/ShaderStage.hpp" +#include "display/IShader.hpp" + +namespace Dawn { + template + class Shader : public IShader { + public: + + }; +} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderStage.cpp b/src/dawnopengl/display/shader/ShaderStage.cpp new file mode 100644 index 00000000..e3b00395 --- /dev/null +++ b/src/dawnopengl/display/shader/ShaderStage.cpp @@ -0,0 +1,17 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "ShaderStage.hpp" + +using namespace Dawn; + +ShaderStage::ShaderStage(const enum ShaderType type) : type(type) { +} + +void ShaderStage::compile(const std::string source) { +} + +ShaderStage::~ShaderStage() { +} \ No newline at end of file diff --git a/src/dawnopengl/display/shader/ShaderStage.hpp b/src/dawnopengl/display/shader/ShaderStage.hpp new file mode 100644 index 00000000..6e38aa7b --- /dev/null +++ b/src/dawnopengl/display/shader/ShaderStage.hpp @@ -0,0 +1,36 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "dawnopengl.hpp" +#include "dawnlibs.hpp" +#include "display/shader/IShaderStage.hpp" + +namespace Dawn { + class ShaderStage { + public: + GLuint id = -1; + const enum ShaderType type; + + /** + * Constructs a new ShaderStage. + * + * @param type The type of shader this is. + */ + ShaderStage(const enum ShaderType type); + + /** + * Compiles the shader stage. + * + * @param source The source code to compile. + */ + void compile(const std::string source); + + /** + * Disposes of the shader stage. + */ + virtual ~ShaderStage(); + }; +} \ No newline at end of file