2020-12-02 16:19:16 -05:00
|
|
|
#include "Hook.h"
|
2021-02-09 18:17:03 -05:00
|
|
|
#include "kiero/kiero.h"
|
|
|
|
#include "kiero/minhook/MinHook.h"
|
2020-12-02 16:19:16 -05:00
|
|
|
|
2021-02-09 12:25:21 -05:00
|
|
|
LRESULT Hook::WndProc(const HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
2020-12-02 16:19:16 -05:00
|
|
|
{
|
|
|
|
ImGui_ImplWin32_WndProcHandler(hWnd, uMsg, wParam, lParam);
|
|
|
|
|
2021-01-07 16:07:45 -05:00
|
|
|
if (Hook::show_mouse)
|
|
|
|
{
|
|
|
|
patch::Nop(0x4EB9F4, 5); // disable radio scroll
|
2021-02-13 04:08:37 -05:00
|
|
|
CPad::ClearMouseHistory();
|
2021-02-09 12:25:21 -05:00
|
|
|
|
|
|
|
if (uMsg == WM_MOUSEWHEEL)
|
2021-02-13 04:08:37 -05:00
|
|
|
return 1;
|
2021-01-07 16:07:45 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
patch::SetRaw(0x4EB9F4, (void*)"\xE8\x67\xFC\xFF\xFF", 5); // enable radio scroll
|
|
|
|
|
2020-12-17 02:12:23 -05:00
|
|
|
if (ImGui::GetIO().WantTextInput)
|
|
|
|
{
|
|
|
|
Call<0x53F1E0>(); // CPad::ClearKeyboardHistory
|
2021-02-24 16:54:45 -05:00
|
|
|
return 1;
|
2020-12-17 02:12:23 -05:00
|
|
|
}
|
2021-02-24 16:54:45 -05:00
|
|
|
|
2021-02-09 12:25:21 -05:00
|
|
|
return CallWindowProc(oWndProc, hWnd, uMsg, wParam, lParam);
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
|
|
|
|
2021-02-24 16:54:45 -05:00
|
|
|
HRESULT Hook::Reset(IDirect3DDevice9* pDevice, D3DPRESENT_PARAMETERS* pPresentationParameters)
|
2020-12-02 16:19:16 -05:00
|
|
|
{
|
|
|
|
ImGui_ImplDX9_InvalidateDeviceObjects();
|
|
|
|
|
2020-12-05 16:34:27 -05:00
|
|
|
return oReset9(pDevice, pPresentationParameters);
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
|
|
|
|
2021-02-24 16:54:45 -05:00
|
|
|
void Hook::Present(void* ptr)
|
2020-12-02 16:19:16 -05:00
|
|
|
{
|
2021-02-25 17:45:41 -05:00
|
|
|
if (!ImGui::GetCurrentContext())
|
|
|
|
return;
|
|
|
|
|
2020-12-02 16:19:16 -05:00
|
|
|
ImGuiIO& io = ImGui::GetIO();
|
|
|
|
|
|
|
|
if (Globals::init_done)
|
2021-02-25 17:45:41 -05:00
|
|
|
{
|
2021-01-22 16:47:22 -05:00
|
|
|
Hook::ShowMouse(show_mouse);
|
2020-12-09 12:39:01 -05:00
|
|
|
|
2021-02-19 02:41:50 -05:00
|
|
|
// handle window scaling here
|
2021-02-24 16:54:45 -05:00
|
|
|
ImVec2 size(screen::GetScreenWidth(), screen::GetScreenHeight());
|
2021-02-19 02:41:50 -05:00
|
|
|
if (Globals::screen_size.x != size.x && Globals::screen_size.y != size.y)
|
2020-12-02 16:19:16 -05:00
|
|
|
{
|
2021-02-19 02:41:50 -05:00
|
|
|
int font_size = int(size.y / 54.85f); // manually tested
|
2020-12-02 16:19:16 -05:00
|
|
|
|
|
|
|
io.FontDefault = io.Fonts->AddFontFromFileTTF("C:/Windows/Fonts/trebucbd.ttf", font_size);
|
|
|
|
io.Fonts->Build();
|
|
|
|
|
2021-01-11 13:07:10 -05:00
|
|
|
if (Globals::renderer == Render_DirectX9)
|
|
|
|
ImGui_ImplDX9_InvalidateDeviceObjects();
|
|
|
|
else
|
|
|
|
ImGui_ImplDX11_InvalidateDeviceObjects();
|
|
|
|
|
2021-02-19 02:41:50 -05:00
|
|
|
if (Globals::screen_size.x != -1 && Globals::screen_size.y != -1)
|
|
|
|
{
|
2021-02-24 16:54:45 -05:00
|
|
|
Globals::menu_size.x += (size.x - Globals::screen_size.x) / 4.0f;
|
|
|
|
Globals::menu_size.y += (size.y - Globals::screen_size.y) / 1.2f;
|
2021-02-19 02:41:50 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ImGuiStyle* style = &ImGui::GetStyle();
|
|
|
|
float scale_x = size.x / 1366.0f;
|
|
|
|
float scale_y = size.y / 768.0f;
|
|
|
|
|
|
|
|
style->FramePadding = ImVec2(5 * scale_x, 3 * scale_y);
|
|
|
|
style->ItemSpacing = ImVec2(8 * scale_x, 4 * scale_y);
|
|
|
|
style->ScrollbarSize = 12 * scale_x;
|
|
|
|
style->IndentSpacing = 20 * scale_x;
|
2021-02-24 16:54:45 -05:00
|
|
|
style->ItemInnerSpacing = ImVec2(4 * scale_x, 4 * scale_y);
|
2021-02-19 02:41:50 -05:00
|
|
|
|
|
|
|
Globals::screen_size = size;
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ImGui_ImplWin32_NewFrame();
|
2021-01-11 13:07:10 -05:00
|
|
|
if (Globals::renderer == Render_DirectX9)
|
|
|
|
ImGui_ImplDX9_NewFrame();
|
|
|
|
else
|
|
|
|
ImGui_ImplDX11_NewFrame();
|
|
|
|
|
2020-12-02 16:19:16 -05:00
|
|
|
ImGui::NewFrame();
|
|
|
|
|
2021-02-19 02:41:50 -05:00
|
|
|
if (window_callback != NULL)
|
|
|
|
window_callback();
|
2020-12-02 16:19:16 -05:00
|
|
|
|
|
|
|
ImGui::EndFrame();
|
|
|
|
ImGui::Render();
|
2021-01-11 13:07:10 -05:00
|
|
|
|
|
|
|
if (Globals::renderer == Render_DirectX9)
|
|
|
|
ImGui_ImplDX9_RenderDrawData(ImGui::GetDrawData());
|
|
|
|
else
|
|
|
|
ImGui_ImplDX11_RenderDrawData(ImGui::GetDrawData());
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Globals::init_done = true;
|
|
|
|
ImGui::CreateContext();
|
|
|
|
|
|
|
|
ImGuiStyle& style = ImGui::GetStyle();
|
|
|
|
|
|
|
|
ImGui_ImplWin32_Init(RsGlobal.ps->window);
|
2021-02-24 16:54:45 -05:00
|
|
|
|
2021-01-22 16:47:22 -05:00
|
|
|
// shift trigger fix
|
2021-02-24 16:54:45 -05:00
|
|
|
patch::Nop(0x00531155, 5);
|
2020-12-02 16:19:16 -05:00
|
|
|
|
2021-01-11 13:07:10 -05:00
|
|
|
if (Globals::renderer == Render_DirectX9)
|
2021-01-07 16:07:45 -05:00
|
|
|
{
|
2021-01-11 13:07:10 -05:00
|
|
|
Globals::device = ptr;
|
|
|
|
ImGui_ImplDX9_Init(reinterpret_cast<IDirect3DDevice9*>(Globals::device));
|
2021-01-07 16:07:45 -05:00
|
|
|
}
|
2021-01-11 13:07:10 -05:00
|
|
|
else
|
2020-12-02 16:19:16 -05:00
|
|
|
{
|
2021-01-11 13:07:10 -05:00
|
|
|
// for dx11 device ptr is swapchain
|
|
|
|
reinterpret_cast<IDXGISwapChain*>(ptr)->GetDevice(__uuidof(ID3D11Device), (void**)&Globals::device);
|
|
|
|
ID3D11DeviceContext* context;
|
|
|
|
reinterpret_cast<ID3D11Device*>(Globals::device)->GetImmediateContext(&context);
|
2020-12-02 16:19:16 -05:00
|
|
|
|
2021-01-11 13:07:10 -05:00
|
|
|
ImGui_ImplDX11_Init(reinterpret_cast<ID3D11Device*>(Globals::device), context);
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
ImGui_ImplWin32_EnableDpiAwareness();
|
|
|
|
|
|
|
|
io.IniFilename = NULL;
|
|
|
|
io.LogFilename = NULL;
|
|
|
|
|
|
|
|
style.WindowTitleAlign = ImVec2(0.5, 0.5);
|
2021-02-09 12:25:21 -05:00
|
|
|
oWndProc = (WNDPROC)SetWindowLongPtr(RsGlobal.ps->window, GWL_WNDPROC, (LRESULT)WndProc);
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
2021-01-13 13:25:28 -05:00
|
|
|
}
|
2020-12-02 16:19:16 -05:00
|
|
|
|
2021-02-24 16:54:45 -05:00
|
|
|
HRESULT Hook::PresentDx9Handler(IDirect3DDevice9* pDevice, RECT* pSourceRect, RECT* pDestRect, HWND hDestWindowOverride, RGNDATA* pDirtyRegion)
|
2021-01-13 13:25:28 -05:00
|
|
|
{
|
|
|
|
Present(pDevice);
|
2021-02-25 17:45:41 -05:00
|
|
|
return oPresent9(pDevice, pSourceRect, pDestRect, hDestWindowOverride, pDirtyRegion);
|
2021-01-13 13:25:28 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT Hook::PresentDx11Handler(IDXGISwapChain* pSwapChain, UINT SyncInterval, UINT Flags)
|
|
|
|
{
|
|
|
|
Present(pSwapChain);
|
|
|
|
return oPresent11(pSwapChain, SyncInterval, Flags);
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
|
|
|
|
2021-01-03 06:48:07 -05:00
|
|
|
// Thanks imring
|
2020-12-09 12:39:01 -05:00
|
|
|
void Hook::ShowMouse(bool state)
|
|
|
|
{
|
|
|
|
if (state)
|
|
|
|
{
|
2021-01-29 11:52:39 -05:00
|
|
|
CPad::NewMouseControllerState.X = 0;
|
|
|
|
CPad::NewMouseControllerState.Y = 0;
|
2020-12-21 15:24:07 -05:00
|
|
|
patch::SetUChar(0x6194A0, 0xC3);
|
2021-01-29 17:09:48 -05:00
|
|
|
|
2021-02-25 17:45:41 -05:00
|
|
|
// Don't nop this, WindowedMode uses it
|
2021-01-29 17:09:48 -05:00
|
|
|
// patch::Nop(0x53F417, 5); // don't call CPad__getMouseState
|
|
|
|
patch::SetUChar(0x746ED0, 0xC3);
|
|
|
|
|
2021-01-05 01:29:26 -05:00
|
|
|
patch::SetRaw(0x53F41F, (void*)"\x33\xC0\x0F\x84", 4); // disable camera mouse movement
|
2020-12-09 12:39:01 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-01-22 16:47:22 -05:00
|
|
|
if (mouse_visibility != show_mouse)
|
|
|
|
{
|
2021-02-24 16:54:45 -05:00
|
|
|
patch::SetUChar(0x6194A0, 0xE9); // jmp setup
|
2021-01-29 17:09:48 -05:00
|
|
|
patch::SetUChar(0x746ED0, 0xA1);
|
2021-01-22 16:47:22 -05:00
|
|
|
patch::SetRaw(0x53F41F, (void*)"\x85\xC0\x0F\x8C", 4); // xor eax, eax -> test eax, eax , enable camera mouse movement
|
|
|
|
// jz loc_53F526 -> jl loc_53F526
|
|
|
|
}
|
2020-12-09 12:39:01 -05:00
|
|
|
}
|
|
|
|
|
2021-01-22 17:30:43 -05:00
|
|
|
if (mouse_visibility != show_mouse)
|
|
|
|
{
|
2021-02-13 04:08:37 -05:00
|
|
|
CPad::ClearMouseHistory();
|
|
|
|
CPad::UpdatePads();
|
2020-12-10 14:36:18 -05:00
|
|
|
|
2021-02-24 16:54:45 -05:00
|
|
|
// TODO: Replace this with windows cursor
|
2021-01-22 17:30:43 -05:00
|
|
|
ImGui::GetIO().MouseDrawCursor = state;
|
2021-02-24 16:54:45 -05:00
|
|
|
|
2021-01-29 11:52:39 -05:00
|
|
|
CPad::NewMouseControllerState.X = 0;
|
|
|
|
CPad::NewMouseControllerState.Y = 0;
|
2021-01-22 17:30:43 -05:00
|
|
|
mouse_visibility = show_mouse;
|
|
|
|
}
|
2020-12-09 12:39:01 -05:00
|
|
|
}
|
|
|
|
|
2020-12-02 16:19:16 -05:00
|
|
|
Hook::Hook()
|
|
|
|
{
|
|
|
|
ImGui::CreateContext();
|
2021-02-24 16:54:45 -05:00
|
|
|
|
2021-02-25 17:45:41 -05:00
|
|
|
// gtaRenderHook
|
|
|
|
if (kiero::init(kiero::RenderType::D3D11) == kiero::Status::Success)
|
2020-12-02 16:19:16 -05:00
|
|
|
{
|
2021-02-25 17:45:41 -05:00
|
|
|
Globals::renderer = Render_DirectX11;
|
|
|
|
kiero::bind(8, (void**)&oPresent11, PresentDx11Handler);
|
2021-02-24 16:54:45 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-02-25 17:45:41 -05:00
|
|
|
if (kiero::init(kiero::RenderType::D3D9) == kiero::Status::Success)
|
2020-12-02 16:19:16 -05:00
|
|
|
{
|
2021-02-25 17:45:41 -05:00
|
|
|
Globals::renderer = Render_DirectX9;
|
|
|
|
kiero::bind(16, (void**)&oReset9, Reset);
|
|
|
|
kiero::bind(17, (void**)&oPresent9, PresentDx9Handler);
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
2021-02-24 16:54:45 -05:00
|
|
|
}
|
2020-12-02 16:19:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Hook::~Hook()
|
|
|
|
{
|
2021-02-25 17:45:41 -05:00
|
|
|
SetWindowLongPtr(RsGlobal.ps->window, GWL_WNDPROC, (LRESULT)oWndProc);
|
2020-12-02 16:19:16 -05:00
|
|
|
ImGui_ImplDX9_Shutdown();
|
|
|
|
ImGui_ImplWin32_Shutdown();
|
|
|
|
ImGui::DestroyContext();
|
|
|
|
kiero::shutdown();
|
|
|
|
}
|