2019-07-25 21:21:03 +00:00
|
|
|
#ifndef __INCLUDED_DX9_HOOK_H__
|
|
|
|
#define __INCLUDED_DX9_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 <d3d9.h>
|
|
|
|
#include "DirectX_VTables.h"
|
|
|
|
|
|
|
|
class DX9_Hook : public Base_Hook
|
|
|
|
{
|
|
|
|
public:
|
2019-08-01 13:58:24 +00:00
|
|
|
static constexpr const char *DLL_NAME = "d3d9.dll";
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
private:
|
2019-08-16 17:21:30 +00:00
|
|
|
static DX9_Hook* _inst;
|
|
|
|
|
2019-07-25 21:21:03 +00:00
|
|
|
// Variables
|
|
|
|
bool initialized;
|
|
|
|
bool uses_present;
|
|
|
|
|
|
|
|
// Functions
|
|
|
|
DX9_Hook();
|
|
|
|
virtual ~DX9_Hook();
|
|
|
|
|
|
|
|
void resetRenderState();
|
|
|
|
void prepareForOverlay(IDirect3DDevice9* pDevice);
|
|
|
|
|
|
|
|
// Hook to render functions
|
|
|
|
decltype(&IDirect3DDevice9::Reset) Reset;
|
|
|
|
decltype(&IDirect3DDevice9::EndScene) EndScene;
|
|
|
|
decltype(&IDirect3DDevice9::Present) Present;
|
|
|
|
decltype(&IDirect3DDevice9Ex::PresentEx) PresentEx;
|
|
|
|
|
|
|
|
static HRESULT STDMETHODCALLTYPE MyReset(IDirect3DDevice9* _this, D3DPRESENT_PARAMETERS* pPresentationParameters);
|
|
|
|
static HRESULT STDMETHODCALLTYPE MyEndScene(IDirect3DDevice9 *_this);
|
|
|
|
static HRESULT STDMETHODCALLTYPE MyPresent(IDirect3DDevice9* _this, CONST RECT* pSourceRect, CONST RECT* pDestRect, HWND hDestWindowOverride, CONST RGNDATA* pDirtyRegion);
|
|
|
|
static HRESULT STDMETHODCALLTYPE MyPresentEx(IDirect3DDevice9Ex* _this, CONST RECT* pSourceRect, CONST RECT* pDestRect, HWND hDestWindowOverride, CONST RGNDATA* pDirtyRegion, DWORD dwFlags);
|
|
|
|
|
|
|
|
// Hook functions so we know we use DX9
|
2019-08-16 08:36:44 +00:00
|
|
|
//static decltype(Direct3DCreate9) MyDirect3DCreate9;
|
|
|
|
//static decltype(Direct3DCreate9Ex) MyDirect3DCreate9Ex;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2019-08-16 08:36:44 +00:00
|
|
|
//decltype(Direct3DCreate9)* Direct3DCreate9;
|
|
|
|
//decltype(Direct3DCreate9Ex)* Direct3DCreate9Ex;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
public:
|
2019-08-16 17:10:12 +00:00
|
|
|
bool start_hook();
|
|
|
|
static DX9_Hook* Inst();
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2019-07-31 20:20:27 +00:00
|
|
|
void loadFunctions(IDirect3DDevice9Ex *pDeviceEx);
|
2019-07-25 21:21:03 +00:00
|
|
|
};
|
|
|
|
|
2019-08-14 13:09:57 +00:00
|
|
|
#endif//NO_OVERLAY
|
2019-08-14 12:55:31 +00:00
|
|
|
|
2019-07-25 21:21:03 +00:00
|
|
|
#endif//__INCLUDED_DX9_HOOK_H__
|