#pragma once #include "DXCore.h" #include "Camera.h" #include "Mesh.h" #include "Entity.h" #include "SimpleShader.h" #include "Material.h" #include "Lights.h" #include #include // Used for ComPtr - a smart pointer for COM objects #include #include class Game : public DXCore { public: Game(HINSTANCE hInstance); ~Game(); 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; void LoadShadersAndMaterials(); void LoadTextures(); void LoadLighting(); void CreateBasicGeometry(); // Shaders and shader-related constructs std::shared_ptr pixelShader; std::shared_ptr vertexShader; // A2 shapes std::vector> shapes; // A4 entities; std::vector> entities; // A5 Camera std::shared_ptr camera; // A6 Materials std::vector> materials; // A7 Lights std::vector lights; DirectX::XMFLOAT3 ambient; Microsoft::WRL::ComPtr constantBufferVS; };