From 4c911f834851ff8d9eec23ed381da5b486becc78 Mon Sep 17 00:00:00 2001 From: Lightling Date: Tue, 29 Mar 2022 10:20:44 -0400 Subject: [PATCH 1/5] move texture loading to material class --- DXCore.h | 14 +++++++------- Game.cpp | 31 +++++++------------------------ Material.cpp | 7 +++++++ Material.h | 8 ++++++++ 4 files changed, 29 insertions(+), 31 deletions(-) diff --git a/DXCore.h b/DXCore.h index 534cc1c..4880a06 100644 --- a/DXCore.h +++ b/DXCore.h @@ -44,6 +44,13 @@ public: virtual void Update(float deltaTime, float totalTime) = 0; virtual void Draw(float deltaTime, float totalTime) = 0; + // Helpers for determining the actual path to the executable + static std::string GetExePath(); + static std::wstring GetExePath_Wide(); + + static std::string GetFullPathTo(std::string relativeFilePath); + static std::wstring GetFullPathTo_Wide(std::wstring relativeFilePath); + protected: HINSTANCE hInstance; // The handle to the application HWND hWnd; // The handle to the window itself @@ -70,13 +77,6 @@ protected: // Helper function for allocating a console window void CreateConsoleWindow(int bufferLines, int bufferColumns, int windowLines, int windowColumns); - // Helpers for determining the actual path to the executable - std::string GetExePath(); - std::wstring GetExePath_Wide(); - - std::string GetFullPathTo(std::string relativeFilePath); - std::wstring GetFullPathTo_Wide(std::wstring relativeFilePath); - private: // Timing related data diff --git a/Game.cpp b/Game.cpp index 3cfb69f..a01cf77 100644 --- a/Game.cpp +++ b/Game.cpp @@ -105,32 +105,15 @@ void Game::LoadTextures() sampDesc.MaxLOD = D3D11_FLOAT32_MAX; device->CreateSamplerState(&sampDesc, sampler.GetAddressOf()); - Microsoft::WRL::ComPtr - deepFloorEmissive, - deepFloorSpecular, - deepFloorAlbedo, - floorEmissive, - floorSpecular, - floorAlbedo; - - // taking the preprocessor macro from the demo because I don't like typing - #define GetTex(pathToTexture, shaderResourceView) CreateWICTextureFromFile(device.Get(), context.Get(), GetFullPathTo_Wide(pathToTexture).c_str(), 0, shaderResourceView.GetAddressOf()); - - GetTex(L"Assets/Textures/HQGame/structure-endgame-deepfloor_emissive.png", deepFloorEmissive); - GetTex(L"Assets/Textures/HQGame/structure-endgame-deepfloor_specular.png", deepFloorSpecular); - GetTex(L"Assets/Textures/HQGame/structure-endgame-deepfloor_albedo.png", deepFloorAlbedo); - GetTex(L"Assets/Textures/HQGame/structure-endgame-floor_emissive.png", floorEmissive); - GetTex(L"Assets/Textures/HQGame/structure-endgame-floor_specular.png", floorSpecular); - GetTex(L"Assets/Textures/HQGame/structure-endgame-floor_albedo.png", floorAlbedo); - materials[0]->PushSampler("BasicSampler", sampler); - materials[0]->PushTexture("Albedo", deepFloorAlbedo); - materials[0]->PushTexture("Specular", deepFloorSpecular); - materials[0]->PushTexture("Emissive", deepFloorEmissive); + materials[0]->LoadTexture(L"Assets/Textures/HQGame/structure-endgame-deepfloor_albedo.png", TEXTYPE_ALBEDO, device.Get(), context.Get()); + materials[0]->LoadTexture(L"Assets/Textures/HQGame/structure-endgame-deepfloor_specular.png", TEXTYPE_SPECULAR, device.Get(), context.Get()); + materials[0]->LoadTexture(L"Assets/Textures/HQGame/structure-endgame-deepfloor_emissive.png", TEXTYPE_EMISSIVE, device.Get(), context.Get()); + materials[1]->PushSampler("BasicSampler", sampler); - materials[1]->PushTexture("Albedo", floorAlbedo); - materials[1]->PushTexture("Specular", floorSpecular); - materials[1]->PushTexture("Emissive", floorEmissive); + materials[1]->LoadTexture(L"Assets/Textures/HQGame/structure-endgame-floor_albedo.png", TEXTYPE_ALBEDO, device.Get(), context.Get()); + materials[1]->LoadTexture(L"Assets/Textures/HQGame/structure-endgame-floor_specular.png", TEXTYPE_SPECULAR, device.Get(), context.Get()); + materials[1]->LoadTexture(L"Assets/Textures/HQGame/structure-endgame-floor_emissive.png", TEXTYPE_EMISSIVE, device.Get(), context.Get()); } void Game::LoadLighting() diff --git a/Material.cpp b/Material.cpp index 25a2bfd..1d3b832 100644 --- a/Material.cpp +++ b/Material.cpp @@ -129,6 +129,13 @@ void Material::SetPixelShader(std::shared_ptr _pixelShader) pixelShader = _pixelShader; } +void Material::LoadTexture(const wchar_t* _path, const char* _type, ID3D11Device* _device, ID3D11DeviceContext* _context) +{ + Microsoft::WRL::ComPtr shaderResourceView; + DirectX::CreateWICTextureFromFile(_device, _context, DXCore::GetFullPathTo_Wide(_path).c_str(), 0, shaderResourceView.GetAddressOf()); + PushTexture(_type, shaderResourceView); +} + void Material::PushSampler(std::string _name, Microsoft::WRL::ComPtr _sampler) { samplers.insert({ _name, _sampler }); diff --git a/Material.h b/Material.h index c3df313..cdbd90b 100644 --- a/Material.h +++ b/Material.h @@ -2,10 +2,17 @@ #include #include +#include "DXCore.h" #include "SimpleShader.h" #include "Transform.h" #include "Camera.h" #include "Lights.h" +#include "WICTextureLoader.h" + +constexpr auto TEXTYPE_ALBEDO = "Albedo"; +constexpr auto TEXTYPE_NORMAL = "Normal"; +constexpr auto TEXTYPE_EMISSIVE = "Emissive"; +constexpr auto TEXTYPE_SPECULAR = "Specular"; class Material { @@ -39,6 +46,7 @@ public: void SetVertexShader(std::shared_ptr _vertexShader); void SetPixelShader(std::shared_ptr _pixelShader); + void LoadTexture(const wchar_t* _path, const char* _type, ID3D11Device* _device, ID3D11DeviceContext* _context); void PushSampler(std::string _name, Microsoft::WRL::ComPtr _sampler); void PushTexture(std::string _name, Microsoft::WRL::ComPtr _texture); From 51206816aa07c718fb1c380126b96f90d030521f Mon Sep 17 00:00:00 2001 From: Lightling Date: Tue, 29 Mar 2022 10:34:00 -0400 Subject: [PATCH 2/5] support a dynamic number of lights --- Game.cpp | 8 ++++++++ Material.cpp | 1 + SimplePixelShader.hlsl | 12 ++++++++---- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/Game.cpp b/Game.cpp index a01cf77..a22c255 100644 --- a/Game.cpp +++ b/Game.cpp @@ -152,12 +152,20 @@ void Game::LoadLighting() pointLight1.Intensity = 0.25f; pointLight1.Range = 10; + Light pointLight2 = {}; + pointLight2.Type = LIGHT_TYPE_POINT; + pointLight2.Position = XMFLOAT3(0, 2, 0); + pointLight2.Color = XMFLOAT3(1, 0, 0); + pointLight2.Intensity = 0.25f; + pointLight2.Range = 10; + lights = { directionalLight0, directionalLight1, directionalLight2, pointLight0, pointLight1, + pointLight2, }; } diff --git a/Material.cpp b/Material.cpp index 1d3b832..a1a3159 100644 --- a/Material.cpp +++ b/Material.cpp @@ -34,6 +34,7 @@ void Material::Activate(Transform* _transform, std::shared_ptr _camera, pixelShader->SetFloat3("ambient", _ambient); pixelShader->SetFloat("emitAmount", GetEmitAmount()); pixelShader->SetFloat3("tint", GetTint()); + pixelShader->SetFloat("lightCount", (int)_lights.size()); pixelShader->SetData("lights", &_lights[0], sizeof(Light) * (int)_lights.size()); pixelShader->CopyAllBufferData(); pixelShader->SetShader(); diff --git a/SimplePixelShader.hlsl b/SimplePixelShader.hlsl index 7fa6b0b..a7c90d2 100644 --- a/SimplePixelShader.hlsl +++ b/SimplePixelShader.hlsl @@ -2,19 +2,23 @@ #include "Helpers.hlsli" #include "Lights.hlsli" -// temporary -#define LIGHT_COUNT 5 +#define MAX_LIGHTS 128 cbuffer ExternalData : register(b0) { float3 cameraPosition; float roughness; + float2 offset; float2 scale; + float3 ambient; float emitAmount; + float3 tint; - Light lights[LIGHT_COUNT]; + float lightCount; + + Light lights[MAX_LIGHTS]; } Texture2D Albedo : register(t0); @@ -70,7 +74,7 @@ float4 main(VertexToPixel input) : SV_TARGET float3 light = ambient * surface; // loop through lights - for (int i = 0; i < LIGHT_COUNT; i++) + for (int i = 0; i < lightCount; i++) { switch (lights[i].Type) { From c0843b4ae0554ae9b5b80e6aede40160be464312 Mon Sep 17 00:00:00 2001 From: Lightling Date: Tue, 29 Mar 2022 10:49:09 -0400 Subject: [PATCH 3/5] cleanup the annoying stuff --- Game.cpp | 11 ++++++----- Material.cpp | 1 + 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Game.cpp b/Game.cpp index a22c255..90429e5 100644 --- a/Game.cpp +++ b/Game.cpp @@ -202,7 +202,7 @@ void Game::CreateBasicGeometry() std::make_shared(materials[0], shapes[0]), std::make_shared(materials[0], shapes[1]), std::make_shared(materials[0], shapes[2]), - std::make_shared(materials[1], shapes[3]), + std::make_shared(materials[0], shapes[3]), std::make_shared(materials[1], shapes[4]), std::make_shared(materials[1], shapes[5]), std::make_shared(materials[1], shapes[6]), @@ -211,6 +211,7 @@ void Game::CreateBasicGeometry() for (int i = 0; i < entities.size(); ++i) { entities[i]->GetTransform()->SetPosition((-(int)(entities.size() / 2) + i) * 5, 0, 0); + entities[i]->GetMaterial()->SetEmitAmount((entities.size() - i) * 0.25f); } } @@ -242,10 +243,10 @@ void Game::Update(float deltaTime, float totalTime) for (int i = 0; i < entities.size(); ++i) { entities[i]->GetTransform()->SetRotation(sin(totalTime / 720) * 360, 0, 0); - entities[i]->GetMaterial()->SetRoughness(sin(totalTime) * 0.5f + 0.49f); - entities[i]->GetMaterial()->SetUVOffset(DirectX::XMFLOAT2(cos(totalTime * 4) * 0.5f + 0.49f, cos(totalTime * 4) * 0.5f + 0.49f)); - entities[i]->GetMaterial()->SetUVScale(DirectX::XMFLOAT2(sin(totalTime) * 0.5f + 0.49f, sin(totalTime) * 0.5f + 0.49f)); - entities[i]->GetMaterial()->SetEmitAmount(cos(totalTime) * 0.5f + 0.49f); + //entities[i]->GetMaterial()->SetRoughness(sin(totalTime) * 0.5f + 0.49f); + //entities[i]->GetMaterial()->SetUVOffset(DirectX::XMFLOAT2(cos(totalTime * 4) * 0.5f + 0.49f, cos(totalTime * 4) * 0.5f + 0.49f)); + //entities[i]->GetMaterial()->SetUVScale(DirectX::XMFLOAT2(sin(totalTime) * 0.5f + 0.49f, sin(totalTime) * 0.5f + 0.49f)); + //entities[i]->GetMaterial()->SetEmitAmount(cos(totalTime) * 0.5f + 0.49f); } } diff --git a/Material.cpp b/Material.cpp index a1a3159..dc99ff6 100644 --- a/Material.cpp +++ b/Material.cpp @@ -12,6 +12,7 @@ Material::Material( pixelShader = _pixelShader; uvOffset = DirectX::XMFLOAT2(0, 0); uvScale = DirectX::XMFLOAT2(1, 1); + emitAmount = 0; } Material::~Material() From 20b3fd7d9796b2f0005fe5bc7a4721ada8525399 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sun, 3 Apr 2022 15:40:50 -0400 Subject: [PATCH 4/5] condense lighting creation --- Game.cpp | 51 ++++++--------------------------------------------- Lights.h | 27 ++++++++++++++++++++++++--- 2 files changed, 30 insertions(+), 48 deletions(-) diff --git a/Game.cpp b/Game.cpp index 90429e5..89b3d7e 100644 --- a/Game.cpp +++ b/Game.cpp @@ -120,52 +120,13 @@ void Game::LoadLighting() { ambient = XMFLOAT3(0.1f, 0.1f, 0.15f); - Light directionalLight0 = {}; - directionalLight0.Type = LIGHT_TYPE_DIRECTIONAL; - directionalLight0.Direction = XMFLOAT3(1, 0.5f, 0.5f); - directionalLight0.Color = XMFLOAT3(1, 1, 1); - directionalLight0.Intensity = 0.5f; - - Light directionalLight1 = {}; - directionalLight1.Type = LIGHT_TYPE_DIRECTIONAL; - directionalLight1.Direction = XMFLOAT3(-0.25f, -1, 0.75f); - directionalLight1.Color = XMFLOAT3(1, 1, 1); - directionalLight1.Intensity = 0.5f; - - Light directionalLight2 = {}; - directionalLight2.Type = LIGHT_TYPE_DIRECTIONAL; - directionalLight2.Direction = XMFLOAT3(-1, 1, -0.5f); - directionalLight2.Color = XMFLOAT3(1, 1, 1); - directionalLight2.Intensity = 0.5f; - - Light pointLight0 = {}; - pointLight0.Type = LIGHT_TYPE_POINT; - pointLight0.Position = XMFLOAT3(-1.5f, 0, 0); - pointLight0.Color = XMFLOAT3(1, 1, 1); - pointLight0.Intensity = 0.5f; - pointLight0.Range = 10; - - Light pointLight1 = {}; - pointLight1.Type = LIGHT_TYPE_POINT; - pointLight1.Position = XMFLOAT3(1.5f, 0, 0); - pointLight1.Color = XMFLOAT3(1, 1, 1); - pointLight1.Intensity = 0.25f; - pointLight1.Range = 10; - - Light pointLight2 = {}; - pointLight2.Type = LIGHT_TYPE_POINT; - pointLight2.Position = XMFLOAT3(0, 2, 0); - pointLight2.Color = XMFLOAT3(1, 0, 0); - pointLight2.Intensity = 0.25f; - pointLight2.Range = 10; - lights = { - directionalLight0, - directionalLight1, - directionalLight2, - pointLight0, - pointLight1, - pointLight2, + Light::Directional(XMFLOAT3(1, 0.5f, 0.5f), XMFLOAT3(1, 1, 1), 0.5f), + Light::Directional(XMFLOAT3(-0.25f, -1, 0.75f), XMFLOAT3(1, 1, 1), 0.5f), + Light::Directional(XMFLOAT3(-1, 1, -0.5f), XMFLOAT3(1, 1, 1), 0.5f), + Light::Point(XMFLOAT3(-1.5f, 0, 0), XMFLOAT3(1, 1, 1), 0.5f, 10), + Light::Point(XMFLOAT3(1.5f, 0, 0), XMFLOAT3(1, 1, 1), 0.25f, 10), + Light::Point(XMFLOAT3(0, 2, 0), XMFLOAT3(1, 0, 0), 0.25f, 10), }; } diff --git a/Lights.h b/Lights.h index 546f6f6..8762f66 100644 --- a/Lights.h +++ b/Lights.h @@ -2,9 +2,9 @@ #include -#define LIGHT_TYPE_DIRECTIONAL 0 -#define LIGHT_TYPE_POINT 1 -#define LIGHT_TYPE_SPOT 2 +constexpr auto LIGHT_TYPE_DIRECTIONAL = 0; +constexpr auto LIGHT_TYPE_POINT = 1; +constexpr auto LIGHT_TYPE_SPOT = 2; struct Light { @@ -16,4 +16,25 @@ struct Light DirectX::XMFLOAT3 Color; float SpotFalloff; DirectX::XMFLOAT3 Padding; + + static Light Directional(DirectX::XMFLOAT3 _direction, DirectX::XMFLOAT3 _color, float _intensity) + { + Light light = {}; + light.Type = LIGHT_TYPE_DIRECTIONAL; + light.Direction = _direction; + light.Color = _color; + light.Intensity = _intensity; + return light; + }; + + static Light Point(DirectX::XMFLOAT3 _position, DirectX::XMFLOAT3 _color, float _intensity, float _range) + { + Light light = {}; + light.Type = LIGHT_TYPE_POINT; + light.Position = _position; + light.Color = _color; + light.Intensity = _intensity; + light.Range = _range; + return light; + }; }; From 2d659b0646dc996672696ef149e0463e2ddad703 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sun, 3 Apr 2022 15:47:16 -0400 Subject: [PATCH 5/5] game cleanup --- Game.cpp | 26 +++++++++----------------- Game.h | 12 +----------- 2 files changed, 10 insertions(+), 28 deletions(-) diff --git a/Game.cpp b/Game.cpp index 89b3d7e..1381f94 100644 --- a/Game.cpp +++ b/Game.cpp @@ -48,7 +48,6 @@ Game::~Game() // we don't need to explicitly clean up those DirectX objects // - If we weren't using smart pointers, we'd need // to call Release() on each DirectX object created in Game - } // -------------------------------------------------------- @@ -57,10 +56,7 @@ Game::~Game() // -------------------------------------------------------- void Game::Init() { - // Helper methods for loading shaders, creating some basic - // geometry to draw and some simple camera matrices. - // - You'll be expanding and/or replacing these later - LoadShaders(); + LoadShadersAndMaterials(); LoadTextures(); LoadLighting(); CreateBasicGeometry(); @@ -72,14 +68,9 @@ void Game::Init() } // -------------------------------------------------------- -// Loads shaders from compiled shader object (.cso) files -// and also created the Input Layout that describes our -// vertex data to the rendering pipeline. -// - Input Layout creation is done here because it must -// be verified against vertex shader byte code -// - We'll have that byte code already loaded below +// Loads shaders from compiled shader object (.cso) files and pushes them to materials // -------------------------------------------------------- -void Game::LoadShaders() +void Game::LoadShadersAndMaterials() { vertexShader = std::make_shared(device, context, GetFullPathTo_Wide(L"VertexShader.cso").c_str()); pixelShader = std::make_shared(device, context, GetFullPathTo_Wide(L"SimplePixelShader.cso").c_str()); @@ -92,6 +83,9 @@ void Game::LoadShaders() }; } +// -------------------------------------------------------- +// Loads textures and pushes them to the loaded materials +// -------------------------------------------------------- void Game::LoadTextures() { Microsoft::WRL::ComPtr sampler; @@ -116,6 +110,9 @@ void Game::LoadTextures() materials[1]->LoadTexture(L"Assets/Textures/HQGame/structure-endgame-floor_emissive.png", TEXTYPE_EMISSIVE, device.Get(), context.Get()); } +// -------------------------------------------------------- +// Instantiates all the lighting in the scene +// -------------------------------------------------------- void Game::LoadLighting() { ambient = XMFLOAT3(0.1f, 0.1f, 0.15f); @@ -195,7 +192,6 @@ void Game::OnResize() // -------------------------------------------------------- void Game::Update(float deltaTime, float totalTime) { - // Example input checking: Quit if the escape key is pressed if (Input::GetInstance().KeyDown(VK_ESCAPE)) Quit(); @@ -204,10 +200,6 @@ void Game::Update(float deltaTime, float totalTime) for (int i = 0; i < entities.size(); ++i) { entities[i]->GetTransform()->SetRotation(sin(totalTime / 720) * 360, 0, 0); - //entities[i]->GetMaterial()->SetRoughness(sin(totalTime) * 0.5f + 0.49f); - //entities[i]->GetMaterial()->SetUVOffset(DirectX::XMFLOAT2(cos(totalTime * 4) * 0.5f + 0.49f, cos(totalTime * 4) * 0.5f + 0.49f)); - //entities[i]->GetMaterial()->SetUVScale(DirectX::XMFLOAT2(sin(totalTime) * 0.5f + 0.49f, sin(totalTime) * 0.5f + 0.49f)); - //entities[i]->GetMaterial()->SetEmitAmount(cos(totalTime) * 0.5f + 0.49f); } } diff --git a/Game.h b/Game.h index b8be745..f62f3f3 100644 --- a/Game.h +++ b/Game.h @@ -15,33 +15,23 @@ class Game : public DXCore { - public: Game(HINSTANCE hInstance); ~Game(); - // Overridden setup and game loop methods, which - // will be called automatically void Init(); void OnResize(); void Update(float deltaTime, float totalTime); void Draw(float deltaTime, float totalTime); private: - // Should we use vsync to limit the frame rate? bool vsync; - // Initialization helper methods - feel free to customize, combine, etc. - void LoadShaders(); + void LoadShadersAndMaterials(); void LoadTextures(); void LoadLighting(); void CreateBasicGeometry(); - - // Note the usage of ComPtr below - // - This is a smart pointer for objects that abide by the - // Component Object Model, which DirectX objects do - // - More info here: https://github.com/Microsoft/DirectXTK/wiki/ComPtr // Shaders and shader-related constructs std::shared_ptr pixelShader;