81 строка
1.7 KiB
C++
81 строка
1.7 KiB
C++
//--------------------------------------------------------------------------------------
|
|
// pch.h
|
|
//
|
|
// Header for standard system include files.
|
|
//
|
|
// Advanced Technology Group (ATG)
|
|
// Copyright (C) Microsoft Corporation. All rights reserved.
|
|
//--------------------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
// Use the C++ standard templated min/max
|
|
#define NOMINMAX
|
|
|
|
#pragma warning(push)
|
|
#pragma warning(disable : 4467)
|
|
#include <wrl.h>
|
|
#pragma warning(pop)
|
|
|
|
#include <d3d11_3.h>
|
|
|
|
#if defined(NTDDI_WIN10_RS2)
|
|
#include <dxgi1_6.h>
|
|
#else
|
|
#include <dxgi1_5.h>
|
|
#endif
|
|
|
|
#include <DirectXMath.h>
|
|
#include <DirectXColors.h>
|
|
|
|
#include <algorithm>
|
|
#include <exception>
|
|
#include <memory>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
|
|
#include <stdio.h>
|
|
#include <pix.h>
|
|
|
|
#ifdef _DEBUG
|
|
#include <dxgidebug.h>
|
|
#endif
|
|
|
|
#include "DDSTextureLoader.h"
|
|
#include "GamePad.h"
|
|
#include "Keyboard.h"
|
|
#include "GraphicsMemory.h"
|
|
#include "SimpleMath.h"
|
|
#include "SpriteBatch.h"
|
|
#include "SpriteFont.h"
|
|
|
|
#include <xaudio2.h>
|
|
|
|
namespace DX
|
|
{
|
|
// Helper class for COM exceptions
|
|
class com_exception : public std::exception
|
|
{
|
|
public:
|
|
com_exception(HRESULT hr) noexcept : result(hr) {}
|
|
|
|
const char* what() const override
|
|
{
|
|
static char s_str[64] = {};
|
|
sprintf_s(s_str, "Failure with HRESULT of %08X", static_cast<unsigned int>(result));
|
|
return s_str;
|
|
}
|
|
|
|
private:
|
|
HRESULT result;
|
|
};
|
|
|
|
// Helper utility converts D3D API failures into exceptions.
|
|
inline void ThrowIfFailed(HRESULT hr)
|
|
{
|
|
if (FAILED(hr))
|
|
{
|
|
throw com_exception(hr);
|
|
}
|
|
}
|
|
} |