goldberg_emulator/overlay_experimental/windows/DX11_Hook.h

52 lines
1.4 KiB
C
Raw Normal View History

#ifndef __INCLUDED_DX11_HOOK_H__
#define __INCLUDED_DX11_HOOK_H__
2019-09-01 18:53:16 +00:00
#include "../Base_Hook.h"
#ifndef NO_OVERLAY
2019-08-14 12:55:31 +00:00
#include <d3d11.h>
#include "DirectX_VTables.h"
class DX11_Hook : public Base_Hook
{
public:
2019-08-01 13:58:24 +00:00
static constexpr const char *DLL_NAME = "d3d11.dll";
private:
2019-08-16 17:21:30 +00:00
static DX11_Hook* _inst;
// Variables
bool hooked;
bool initialized;
ID3D11DeviceContext* pContext;
2019-09-01 18:53:16 +00:00
ID3D11RenderTargetView* mainRenderTargetView;
// Functions
DX11_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);
decltype(&IDXGISwapChain::Present) Present;
decltype(&IDXGISwapChain::ResizeBuffers) ResizeBuffers;
decltype(&IDXGISwapChain::ResizeTarget) ResizeTarget;
public:
virtual ~DX11_Hook();
2019-08-16 17:10:12 +00:00
bool start_hook();
static DX11_Hook* Inst();
virtual const char* get_lib_name() const;
2019-09-01 18:53:16 +00:00
void loadFunctions(IDXGISwapChain *pSwapChain);
};
#endif//NO_OVERLAY
2019-08-14 12:55:31 +00:00
2019-09-01 18:53:16 +00:00
#endif//__INCLUDED_DX11_HOOK_H__