2019-07-25 21:21:03 +00:00
|
|
|
#ifndef __INCLUDED_DX9_HOOK_H__
|
|
|
|
#define __INCLUDED_DX9_HOOK_H__
|
|
|
|
|
2019-09-01 18:53:16 +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
|
2019-08-27 13:38:07 +00:00
|
|
|
bool hooked;
|
2019-07-25 21:21:03 +00:00
|
|
|
bool initialized;
|
|
|
|
bool uses_present;
|
|
|
|
|
|
|
|
// Functions
|
|
|
|
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);
|
|
|
|
|
|
|
|
public:
|
2019-08-27 13:38:07 +00:00
|
|
|
virtual ~DX9_Hook();
|
|
|
|
|
2019-08-16 17:10:12 +00:00
|
|
|
bool start_hook();
|
|
|
|
static DX9_Hook* Inst();
|
2019-08-26 14:38:01 +00:00
|
|
|
virtual const char* get_lib_name() const;
|
2019-09-01 18:53:16 +00:00
|
|
|
|
2019-08-26 14:38:01 +00:00
|
|
|
void loadFunctions(IDirect3DDevice9 *pDevice, bool ex);
|
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-09-01 18:53:16 +00:00
|
|
|
#endif//__INCLUDED_DX9_HOOK_H__
|