From ccd5b3696567823517e2ceac4986697621917d0b Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sat, 7 Dec 2024 18:32:50 -0600 Subject: [PATCH] map mat --- assets/scenes/test_rpg_scene.json | 6 +- .../component/display/mesh/MeshComponent.cpp | 2 +- .../component/display/mesh/MeshComponent.hpp | 2 +- src/dawnrpg/CMakeLists.txt | 1 + src/dawnrpg/component/CMakeLists.txt | 6 +- src/dawnrpg/component/RPGMap.cpp | 2 +- src/dawnrpg/component/display/CMakeLists.txt | 7 ++ .../component/display/material/CMakeLists.txt | 9 ++ .../display/material/MapMaterial.cpp | 68 ++++++++++++ .../display/material/MapMaterial.hpp | 50 +++++++++ src/dawnrpg/display/CMakeLists.txt | 7 ++ src/dawnrpg/display/shader/CMakeLists.txt | 9 ++ src/dawnrpg/display/shader/MapShader.cpp | 104 ++++++++++++++++++ src/dawnrpg/display/shader/MapShader.hpp | 29 +++++ src/dawnrpg/game/Game.cpp | 4 + 15 files changed, 300 insertions(+), 6 deletions(-) create mode 100644 src/dawnrpg/component/display/CMakeLists.txt create mode 100644 src/dawnrpg/component/display/material/CMakeLists.txt create mode 100644 src/dawnrpg/component/display/material/MapMaterial.cpp create mode 100644 src/dawnrpg/component/display/material/MapMaterial.hpp create mode 100644 src/dawnrpg/display/CMakeLists.txt create mode 100644 src/dawnrpg/display/shader/CMakeLists.txt create mode 100644 src/dawnrpg/display/shader/MapShader.cpp create mode 100644 src/dawnrpg/display/shader/MapShader.hpp diff --git a/assets/scenes/test_rpg_scene.json b/assets/scenes/test_rpg_scene.json index 59bc2e6c..d43fc2a2 100644 --- a/assets/scenes/test_rpg_scene.json +++ b/assets/scenes/test_rpg_scene.json @@ -38,9 +38,11 @@ "type": "MeshRenderer" }, "mat": { - "type": "SimpleTexturedMaterial", - "color": "green", + "type": "MapMaterial", "texture": "rosatext" + }, + "map": { + "type": "RPGMap" } } }, diff --git a/src/dawn/component/display/mesh/MeshComponent.cpp b/src/dawn/component/display/mesh/MeshComponent.cpp index bd34c9fc..ce3e7977 100644 --- a/src/dawn/component/display/mesh/MeshComponent.cpp +++ b/src/dawn/component/display/mesh/MeshComponent.cpp @@ -17,7 +17,7 @@ void MeshComponent::buffer() { } void MeshComponent::invalidate() { - if(valid) return; + if(!valid) return; valid = false; events.push_back(getScene()->onNextFrame.listen([this]() { this->buffer(); diff --git a/src/dawn/component/display/mesh/MeshComponent.hpp b/src/dawn/component/display/mesh/MeshComponent.hpp index b4642476..98bb3463 100644 --- a/src/dawn/component/display/mesh/MeshComponent.hpp +++ b/src/dawn/component/display/mesh/MeshComponent.hpp @@ -10,7 +10,7 @@ namespace Dawn { class MeshComponent : public SceneComponent { private: - bool_t valid = true; + bool_t valid = false; /** * Buffers the mesh. diff --git a/src/dawnrpg/CMakeLists.txt b/src/dawnrpg/CMakeLists.txt index 16dac516..101f8dbe 100644 --- a/src/dawnrpg/CMakeLists.txt +++ b/src/dawnrpg/CMakeLists.txt @@ -11,6 +11,7 @@ target_include_directories(${DAWN_TARGET_NAME} # Subdirs add_subdirectory(component) +add_subdirectory(display) add_subdirectory(game) add_subdirectory(rpg) diff --git a/src/dawnrpg/component/CMakeLists.txt b/src/dawnrpg/component/CMakeLists.txt index a1055ba1..07573d64 100644 --- a/src/dawnrpg/component/CMakeLists.txt +++ b/src/dawnrpg/component/CMakeLists.txt @@ -7,4 +7,8 @@ target_sources(${DAWN_TARGET_NAME} PRIVATE RPGEntity.cpp RPGPlayer.cpp -) \ No newline at end of file + RPGMap.cpp +) + +# Subdirs +add_subdirectory(display) \ No newline at end of file diff --git a/src/dawnrpg/component/RPGMap.cpp b/src/dawnrpg/component/RPGMap.cpp index e3f45f98..922c3198 100644 --- a/src/dawnrpg/component/RPGMap.cpp +++ b/src/dawnrpg/component/RPGMap.cpp @@ -9,10 +9,10 @@ using namespace Dawn; void RPGMap::onInit() { auto mesh = getItem()->getComponent(); - } void RPGMap::onDispose() { + } void RPGMap::load(std::shared_ptr ctx) { diff --git a/src/dawnrpg/component/display/CMakeLists.txt b/src/dawnrpg/component/display/CMakeLists.txt new file mode 100644 index 00000000..9afda52f --- /dev/null +++ b/src/dawnrpg/component/display/CMakeLists.txt @@ -0,0 +1,7 @@ +# Copyright (c) 2024 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Subdirs +add_subdirectory(material) \ No newline at end of file diff --git a/src/dawnrpg/component/display/material/CMakeLists.txt b/src/dawnrpg/component/display/material/CMakeLists.txt new file mode 100644 index 00000000..f4065c92 --- /dev/null +++ b/src/dawnrpg/component/display/material/CMakeLists.txt @@ -0,0 +1,9 @@ +# Copyright (c) 2024 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +target_sources(${DAWN_TARGET_NAME} + PRIVATE + MapMaterial.cpp +) \ No newline at end of file diff --git a/src/dawnrpg/component/display/material/MapMaterial.cpp b/src/dawnrpg/component/display/material/MapMaterial.cpp new file mode 100644 index 00000000..655272ce --- /dev/null +++ b/src/dawnrpg/component/display/material/MapMaterial.cpp @@ -0,0 +1,68 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "MapMaterial.hpp" +#include "util/JSON.hpp" +#include "asset/loader/TextureLoader.hpp" + +using namespace Dawn; + +void MapMaterial::load(std::shared_ptr ctx) { + if(ctx->data.contains("color")) { + this->setColor(JSON::color(ctx->data["color"])); + } + + if(ctx->data.contains("texture")) { + auto asset = ctx->getAsset( + ctx->data["texture"].get() + ); + this->setTexture(asset->getTexture()); + } +} + +struct Color MapMaterial::getColor() { + return this->data.color; +} + +std::shared_ptr MapMaterial::getTexture() { + return this->texture; +} + +void MapMaterial::setTexture( + const std::shared_ptr texture +) { + this->texture = texture; +} + +void MapMaterial::setColor(const struct Color color) { + this->data.color = color; +} + +std::vector> MapMaterial::getPasses( + struct RenderPassContext &ctx +) { + this->data.model = this->getItem()->getWorldTransform(); + this->data.projection = ctx.camera->getProjection(); + this->data.view = ctx.camera->getItem()->getWorldTransform(); + auto textures = std::unordered_map< + shadertexturebinding_t, std::shared_ptr + >(); + + if(this->texture) { + this->data.hasTexture = true; + this->data.texture = 0; + textures[this->data.texture] = this->texture; + } else { + this->data.hasTexture = false; + } + + return { + createRenderPass( + *this, + data, + textures + ) + }; +} diff --git a/src/dawnrpg/component/display/material/MapMaterial.hpp b/src/dawnrpg/component/display/material/MapMaterial.hpp new file mode 100644 index 00000000..48d8759d --- /dev/null +++ b/src/dawnrpg/component/display/material/MapMaterial.hpp @@ -0,0 +1,50 @@ +// Copyright (c) 2024 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "component/display/material/Material.hpp" +#include "display/shader/MapShader.hpp" +#include "display/Texture.hpp" + +namespace Dawn { + class MapMaterial : public Material { + private: + struct MapShaderData data; + std::shared_ptr texture; + + public: + void load(std::shared_ptr ctx) override; + + /** + * Returns the color of this material. + */ + struct Color getColor(); + + /** + * Returns the texture of this material. + * + * @return The texture of this material. + */ + std::shared_ptr getTexture(); + + /** + * Sets the texture of this material. + * + * @param texture The texture to set. + */ + void setTexture(const std::shared_ptr texture); + + /** + * Sets the color of this material. + * + * @param color The color to set. + */ + void setColor(const struct Color color); + + std::vector> getPasses( + struct RenderPassContext &ctx + ) override; + }; +} \ No newline at end of file diff --git a/src/dawnrpg/display/CMakeLists.txt b/src/dawnrpg/display/CMakeLists.txt new file mode 100644 index 00000000..9c3f0ad1 --- /dev/null +++ b/src/dawnrpg/display/CMakeLists.txt @@ -0,0 +1,7 @@ +# Copyright (c) 2024 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +# Subdirs +add_subdirectory(shader) \ No newline at end of file diff --git a/src/dawnrpg/display/shader/CMakeLists.txt b/src/dawnrpg/display/shader/CMakeLists.txt new file mode 100644 index 00000000..2f9f8d34 --- /dev/null +++ b/src/dawnrpg/display/shader/CMakeLists.txt @@ -0,0 +1,9 @@ +# Copyright (c) 2024 Dominic Masters +# +# This software is released under the MIT License. +# https://opensource.org/licenses/MIT + +target_sources(${DAWN_TARGET_NAME} + PRIVATE + MapShader.cpp +) \ No newline at end of file diff --git a/src/dawnrpg/display/shader/MapShader.cpp b/src/dawnrpg/display/shader/MapShader.cpp new file mode 100644 index 00000000..1ba783a4 --- /dev/null +++ b/src/dawnrpg/display/shader/MapShader.cpp @@ -0,0 +1,104 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#include "display/shader/MapShader.hpp" + +using namespace Dawn; + +void MapShader::getStages( + const enum ShaderOpenGLVariant variant, + const struct MapShaderData *rel, + std::vector> &stages, + std::vector ¶meters, + std::vector &structures +) { + // Stages + std::shared_ptr vertex; + std::shared_ptr fragment; + + switch(variant) { + case ShaderOpenGLVariant::GLSL_330_CORE: + vertex = std::make_shared( + ShaderStageType::VERTEX,R"( + #version 330 core + layout (location = 0) in vec3 aPos; + layout (location = 1) in vec2 aTexCoord; + uniform mat4 u_Projection; + uniform mat4 u_View; + uniform mat4 u_Model; + out vec2 o_TextCoord; + void main() { + gl_Position = u_Projection * u_View * u_Model * vec4(aPos, 1.0); + o_TextCoord = vec2(aTexCoord.x, aTexCoord.y); + } + )" + ); + + fragment = std::make_shared( + ShaderStageType::FRAGMENT,R"( + #version 330 core + in vec2 o_TextCoord; + out vec4 o_Color; + uniform vec4 u_Color; + uniform bool u_HasTexture; + uniform sampler2D u_Texture; + void main() { + if(u_HasTexture) { + o_Color = texture(u_Texture, o_TextCoord); + } else { + o_Color = u_Color; + } + + if(o_Color.a == 0) discard; + } + )" + ); + break; + + default: + assertUnreachable("Unsupported ShaderOpenGLVariant"); + } + + // Add stages + stages.push_back(vertex); + stages.push_back(fragment); + + // Parameters + parameters.push_back(ShaderParameter( + "u_Projection", + &rel->projection, + ShaderParameterType::MAT4 + )); + + parameters.push_back(ShaderParameter( + "u_View", + &rel->view, + ShaderParameterType::MAT4 + )); + + parameters.push_back(ShaderParameter( + "u_Model", + &rel->model, + ShaderParameterType::MAT4 + )); + + parameters.push_back(ShaderParameter( + "u_Color", + &rel->color, + ShaderParameterType::COLOR + )); + + parameters.push_back(ShaderParameter( + "u_HasTexture", + &rel->hasTexture, + ShaderParameterType::BOOLEAN + )); + + parameters.push_back(ShaderParameter( + "u_Texture", + &rel->texture, + ShaderParameterType::TEXTURE + )); +} \ No newline at end of file diff --git a/src/dawnrpg/display/shader/MapShader.hpp b/src/dawnrpg/display/shader/MapShader.hpp new file mode 100644 index 00000000..6675afb4 --- /dev/null +++ b/src/dawnrpg/display/shader/MapShader.hpp @@ -0,0 +1,29 @@ +// Copyright (c) 2023 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +#pragma once +#include "display/shader/Shader.hpp" + +namespace Dawn { + struct MapShaderData { + glm::mat4 projection; + glm::mat4 view; + glm::mat4 model; + struct Color color = COLOR_WHITE; + bool hasTexture = false; + shadertexturebinding_t texture = 0; + }; + + class MapShader : public Shader { + protected: + void getStages( + const enum ShaderOpenGLVariant variant, + const struct MapShaderData *rel, + std::vector> &stages, + std::vector ¶meters, + std::vector &structures + ) override; + }; +} \ No newline at end of file diff --git a/src/dawnrpg/game/Game.cpp b/src/dawnrpg/game/Game.cpp index 2350c10a..562e8497 100644 --- a/src/dawnrpg/game/Game.cpp +++ b/src/dawnrpg/game/Game.cpp @@ -6,14 +6,18 @@ #include "Game.hpp" #include "component/SceneComponentRegistry.hpp" +#include "component/display/material/MapMaterial.hpp" #include "component/RPGEntity.hpp" #include "component/RPGPlayer.hpp" +#include "component/RPGMap.hpp" using namespace Dawn; Game::Game() : IGame() { SceneComponentRegistry::reg("RPGEntity"); SceneComponentRegistry::reg("RPGPlayer"); + SceneComponentRegistry::reg("RPGMap"); + SceneComponentRegistry::reg("MapMaterial"); } std::string Game::getInitialScene() {