2019-07-25 23:21:03 +02:00
|
|
|
#include "DX9_Hook.h"
|
2019-08-18 16:22:07 +02:00
|
|
|
#include "Windows_Hook.h"
|
2019-08-27 15:38:07 +02:00
|
|
|
#include "Renderer_Detector.h"
|
2019-08-18 16:22:07 +02:00
|
|
|
#include "../dll/dll.h"
|
2019-08-14 14:55:31 +02:00
|
|
|
|
2019-08-14 15:09:57 +02:00
|
|
|
#ifndef NO_OVERLAY
|
2019-08-14 14:55:31 +02:00
|
|
|
|
2019-07-25 23:21:03 +02:00
|
|
|
#include <imgui.h>
|
|
|
|
#include <impls/imgui_impl_dx9.h>
|
|
|
|
|
2019-07-31 22:20:27 +02:00
|
|
|
#include "steam_overlay.h"
|
|
|
|
|
2019-08-16 19:21:30 +02:00
|
|
|
DX9_Hook* DX9_Hook::_inst = nullptr;
|
2019-07-25 23:21:03 +02:00
|
|
|
|
2019-08-16 19:10:12 +02:00
|
|
|
bool DX9_Hook::start_hook()
|
2019-07-25 23:21:03 +02:00
|
|
|
{
|
2019-08-27 15:38:07 +02:00
|
|
|
if (!hooked)
|
2019-07-25 23:21:03 +02:00
|
|
|
{
|
2019-08-27 15:38:07 +02:00
|
|
|
if (!Windows_Hook::Inst()->start_hook())
|
2019-08-18 17:12:57 +02:00
|
|
|
return false;
|
2019-07-25 23:21:03 +02:00
|
|
|
|
2019-08-26 16:38:01 +02:00
|
|
|
PRINT_DEBUG("Hooked DirectX 9\n");
|
2019-08-27 15:38:07 +02:00
|
|
|
hooked = true;
|
2019-08-26 16:38:01 +02:00
|
|
|
|
2019-08-27 15:38:07 +02:00
|
|
|
Renderer_Detector::Inst().renderer_found(this);
|
|
|
|
|
2019-08-26 16:38:01 +02:00
|
|
|
BeginHook();
|
|
|
|
HookFuncs(
|
|
|
|
std::make_pair<void**, void*>(&(PVOID&)Reset, &DX9_Hook::MyReset),
|
|
|
|
std::make_pair<void**, void*>(&(PVOID&)Present, &DX9_Hook::MyPresent)
|
|
|
|
);
|
|
|
|
if (PresentEx != nullptr)
|
2019-08-02 09:07:53 +02:00
|
|
|
{
|
|
|
|
HookFuncs(
|
|
|
|
std::make_pair<void**, void*>(&(PVOID&)PresentEx, &DX9_Hook::MyPresentEx)
|
|
|
|
//std::make_pair<void**, void*>(&(PVOID&)EndScene, &DX9_Hook::MyEndScene)
|
|
|
|
);
|
|
|
|
}
|
2019-08-26 16:38:01 +02:00
|
|
|
EndHook();
|
2019-08-02 09:07:53 +02:00
|
|
|
|
2019-08-26 16:38:01 +02:00
|
|
|
get_steam_client()->steam_overlay->HookReady();
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
2019-08-26 16:38:01 +02:00
|
|
|
return true;
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void DX9_Hook::resetRenderState()
|
|
|
|
{
|
|
|
|
if (initialized)
|
|
|
|
{
|
|
|
|
initialized = false;
|
|
|
|
ImGui_ImplDX9_Shutdown();
|
2019-08-27 15:38:07 +02:00
|
|
|
Windows_Hook::Inst()->resetRenderState();
|
2019-07-31 22:20:27 +02:00
|
|
|
ImGui::DestroyContext();
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-14 14:55:31 +02:00
|
|
|
// Try to make this function and overlay's proc as short as possible or it might affect game's fps.
|
2019-07-25 23:21:03 +02:00
|
|
|
void DX9_Hook::prepareForOverlay(IDirect3DDevice9 *pDevice)
|
|
|
|
{
|
|
|
|
IDirect3DSwapChain9* pSwapChain;
|
|
|
|
pDevice->GetSwapChain(0, &pSwapChain);
|
|
|
|
D3DPRESENT_PARAMETERS PresentParameters;
|
|
|
|
pSwapChain->GetPresentParameters(&PresentParameters);
|
|
|
|
pSwapChain->Release();
|
|
|
|
|
2019-07-31 22:20:27 +02:00
|
|
|
D3DDEVICE_CREATION_PARAMETERS param;
|
|
|
|
pDevice->GetCreationParameters(¶m);
|
|
|
|
|
2019-08-14 14:55:31 +02:00
|
|
|
// Workaround to detect if we changed window.
|
2019-08-27 15:38:07 +02:00
|
|
|
if (param.hFocusWindow != Windows_Hook::Inst()->GetGameHwnd())
|
2019-07-31 22:20:27 +02:00
|
|
|
resetRenderState();
|
|
|
|
|
2019-07-25 23:21:03 +02:00
|
|
|
if (!initialized)
|
|
|
|
{
|
|
|
|
ImGui::CreateContext();
|
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
|
|
io.IniFilename = NULL;
|
|
|
|
|
|
|
|
ImGui_ImplDX9_Init(pDevice);
|
|
|
|
initialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
ImGui_ImplDX9_NewFrame();
|
2019-08-27 15:38:07 +02:00
|
|
|
Windows_Hook::Inst()->prepareForOverlay(param.hFocusWindow);
|
2019-07-25 23:21:03 +02:00
|
|
|
|
|
|
|
ImGui::NewFrame();
|
|
|
|
|
2019-08-18 16:22:07 +02:00
|
|
|
get_steam_client()->steam_overlay->OverlayProc(PresentParameters.BackBufferWidth, PresentParameters.BackBufferHeight);
|
2019-07-25 23:21:03 +02:00
|
|
|
|
|
|
|
ImGui::EndFrame();
|
|
|
|
|
|
|
|
ImGui::Render();
|
|
|
|
|
|
|
|
ImGui_ImplDX9_RenderDrawData(ImGui::GetDrawData());
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE DX9_Hook::MyReset(IDirect3DDevice9* _this, D3DPRESENT_PARAMETERS* pPresentationParameters)
|
|
|
|
{
|
2019-08-16 19:21:30 +02:00
|
|
|
DX9_Hook::Inst()->resetRenderState();
|
|
|
|
return (_this->*DX9_Hook::Inst()->Reset)(pPresentationParameters);
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE DX9_Hook::MyEndScene(IDirect3DDevice9* _this)
|
|
|
|
{
|
2019-08-16 19:21:30 +02:00
|
|
|
if( !DX9_Hook::Inst()->uses_present )
|
|
|
|
DX9_Hook::Inst()->prepareForOverlay(_this);
|
|
|
|
return (_this->*DX9_Hook::Inst()->EndScene)();
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE DX9_Hook::MyPresent(IDirect3DDevice9* _this, CONST RECT* pSourceRect, CONST RECT* pDestRect, HWND hDestWindowOverride, CONST RGNDATA* pDirtyRegion)
|
|
|
|
{
|
2019-08-16 19:21:30 +02:00
|
|
|
DX9_Hook::Inst()->uses_present = true;
|
|
|
|
DX9_Hook::Inst()->prepareForOverlay(_this);
|
|
|
|
return (_this->*DX9_Hook::Inst()->Present)(pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE DX9_Hook::MyPresentEx(IDirect3DDevice9Ex* _this, CONST RECT* pSourceRect, CONST RECT* pDestRect, HWND hDestWindowOverride, CONST RGNDATA* pDirtyRegion, DWORD dwFlags)
|
|
|
|
{
|
2019-08-16 19:21:30 +02:00
|
|
|
DX9_Hook::Inst()->uses_present = true;
|
|
|
|
DX9_Hook::Inst()->prepareForOverlay(_this);
|
|
|
|
return (_this->*DX9_Hook::Inst()->PresentEx)(pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion, dwFlags);
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DX9_Hook::DX9_Hook():
|
|
|
|
initialized(false),
|
2019-08-27 15:38:07 +02:00
|
|
|
hooked(false),
|
2019-07-31 22:20:27 +02:00
|
|
|
uses_present(false),
|
|
|
|
EndScene(nullptr),
|
|
|
|
Present(nullptr),
|
|
|
|
PresentEx(nullptr),
|
|
|
|
Reset(nullptr)
|
2019-07-25 23:21:03 +02:00
|
|
|
{
|
2019-08-18 16:19:28 +02:00
|
|
|
_library = LoadLibrary(DLL_NAME);
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
DX9_Hook::~DX9_Hook()
|
|
|
|
{
|
|
|
|
PRINT_DEBUG("DX9 Hook removed\n");
|
|
|
|
|
2019-08-18 16:19:28 +02:00
|
|
|
if (initialized)
|
2019-08-01 17:05:41 +02:00
|
|
|
{
|
|
|
|
ImGui_ImplDX9_InvalidateDeviceObjects();
|
|
|
|
ImGui::DestroyContext();
|
|
|
|
}
|
2019-07-25 23:21:03 +02:00
|
|
|
|
2019-08-18 16:19:28 +02:00
|
|
|
FreeLibrary(reinterpret_cast<HMODULE>(_library));
|
|
|
|
|
2019-08-16 19:21:30 +02:00
|
|
|
_inst = nullptr;
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
2019-08-16 19:21:30 +02:00
|
|
|
DX9_Hook* DX9_Hook::Inst()
|
2019-07-25 23:21:03 +02:00
|
|
|
{
|
2019-08-16 19:21:30 +02:00
|
|
|
if( _inst == nullptr )
|
|
|
|
_inst = new DX9_Hook;
|
|
|
|
|
|
|
|
return _inst;
|
2019-07-25 23:21:03 +02:00
|
|
|
}
|
|
|
|
|
2019-08-26 16:38:01 +02:00
|
|
|
const char* DX9_Hook::get_lib_name() const
|
|
|
|
{
|
|
|
|
return DLL_NAME;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DX9_Hook::loadFunctions(IDirect3DDevice9* pDevice, bool ex)
|
2019-07-25 23:21:03 +02:00
|
|
|
{
|
2019-08-26 16:38:01 +02:00
|
|
|
void** vTable = *reinterpret_cast<void***>(pDevice);
|
2019-07-25 23:21:03 +02:00
|
|
|
|
|
|
|
#define LOAD_FUNC(X) (void*&)X = vTable[(int)IDirect3DDevice9VTable::X]
|
|
|
|
LOAD_FUNC(Reset);
|
|
|
|
LOAD_FUNC(EndScene);
|
|
|
|
LOAD_FUNC(Present);
|
2019-08-26 16:38:01 +02:00
|
|
|
if (ex)
|
|
|
|
LOAD_FUNC(PresentEx);
|
2019-07-25 23:21:03 +02:00
|
|
|
#undef LOAD_FUNC
|
2019-08-14 14:55:31 +02:00
|
|
|
}
|
|
|
|
|
2019-08-14 15:09:57 +02:00
|
|
|
#endif//NO_OVERLAY
|