From 34ed16921615926bd7d10a2aec4f9af6528a8468 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sun, 27 Feb 2022 12:28:58 -0500 Subject: [PATCH] create materials --- BufferStructs.h | 11 ------ DX11Starter.vcxproj | 3 +- DX11Starter.vcxproj.filters | 9 +++-- Entity.cpp | 13 ++++++- Entity.h | 17 +++++--- Game.cpp | 78 +++++++++++++------------------------ Game.h | 8 ++-- Material.cpp | 42 ++++++++++++++++++++ Material.h | 28 +++++++++++++ 9 files changed, 135 insertions(+), 74 deletions(-) delete mode 100644 BufferStructs.h create mode 100644 Material.cpp create mode 100644 Material.h diff --git a/BufferStructs.h b/BufferStructs.h deleted file mode 100644 index 9812303..0000000 --- a/BufferStructs.h +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -#include - -struct VertexShaderExternalData -{ - DirectX::XMFLOAT4 colorTint; - DirectX::XMFLOAT4X4 world; - DirectX::XMFLOAT4X4 view; - DirectX::XMFLOAT4X4 projection; -}; diff --git a/DX11Starter.vcxproj b/DX11Starter.vcxproj index f083e8d..b0e319f 100644 --- a/DX11Starter.vcxproj +++ b/DX11Starter.vcxproj @@ -129,17 +129,18 @@ + - + diff --git a/DX11Starter.vcxproj.filters b/DX11Starter.vcxproj.filters index bb2d3b0..301d76a 100644 --- a/DX11Starter.vcxproj.filters +++ b/DX11Starter.vcxproj.filters @@ -45,6 +45,9 @@ Source Files + + Source Files + @@ -62,9 +65,6 @@ Header Files - - Header Files - Header Files @@ -77,6 +77,9 @@ Header Files + + Header Files + diff --git a/Entity.cpp b/Entity.cpp index 0d3835a..65b6e69 100644 --- a/Entity.cpp +++ b/Entity.cpp @@ -1,7 +1,8 @@ #include "Entity.h" -Entity::Entity(std::shared_ptr _mesh) +Entity::Entity(std::shared_ptr _material, std::shared_ptr _mesh) { + material = _material; mesh = _mesh; } @@ -14,3 +15,13 @@ std::shared_ptr Entity::GetMesh() { return mesh; } + +std::shared_ptr Entity::GetMaterial() +{ + return material; +} + +void Entity::SetMaterial(std::shared_ptr _material) +{ + material = _material; +} diff --git a/Entity.h b/Entity.h index ea780c9..fbcdae4 100644 --- a/Entity.h +++ b/Entity.h @@ -2,17 +2,24 @@ #include "Mesh.h" #include "Transform.h" +#include "Material.h" #include class Entity { public: - Entity(std::shared_ptr _mesh); + Entity( + std::shared_ptr _material, + std::shared_ptr _mesh); - Transform* GetTransform(); - std::shared_ptr GetMesh(); + Transform* GetTransform(); + std::shared_ptr GetMesh(); + std::shared_ptr GetMaterial(); + + void SetMaterial(std::shared_ptr _material); private: - Transform transform; - std::shared_ptr mesh; + Transform transform; + std::shared_ptr mesh; + std::shared_ptr material; }; diff --git a/Game.cpp b/Game.cpp index 7290e26..e57c673 100644 --- a/Game.cpp +++ b/Game.cpp @@ -1,7 +1,6 @@ #include "Game.h" #include "Vertex.h" #include "Input.h" -#include "BufferStructs.h" #include "SimpleShader.h" // Needed for a helper function to read compiled shader files from the hard drive @@ -67,21 +66,6 @@ void Game::Init() // geometric primitives (points, lines or triangles) we want to draw. // Essentially: "What kind of shape should the GPU draw with our data?" context->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST); - - // Get size as the next multiple of 16 (instead of hardcoding a size here!) - unsigned int size = sizeof(VertexShaderExternalData); - // This will work even if your struct size changes. - // Adding 15 ensures either go past next multiple of 16, or if size is already a multiple, we almost get to next multiple. - // Integer division tells us how many 16's would fit (w/o remainder). Get back to multiple of 16 with multiplication step. - size = (size + 15) / 16 * 16; - // Describe constant buffer - D3D11_BUFFER_DESC cbDesc = {}; // zero-out - cbDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER; - cbDesc.ByteWidth = size; // must be multiple of 16 - cbDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE; - cbDesc.Usage = D3D11_USAGE_DYNAMIC; - - device->CreateBuffer(&cbDesc, 0, constantBufferVS.GetAddressOf()); } // -------------------------------------------------------- @@ -96,6 +80,17 @@ void Game::LoadShaders() { vertexShader = std::make_shared(device, context, GetFullPathTo_Wide(L"VertexShader.cso").c_str()); pixelShader = std::make_shared(device, context, GetFullPathTo_Wide(L"PixelShader.cso").c_str()); + + // thanks to https://harry7557558.github.io/tools/colorpicker.html for having the only 0f-1f picker i could find + XMFLOAT4 white = XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f); + XMFLOAT4 deeppink = XMFLOAT4(1.0f, 0.08f, 0.4f, 1.0f); + XMFLOAT4 deepcoral = XMFLOAT4(1.0f, 0.39f, 0.22f, 1.0f); + + materials = { + std::make_shared(white, vertexShader, pixelShader), + std::make_shared(deeppink, vertexShader, pixelShader), + std::make_shared(deepcoral, vertexShader, pixelShader), + }; } // -------------------------------------------------------- @@ -144,15 +139,15 @@ void Game::CreateBasicGeometry() }; entities = { - std::make_shared(shapes[0]), - std::make_shared(shapes[0]), - std::make_shared(shapes[0]), - std::make_shared(shapes[1]), - std::make_shared(shapes[1]), - std::make_shared(shapes[1]), - std::make_shared(shapes[2]), - std::make_shared(shapes[2]), - std::make_shared(shapes[2]), + std::make_shared(materials[0], shapes[0]), + std::make_shared(materials[1], shapes[0]), + std::make_shared(materials[2], shapes[0]), + std::make_shared(materials[0], shapes[1]), + std::make_shared(materials[1], shapes[1]), + std::make_shared(materials[2], shapes[1]), + std::make_shared(materials[0], shapes[2]), + std::make_shared(materials[1], shapes[2]), + std::make_shared(materials[2], shapes[2]), }; } @@ -224,32 +219,15 @@ void Game::Draw(float deltaTime, float totalTime) for (auto entity : entities) { // create constant buffer - VertexShaderExternalData vsData; - vsData.colorTint = XMFLOAT4(1.0f, 0.5f, 0.5f, 1.0f); - vsData.world = entity->GetTransform()->GetWorldMatrix(); - vsData.view = camera->GetViewMatrix(); - vsData.projection = camera->GetProjectionMatrix(); - - // copy constant buffer to resource - D3D11_MAPPED_SUBRESOURCE mappedBuffer = {}; - context->Map(constantBufferVS.Get(), 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedBuffer); - memcpy(mappedBuffer.pData, &vsData, sizeof(vsData)); - context->Unmap(constantBufferVS.Get(), 0); - - // bind constant buffer - context->VSSetConstantBuffers( - 0, // which slot (register) to bind buffer to? - 1, // how many are we activating? can do multiple at once? - constantBufferVS.GetAddressOf() // Array of buffers (or address of one) - ); - - // Ensure the pipeline knows how to interpret the data (numbers) - // from the vertex buffer. - // - If all of your 3D models use the exact same vertex layout, - // this could simply be done once in Init() - // - However, this isn't always the case (but might be for this course) - context->IASetInputLayout(inputLayout.Get()); + std::shared_ptr vs = entity->GetMaterial()->GetVertexShader(); + vs->SetFloat4("colorTint", entity->GetMaterial()->GetTint()); + vs->SetMatrix4x4("world", entity->GetTransform()->GetWorldMatrix()); + vs->SetMatrix4x4("view", camera->GetViewMatrix()); + vs->SetMatrix4x4("projection", camera->GetProjectionMatrix()); + vs->CopyAllBufferData(); + entity->GetMaterial()->GetVertexShader()->SetShader(); + entity->GetMaterial()->GetPixelShader()->SetShader(); entity->GetMesh()->Draw(); } diff --git a/Game.h b/Game.h index 970d7e3..1ca6c20 100644 --- a/Game.h +++ b/Game.h @@ -5,6 +5,7 @@ #include "Mesh.h" #include "Entity.h" #include "SimpleShader.h" +#include "Material.h" #include #include // Used for ComPtr - a smart pointer for COM objects #include @@ -42,14 +43,15 @@ private: // Shaders and shader-related constructs std::shared_ptr pixelShader; std::shared_ptr vertexShader; - Microsoft::WRL::ComPtr inputLayout; - // Temporary A2 shapes + // A2 shapes std::vector> shapes; - // Temporary A4 entities; + // A4 entities; std::vector> entities; // A5 Camera std::shared_ptr camera; + // A6 Materials + std::vector> materials; Microsoft::WRL::ComPtr constantBufferVS; }; diff --git a/Material.cpp b/Material.cpp new file mode 100644 index 0000000..0c328e0 --- /dev/null +++ b/Material.cpp @@ -0,0 +1,42 @@ +#include "Material.h" + +Material::Material(DirectX::XMFLOAT4 _tint, std::shared_ptr _vertexShader, std::shared_ptr _pixelShader) +{ + tint = _tint; + vertexShader = _vertexShader; + pixelShader = _pixelShader; +} + +Material::~Material() +{ +} + +DirectX::XMFLOAT4 Material::GetTint() +{ + return tint; +} + +std::shared_ptr Material::GetVertexShader() +{ + return vertexShader; +} + +std::shared_ptr Material::GetPixelShader() +{ + return pixelShader; +} + +void Material::SetTint(DirectX::XMFLOAT4 _tint) +{ + tint = _tint; +} + +void Material::SetVertexShader(std::shared_ptr _vertexShader) +{ + vertexShader = _vertexShader; +} + +void Material::SetPixelShader(std::shared_ptr _pixelShader) +{ + pixelShader = _pixelShader; +} diff --git a/Material.h b/Material.h new file mode 100644 index 0000000..b04804d --- /dev/null +++ b/Material.h @@ -0,0 +1,28 @@ +#pragma once + +#include +#include +#include "SimpleShader.h" + +class Material +{ +public: + Material( + DirectX::XMFLOAT4 _tint, + std::shared_ptr _vertexShader, + std::shared_ptr _pixelShader); + ~Material(); + + DirectX::XMFLOAT4 GetTint(); + std::shared_ptr GetVertexShader(); + std::shared_ptr GetPixelShader(); + + void SetTint(DirectX::XMFLOAT4 _tint); + void SetVertexShader(std::shared_ptr _vertexShader); + void SetPixelShader(std::shared_ptr _pixelShader); + +private: + DirectX::XMFLOAT4 tint; + std::shared_ptr vertexShader; + std::shared_ptr pixelShader; +};