2019-07-25 21:21:03 +00:00
|
|
|
#include "DX11_Hook.h"
|
2019-08-18 14:22:07 +00:00
|
|
|
#include "Windows_Hook.h"
|
2019-09-01 18:53:16 +00:00
|
|
|
#include "../Renderer_Detector.h"
|
|
|
|
#include "../../dll/dll.h"
|
2019-08-18 14:22:07 +00:00
|
|
|
|
|
|
|
#ifndef NO_OVERLAY
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
#include <imgui.h>
|
2019-09-01 18:53:16 +00:00
|
|
|
#include <impls/windows/imgui_impl_dx11.h>
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2019-08-16 17:21:30 +00:00
|
|
|
DX11_Hook* DX11_Hook::_inst = nullptr;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
HRESULT GetDeviceAndCtxFromSwapchain(IDXGISwapChain* pSwapChain, ID3D11Device** ppDevice, ID3D11DeviceContext** ppContext)
|
|
|
|
{
|
2019-08-19 17:51:35 +00:00
|
|
|
HRESULT ret = pSwapChain->GetDevice(IID_PPV_ARGS(ppDevice));
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
if (SUCCEEDED(ret))
|
|
|
|
(*ppDevice)->GetImmediateContext(ppContext);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-08-16 17:10:12 +00:00
|
|
|
bool DX11_Hook::start_hook()
|
2019-07-25 21:21:03 +00:00
|
|
|
{
|
2019-08-25 19:22:25 +00:00
|
|
|
bool res = true;
|
2019-08-27 13:38:07 +00:00
|
|
|
if (!hooked)
|
2019-07-25 21:21:03 +00:00
|
|
|
{
|
2019-08-27 13:38:07 +00:00
|
|
|
if (!Windows_Hook::Inst()->start_hook())
|
2019-08-18 15:12:57 +00:00
|
|
|
return false;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2019-08-26 14:38:01 +00:00
|
|
|
PRINT_DEBUG("Hooked DirectX 11\n");
|
2019-08-27 13:38:07 +00:00
|
|
|
hooked = true;
|
2019-08-26 14:38:01 +00:00
|
|
|
|
2019-08-27 13:38:07 +00:00
|
|
|
Renderer_Detector::Inst().renderer_found(this);
|
2019-08-26 14:38:01 +00:00
|
|
|
|
|
|
|
BeginHook();
|
|
|
|
HookFuncs(
|
|
|
|
std::make_pair<void**, void*>(&(PVOID&)DX11_Hook::Present, &DX11_Hook::MyPresent),
|
|
|
|
std::make_pair<void**, void*>(&(PVOID&)DX11_Hook::ResizeTarget, &DX11_Hook::MyResizeTarget),
|
|
|
|
std::make_pair<void**, void*>(&(PVOID&)DX11_Hook::ResizeBuffers, &DX11_Hook::MyResizeBuffers)
|
|
|
|
);
|
|
|
|
EndHook();
|
2019-08-20 21:27:17 +00:00
|
|
|
|
2019-08-26 14:38:01 +00:00
|
|
|
get_steam_client()->steam_overlay->HookReady();
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
2019-08-25 19:22:25 +00:00
|
|
|
return res;
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DX11_Hook::resetRenderState()
|
|
|
|
{
|
|
|
|
if (initialized)
|
|
|
|
{
|
|
|
|
mainRenderTargetView->Release();
|
|
|
|
pContext->Release();
|
|
|
|
|
|
|
|
ImGui_ImplDX11_Shutdown();
|
2019-08-27 13:38:07 +00:00
|
|
|
Windows_Hook::Inst()->resetRenderState();
|
2019-07-31 20:20:27 +00:00
|
|
|
ImGui::DestroyContext();
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
initialized = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-14 12:55:31 +00:00
|
|
|
// Try to make this function and overlay's proc as short as possible or it might affect game's fps.
|
2019-07-25 21:21:03 +00:00
|
|
|
void DX11_Hook::prepareForOverlay(IDXGISwapChain* pSwapChain)
|
|
|
|
{
|
|
|
|
DXGI_SWAP_CHAIN_DESC desc;
|
|
|
|
pSwapChain->GetDesc(&desc);
|
|
|
|
|
|
|
|
if (!initialized)
|
|
|
|
{
|
|
|
|
ID3D11Device* pDevice = nullptr;
|
|
|
|
if (FAILED(GetDeviceAndCtxFromSwapchain(pSwapChain, &pDevice, &pContext)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ImGui::CreateContext();
|
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
|
|
io.IniFilename = NULL;
|
|
|
|
|
|
|
|
ID3D11Texture2D* pBackBuffer;
|
|
|
|
|
2019-08-19 17:51:35 +00:00
|
|
|
pSwapChain->GetBuffer(0, IID_PPV_ARGS(&pBackBuffer));
|
2019-07-25 21:21:03 +00:00
|
|
|
pDevice->CreateRenderTargetView(pBackBuffer, NULL, &mainRenderTargetView);
|
|
|
|
pBackBuffer->Release();
|
|
|
|
|
|
|
|
ImGui_ImplDX11_Init(pDevice, pContext);
|
2019-08-16 16:30:55 +00:00
|
|
|
|
2019-08-19 17:51:35 +00:00
|
|
|
pDevice->Release();
|
|
|
|
|
2019-09-05 07:00:02 +00:00
|
|
|
get_steam_client()->steam_overlay->CreateFonts();
|
|
|
|
|
2019-07-25 21:21:03 +00:00
|
|
|
initialized = true;
|
|
|
|
}
|
|
|
|
|
2020-01-10 07:10:33 +00:00
|
|
|
if (ImGui_ImplDX11_NewFrame())
|
|
|
|
{
|
|
|
|
Windows_Hook::Inst()->prepareForOverlay(desc.OutputWindow);
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2020-01-10 07:10:33 +00:00
|
|
|
ImGui::NewFrame();
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2020-01-10 07:10:33 +00:00
|
|
|
get_steam_client()->steam_overlay->OverlayProc();
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2020-01-10 07:10:33 +00:00
|
|
|
ImGui::Render();
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2020-01-10 07:10:33 +00:00
|
|
|
pContext->OMSetRenderTargets(1, &mainRenderTargetView, NULL);
|
|
|
|
ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData());
|
|
|
|
}
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE DX11_Hook::MyPresent(IDXGISwapChain *_this, UINT SyncInterval, UINT Flags)
|
|
|
|
{
|
2019-08-16 17:21:30 +00:00
|
|
|
DX11_Hook::Inst()->prepareForOverlay(_this);
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2019-08-16 17:21:30 +00:00
|
|
|
return (_this->*DX11_Hook::Inst()->Present)(SyncInterval, Flags);
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE DX11_Hook::MyResizeTarget(IDXGISwapChain* _this, const DXGI_MODE_DESC* pNewTargetParameters)
|
|
|
|
{
|
2019-08-16 17:21:30 +00:00
|
|
|
DX11_Hook::Inst()->resetRenderState();
|
|
|
|
return (_this->*DX11_Hook::Inst()->ResizeTarget)(pNewTargetParameters);
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT STDMETHODCALLTYPE DX11_Hook::MyResizeBuffers(IDXGISwapChain* _this, UINT BufferCount, UINT Width, UINT Height, DXGI_FORMAT NewFormat, UINT SwapChainFlags)
|
|
|
|
{
|
2019-08-16 17:21:30 +00:00
|
|
|
DX11_Hook::Inst()->resetRenderState();
|
|
|
|
return (_this->*DX11_Hook::Inst()->ResizeBuffers)(BufferCount, Width, Height, NewFormat, SwapChainFlags);
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DX11_Hook::DX11_Hook():
|
|
|
|
initialized(false),
|
2019-08-27 13:38:07 +00:00
|
|
|
hooked(false),
|
2019-07-25 21:21:03 +00:00
|
|
|
pContext(nullptr),
|
2019-08-26 17:36:07 +00:00
|
|
|
mainRenderTargetView(nullptr),
|
|
|
|
Present(nullptr),
|
|
|
|
ResizeBuffers(nullptr),
|
|
|
|
ResizeTarget(nullptr)
|
2019-07-25 21:21:03 +00:00
|
|
|
{
|
2019-08-18 14:19:28 +00:00
|
|
|
_library = LoadLibrary(DLL_NAME);
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DX11_Hook::~DX11_Hook()
|
|
|
|
{
|
|
|
|
PRINT_DEBUG("DX11 Hook removed\n");
|
|
|
|
|
2019-08-21 19:52:08 +00:00
|
|
|
if (initialized)
|
|
|
|
{
|
|
|
|
mainRenderTargetView->Release();
|
|
|
|
pContext->Release();
|
|
|
|
|
|
|
|
ImGui_ImplDX11_InvalidateDeviceObjects();
|
|
|
|
ImGui::DestroyContext();
|
|
|
|
|
|
|
|
initialized = false;
|
|
|
|
}
|
2019-08-18 14:19:28 +00:00
|
|
|
|
|
|
|
FreeLibrary(reinterpret_cast<HMODULE>(_library));
|
2019-07-25 21:21:03 +00:00
|
|
|
|
2019-08-16 17:21:30 +00:00
|
|
|
_inst = nullptr;
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
2019-08-16 17:21:30 +00:00
|
|
|
DX11_Hook* DX11_Hook::Inst()
|
2019-07-25 21:21:03 +00:00
|
|
|
{
|
2019-08-16 17:21:30 +00:00
|
|
|
if (_inst == nullptr)
|
|
|
|
_inst = new DX11_Hook;
|
|
|
|
|
|
|
|
return _inst;
|
2019-07-25 21:21:03 +00:00
|
|
|
}
|
|
|
|
|
2019-08-26 14:38:01 +00:00
|
|
|
const char* DX11_Hook::get_lib_name() const
|
|
|
|
{
|
|
|
|
return DLL_NAME;
|
|
|
|
}
|
|
|
|
|
2019-08-26 17:36:07 +00:00
|
|
|
void DX11_Hook::loadFunctions(IDXGISwapChain *pSwapChain)
|
2019-07-25 21:21:03 +00:00
|
|
|
{
|
2019-08-26 17:36:07 +00:00
|
|
|
void** vTable;
|
2019-07-25 21:21:03 +00:00
|
|
|
|
|
|
|
vTable = *reinterpret_cast<void***>(pSwapChain);
|
|
|
|
#define LOAD_FUNC(X) (void*&)X = vTable[(int)IDXGISwapChainVTable::X]
|
|
|
|
LOAD_FUNC(Present);
|
|
|
|
LOAD_FUNC(ResizeBuffers);
|
|
|
|
LOAD_FUNC(ResizeTarget);
|
|
|
|
#undef LOAD_FUNC
|
2019-08-14 12:55:31 +00:00
|
|
|
}
|
|
|
|
|
2019-08-14 13:09:57 +00:00
|
|
|
#endif//NO_OVERLAY
|