From e8a3dcf48dd10f6aec28aa6230cc4626850bcc00 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 15 Jan 2022 14:54:08 -0500 Subject: [PATCH 1/6] define Mesh class --- Mesh.cpp | 28 ++++++++++++++++++++++++++++ Mesh.h | 26 ++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 Mesh.cpp create mode 100644 Mesh.h diff --git a/Mesh.cpp b/Mesh.cpp new file mode 100644 index 0000000..e2b0818 --- /dev/null +++ b/Mesh.cpp @@ -0,0 +1,28 @@ +#include "Mesh.h" + +Mesh::Mesh(Vertex* _vertices, int _vertexCount, unsigned int* _indices, int _indexCount, Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context) +{ +} + +Mesh::~Mesh() +{ +} + +void Mesh::Draw() +{ +} + +Microsoft::WRL::ComPtr* Mesh::GetVertexBuffer() +{ + return nullptr; +} + +Microsoft::WRL::ComPtr* Mesh::GetIndexBuffer() +{ + return nullptr; +} + +int Mesh::GetIndexCount() +{ + return 0; +} diff --git a/Mesh.h b/Mesh.h new file mode 100644 index 0000000..c07fb31 --- /dev/null +++ b/Mesh.h @@ -0,0 +1,26 @@ +#pragma once + +#include +#include +#include "Vertex.h" + +class Mesh +{ +private: + Microsoft::WRL::ComPtr bufferVertex; + Microsoft::WRL::ComPtr bufferIndex; +public: + Mesh( + Vertex* _vertices, + int _vertexCount, + unsigned int* _indices, + int _indexCount, + Microsoft::WRL::ComPtr _device, + Microsoft::WRL::ComPtr _context); + ~Mesh(); + + void Draw(); + Microsoft::WRL::ComPtr* GetVertexBuffer(); + Microsoft::WRL::ComPtr* GetIndexBuffer(); + int GetIndexCount(); +}; From f43baa8b220f9600752173c8e4ba746d3aa5490c Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 15 Jan 2022 15:12:30 -0500 Subject: [PATCH 2/6] add more Mesh code --- Mesh.cpp | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- Mesh.h | 22 ++++++++++++---------- 2 files changed, 64 insertions(+), 13 deletions(-) diff --git a/Mesh.cpp b/Mesh.cpp index e2b0818..0c80d8b 100644 --- a/Mesh.cpp +++ b/Mesh.cpp @@ -1,28 +1,77 @@ #include "Mesh.h" +using namespace DirectX; + Mesh::Mesh(Vertex* _vertices, int _vertexCount, unsigned int* _indices, int _indexCount, Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context) { + // Create the VERTEX BUFFER description + D3D11_BUFFER_DESC vbd = {}; + vbd.Usage = D3D11_USAGE_IMMUTABLE; + vbd.ByteWidth = sizeof(Vertex) * _vertexCount; + vbd.BindFlags = D3D11_BIND_VERTEX_BUFFER; + vbd.CPUAccessFlags = 0; + vbd.MiscFlags = 0; + vbd.StructureByteStride = 0; + + // Create the proper struct to hold the initial vertex data + // - This is how we put the initial data into the buffer + D3D11_SUBRESOURCE_DATA initialVertexData = {}; + initialVertexData.pSysMem = _vertices; + + // Actually create the buffer with the initial data + _device->CreateBuffer(&vbd, &initialVertexData, bufferVertex.GetAddressOf()); + + // Create the INDEX BUFFER description + D3D11_BUFFER_DESC ibd = {}; + ibd.Usage = D3D11_USAGE_IMMUTABLE; + ibd.ByteWidth = sizeof(unsigned int) * _indexCount; + ibd.BindFlags = D3D11_BIND_INDEX_BUFFER; + ibd.CPUAccessFlags = 0; + ibd.MiscFlags = 0; + ibd.StructureByteStride = 0; + + // Create the proper struct to hold the initial index data + D3D11_SUBRESOURCE_DATA initialIndexData = {}; + initialIndexData.pSysMem = _indices; + countIndex = _indexCount; + + // Create the buffer with the initial data + _device->CreateBuffer(&ibd, &initialIndexData, bufferIndex.GetAddressOf()); + + deviceContext = _context; } Mesh::~Mesh() { + // Because this is using ComPtr, destructor for now is unnecessary } void Mesh::Draw() { + // Set buffers in the input assembler + UINT stride = sizeof(Vertex); + UINT offset = 0; + deviceContext->IASetVertexBuffers(0, 1, bufferVertex.GetAddressOf(), &stride, &offset); + deviceContext->IASetIndexBuffer(bufferIndex.Get(), DXGI_FORMAT_R32_UINT, 0); + + // Do the actual drawing + deviceContext->DrawIndexed( + countIndex, // The number of indices to use (we could draw a subset if we wanted) + 0, // Offset to the first index we want to use + 0); // Offset to add to each index when looking up vertices } Microsoft::WRL::ComPtr* Mesh::GetVertexBuffer() { - return nullptr; + return &bufferVertex; } Microsoft::WRL::ComPtr* Mesh::GetIndexBuffer() { - return nullptr; + return &bufferIndex; } int Mesh::GetIndexCount() { - return 0; + return countIndex; } diff --git a/Mesh.h b/Mesh.h index c07fb31..8d118cd 100644 --- a/Mesh.h +++ b/Mesh.h @@ -7,20 +7,22 @@ class Mesh { private: - Microsoft::WRL::ComPtr bufferVertex; - Microsoft::WRL::ComPtr bufferIndex; + Microsoft::WRL::ComPtr bufferVertex; + Microsoft::WRL::ComPtr bufferIndex; + Microsoft::WRL::ComPtr deviceContext; + int countIndex; public: Mesh( - Vertex* _vertices, - int _vertexCount, - unsigned int* _indices, - int _indexCount, + Vertex* _vertices, + int _vertexCount, + unsigned int* _indices, + int _indexCount, Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context); ~Mesh(); - void Draw(); - Microsoft::WRL::ComPtr* GetVertexBuffer(); - Microsoft::WRL::ComPtr* GetIndexBuffer(); - int GetIndexCount(); + void Draw(); + Microsoft::WRL::ComPtr* GetVertexBuffer(); + Microsoft::WRL::ComPtr* GetIndexBuffer(); + int GetIndexCount(); }; From 0e82e16b3ba98ff0e500941f87edc7865a190100 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 15 Jan 2022 15:40:38 -0500 Subject: [PATCH 3/6] test mesh class with previous hardcoded shape --- Game.cpp | 99 +++++++------------------------------------------------- Game.h | 6 ++++ 2 files changed, 17 insertions(+), 88 deletions(-) diff --git a/Game.cpp b/Game.cpp index 1bdf45b..152bde8 100644 --- a/Game.cpp +++ b/Game.cpp @@ -148,76 +148,19 @@ void Game::CreateBasicGeometry() XMFLOAT4 red = XMFLOAT4(1.0f, 0.0f, 0.0f, 1.0f); XMFLOAT4 green = XMFLOAT4(0.0f, 1.0f, 0.0f, 1.0f); XMFLOAT4 blue = XMFLOAT4(0.0f, 0.0f, 1.0f, 1.0f); + XMFLOAT4 black = XMFLOAT4(0.0f, 0.0f, 0.0f, 1.0f); + XMFLOAT4 white = XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f); - // Set up the vertices of the triangle we would like to draw - // - We're going to copy this array, exactly as it exists in memory - // over to a DirectX-controlled data structure (the vertex buffer) - // - Note: Since we don't have a camera or really any concept of - // a "3d world" yet, we're simply describing positions within the - // bounds of how the rasterizer sees our screen: [-1 to +1] on X and Y - // - This means (0,0) is at the very center of the screen. - // - These are known as "Normalized Device Coordinates" or "Homogeneous - // Screen Coords", which are ways to describe a position without - // knowing the exact size (in pixels) of the image/window/etc. - // - Long story short: Resizing the window also resizes the triangle, - // since we're describing the triangle in terms of the window itself - Vertex vertices[] = - { + Vertex verts1[] = { { XMFLOAT3(+0.0f, +0.5f, +0.0f), red }, { XMFLOAT3(+0.5f, -0.5f, +0.0f), blue }, { XMFLOAT3(-0.5f, -0.5f, +0.0f), green }, }; + unsigned int ind1[] = { 0, 1, 2 }; - // Set up the indices, which tell us which vertices to use and in which order - // - This is somewhat redundant for just 3 vertices (it's a simple example) - // - Indices are technically not required if the vertices are in the buffer - // in the correct order and each one will be used exactly once - // - But just to see how it's done... - unsigned int indices[] = { 0, 1, 2 }; - - - // Create the VERTEX BUFFER description ----------------------------------- - // - The description is created on the stack because we only need - // it to create the buffer. The description is then useless. - D3D11_BUFFER_DESC vbd = {}; - vbd.Usage = D3D11_USAGE_IMMUTABLE; - vbd.ByteWidth = sizeof(Vertex) * 3; // 3 = number of vertices in the buffer - vbd.BindFlags = D3D11_BIND_VERTEX_BUFFER; // Tells DirectX this is a vertex buffer - vbd.CPUAccessFlags = 0; - vbd.MiscFlags = 0; - vbd.StructureByteStride = 0; - - // Create the proper struct to hold the initial vertex data - // - This is how we put the initial data into the buffer - D3D11_SUBRESOURCE_DATA initialVertexData = {}; - initialVertexData.pSysMem = vertices; - - // Actually create the buffer with the initial data - // - Once we do this, we'll NEVER CHANGE THE BUFFER AGAIN - device->CreateBuffer(&vbd, &initialVertexData, vertexBuffer.GetAddressOf()); - - - - // Create the INDEX BUFFER description ------------------------------------ - // - The description is created on the stack because we only need - // it to create the buffer. The description is then useless. - D3D11_BUFFER_DESC ibd = {}; - ibd.Usage = D3D11_USAGE_IMMUTABLE; - ibd.ByteWidth = sizeof(unsigned int) * 3; // 3 = number of indices in the buffer - ibd.BindFlags = D3D11_BIND_INDEX_BUFFER; // Tells DirectX this is an index buffer - ibd.CPUAccessFlags = 0; - ibd.MiscFlags = 0; - ibd.StructureByteStride = 0; - - // Create the proper struct to hold the initial index data - // - This is how we put the initial data into the buffer - D3D11_SUBRESOURCE_DATA initialIndexData = {}; - initialIndexData.pSysMem = indices; - - // Actually create the buffer with the initial data - // - Once we do this, we'll NEVER CHANGE THE BUFFER AGAIN - device->CreateBuffer(&ibd, &initialIndexData, indexBuffer.GetAddressOf()); - + shapes = { + std::make_shared(verts1, 3, ind1, 3, device, context), + }; } @@ -275,30 +218,10 @@ void Game::Draw(float deltaTime, float totalTime) // - However, this isn't always the case (but might be for this course) context->IASetInputLayout(inputLayout.Get()); - - // Set buffers in the input assembler - // - Do this ONCE PER OBJECT you're drawing, since each object might - // have different geometry. - // - for this demo, this step *could* simply be done once during Init(), - // but I'm doing it here because it's often done multiple times per frame - // in a larger application/game - UINT stride = sizeof(Vertex); - UINT offset = 0; - context->IASetVertexBuffers(0, 1, vertexBuffer.GetAddressOf(), &stride, &offset); - context->IASetIndexBuffer(indexBuffer.Get(), DXGI_FORMAT_R32_UINT, 0); - - - // Finally do the actual drawing - // - Do this ONCE PER OBJECT you intend to draw - // - This will use all of the currently set DirectX "stuff" (shaders, buffers, etc) - // - DrawIndexed() uses the currently set INDEX BUFFER to look up corresponding - // vertices in the currently set VERTEX BUFFER - context->DrawIndexed( - 3, // The number of indices to use (we could draw a subset if we wanted) - 0, // Offset to the first index we want to use - 0); // Offset to add to each index when looking up vertices - - + for (int i = 0; i < shapes.size(); ++i) + { + shapes[i]->Draw(); + } // Present the back buffer to the user // - Puts the final frame we're drawing into the window so the user can see it diff --git a/Game.h b/Game.h index 4871310..9d83c8b 100644 --- a/Game.h +++ b/Game.h @@ -1,8 +1,11 @@ #pragma once #include "DXCore.h" +#include "Mesh.h" #include #include // Used for ComPtr - a smart pointer for COM objects +#include +#include class Game : public DXCore @@ -42,5 +45,8 @@ private: Microsoft::WRL::ComPtr vertexShader; Microsoft::WRL::ComPtr inputLayout; + // Temporary A2 shapes + std::vector> shapes; + }; From 5b753b72133fec4e8b2ae1e4a2ad5536b0f194e3 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 15 Jan 2022 15:40:53 -0500 Subject: [PATCH 4/6] save vxcproj... --- DX11Starter.vcxproj | 2 ++ DX11Starter.vcxproj.filters | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/DX11Starter.vcxproj b/DX11Starter.vcxproj index d920499..53eedbf 100644 --- a/DX11Starter.vcxproj +++ b/DX11Starter.vcxproj @@ -127,11 +127,13 @@ + + diff --git a/DX11Starter.vcxproj.filters b/DX11Starter.vcxproj.filters index c7deda6..aa60025 100644 --- a/DX11Starter.vcxproj.filters +++ b/DX11Starter.vcxproj.filters @@ -30,6 +30,9 @@ Source Files + + Source Files + @@ -44,6 +47,9 @@ Header Files + + Header Files + From 9cf14c0bfa8713f963c9cac71dc266a44c8e57e2 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 15 Jan 2022 16:24:25 -0500 Subject: [PATCH 5/6] draw more shapes on screen --- Game.cpp | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/Game.cpp b/Game.cpp index 152bde8..5f598d8 100644 --- a/Game.cpp +++ b/Game.cpp @@ -152,14 +152,34 @@ void Game::CreateBasicGeometry() XMFLOAT4 white = XMFLOAT4(1.0f, 1.0f, 1.0f, 1.0f); Vertex verts1[] = { - { XMFLOAT3(+0.0f, +0.5f, +0.0f), red }, - { XMFLOAT3(+0.5f, -0.5f, +0.0f), blue }, - { XMFLOAT3(-0.5f, -0.5f, +0.0f), green }, + { XMFLOAT3(+0.50f, +0.75f, +0.00f), red }, + { XMFLOAT3(+0.75f, +0.25f, +0.00f), blue }, + { XMFLOAT3(+0.25f, +0.25f, +0.00f), green }, }; unsigned int ind1[] = { 0, 1, 2 }; + Vertex verts2[] = { + { XMFLOAT3(-0.75f, +0.50f, +0.00f), red }, + { XMFLOAT3(-0.50f, +0.50f, +0.00f), blue }, + { XMFLOAT3(-0.50f, +0.20f, +0.00f), red }, + { XMFLOAT3(-0.75f, +0.20f, +0.00f), blue }, + }; + unsigned int ind2[] = { 0, 1, 2, 0, 2, 3 }; + + Vertex verts3[] = { + { XMFLOAT3(+0.00f, +0.30f, +0.00f), white }, + { XMFLOAT3(+0.15f, +0.15f, +0.00f), black }, + { XMFLOAT3(+0.15f, -0.15f, +0.00f), white }, + { XMFLOAT3(+0.00f, -0.30f, +0.00f), black }, + { XMFLOAT3(-0.15f, -0.15f, +0.00f), white }, + { XMFLOAT3(-0.15f, +0.15f, +0.00f), black }, + }; + unsigned int ind3[] = { 0,1,5 , 1,2,5 , 2,3,4 , 2,4,5 }; + shapes = { - std::make_shared(verts1, 3, ind1, 3, device, context), + std::make_shared(verts1, 03, ind1, 03, device, context), + std::make_shared(verts2, 04, ind2, 06, device, context), + std::make_shared(verts3, 06, ind3, 12, device, context), }; } From b70072b7eeb1b0cc16d28275f78bd6c087f16134 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 15 Jan 2022 16:34:33 -0500 Subject: [PATCH 6/6] remove buffers from game --- Game.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Game.h b/Game.h index 9d83c8b..dbfe87d 100644 --- a/Game.h +++ b/Game.h @@ -35,10 +35,6 @@ private: // - 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 - - // Buffers to hold actual geometry data - Microsoft::WRL::ComPtr vertexBuffer; - Microsoft::WRL::ComPtr indexBuffer; // Shaders and shader-related constructs Microsoft::WRL::ComPtr pixelShader;