From 2d659b0646dc996672696ef149e0463e2ddad703 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sun, 3 Apr 2022 15:47:16 -0400 Subject: [PATCH] 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;