This repository has been archived on 2024-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
DX11Starter/Game.h

64 lines
1.7 KiB
C++

#pragma once
#include "DXCore.h"
#include "Camera.h"
#include "Mesh.h"
#include "Entity.h"
#include "SimpleShader.h"
#include "Material.h"
#include "Lights.h"
#include <DirectXMath.h>
#include <wrl/client.h> // Used for ComPtr - a smart pointer for COM objects
#include <memory>
#include <vector>
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<ID3D11ShaderResourceView> CreateCubemap(
Microsoft::WRL::ComPtr<ID3D11Device> _device,
Microsoft::WRL::ComPtr<ID3D11DeviceContext> _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<SimplePixelShader> pixelShader;
std::shared_ptr<SimpleVertexShader> vertexShader;
// A2 shapes
std::vector<std::shared_ptr<Mesh>> shapes;
// A4 entities;
std::vector<std::shared_ptr<Entity>> entities;
// A5 Camera
std::shared_ptr<Camera> camera;
// A6 Materials
std::vector<std::shared_ptr<Material>> materials;
// A7 Lights
std::vector<Light> lights;
DirectX::XMFLOAT3 ambient;
Microsoft::WRL::ComPtr<ID3D11Buffer> constantBufferVS;
};