#pragma once #include "DXCore.h" #include "Camera.h" #include "Mesh.h" #include "Entity.h" #include "SimpleShader.h" #include "Material.h" #include "Lights.h" #include "Sky.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); static Microsoft::WRL::ComPtr CreateCubemap( Microsoft::WRL::ComPtr _device, Microsoft::WRL::ComPtr _context, const wchar_t* _right, const wchar_t* _left, const wchar_t* _up, const wchar_t* _down, const wchar_t* _front, const wchar_t* _back); 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; // A9 Normalmaps & Cubemaps std::shared_ptr skybox; Microsoft::WRL::ComPtr sampler; Microsoft::WRL::ComPtr constantBufferVS; };