2019-07-25 21:21:03 +00:00
|
|
|
#ifndef __INCLUDED_DX12_HOOK_H__
|
|
|
|
#define __INCLUDED_DX12_HOOK_H__
|
|
|
|
|
2019-08-14 12:55:31 +00:00
|
|
|
#include "Base_Hook.h"
|
2019-08-14 13:09:57 +00:00
|
|
|
#ifndef NO_OVERLAY
|
2019-08-14 12:55:31 +00:00
|
|
|
|
2019-07-25 21:21:03 +00:00
|
|
|
#include <d3d12.h>
|
2019-08-19 16:56:15 +00:00
|
|
|
#include <dxgi1_4.h>
|
2019-07-25 21:21:03 +00:00
|
|
|
#include "DirectX_VTables.h"
|
|
|
|
|
|
|
|
class DX12_Hook : public Base_Hook
|
|
|
|
{
|
|
|
|
public:
|
2019-08-01 13:58:24 +00:00
|
|
|
static constexpr const char *DLL_NAME = "d3d12.dll";
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
private:
|
2019-08-16 17:21:30 +00:00
|
|
|
static DX12_Hook* _inst;
|
|
|
|
|
2019-07-25 21:21:03 +00:00
|
|
|
// Variables
|
|
|
|
bool initialized;
|
2019-08-26 14:46:56 +00:00
|
|
|
|
|
|
|
DXGI_SWAP_CHAIN_DESC sc_desc;
|
|
|
|
ID3D12DescriptorHeap* pSrvDescHeap;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
// Functions
|
|
|
|
DX12_Hook();
|
|
|
|
virtual ~DX12_Hook();
|
|
|
|
|
|
|
|
void resetRenderState();
|
|
|
|
void prepareForOverlay(IDXGISwapChain* pSwapChain);
|
|
|
|
|
|
|
|
// Hook to render functions
|
|
|
|
static HRESULT STDMETHODCALLTYPE MyPresent(IDXGISwapChain* _this, UINT SyncInterval, UINT Flags);
|
|
|
|
static HRESULT STDMETHODCALLTYPE MyResizeTarget(IDXGISwapChain* _this, const DXGI_MODE_DESC* pNewTargetParameters);
|
|
|
|
static HRESULT STDMETHODCALLTYPE MyResizeBuffers(IDXGISwapChain* _this, UINT BufferCount, UINT Width, UINT Height, DXGI_FORMAT NewFormat, UINT SwapChainFlags);
|
2019-08-26 14:46:56 +00:00
|
|
|
static void STDMETHODCALLTYPE MyExecuteCommandLists(ID3D12CommandQueue *_this, UINT NumCommandLists, ID3D12CommandList* const* ppCommandLists);
|
|
|
|
static HRESULT STDMETHODCALLTYPE MyClose(ID3D12GraphicsCommandList* _this);
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
decltype(&IDXGISwapChain::Present) Present;
|
|
|
|
decltype(&IDXGISwapChain::ResizeBuffers) ResizeBuffers;
|
|
|
|
decltype(&IDXGISwapChain::ResizeTarget) ResizeTarget;
|
2019-08-26 14:46:56 +00:00
|
|
|
decltype(&ID3D12CommandQueue::ExecuteCommandLists) ExecuteCommandLists;
|
|
|
|
decltype(&ID3D12GraphicsCommandList::Close) Close;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
// Hook functions so we know we use DX11
|
2019-08-16 08:36:44 +00:00
|
|
|
//static decltype(D3D12CreateDevice) MyD3D12CreateDevice;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2019-08-16 08:36:44 +00:00
|
|
|
//decltype(D3D12CreateDevice)* D3D12CreateDevice;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
public:
|
2019-08-16 17:10:12 +00:00
|
|
|
bool start_hook();
|
|
|
|
static DX12_Hook* Inst();
|
2019-08-26 14:46:56 +00:00
|
|
|
virtual const char* get_lib_name() const;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2019-08-26 14:46:56 +00:00
|
|
|
void loadFunctions(ID3D12Device *pDevice, ID3D12CommandQueue *pCommandQueue, IDXGISwapChain *pSwapChain);
|
2019-07-25 21:21:03 +00:00
|
|
|
};
|
|
|
|
|
2019-08-14 13:09:57 +00:00
|
|
|
#endif//NO_OVERLAY
|
2019-07-25 21:21:03 +00:00
|
|
|
#endif//__INCLUDED_DX12_HOOK_H__
|