-
Автор темы
- #1
Не могу манипулировать окном ImGui в игре.
Он открывается но перемещать или ставить галки на чекбоксы не могу...
Он открывается но перемещать или ставить галки на чекбоксы не могу...
C++:
#include "includes.h"
// Create the type of function that we will hook
typedef long(__stdcall* EndScene)(LPDIRECT3DDEVICE9);
static EndScene oEndScene = NULL;
static HWND window = NULL;
WNDPROC oWndProc;
extern LRESULT ImGui_ImplWin32_WndProcHandle(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
void InitImGui(LPDIRECT3DDEVICE9 pDevice)
{
ImGui::CreateContext();
ImGuiIO& io = ImGui::GetIO();
io.ConfigFlags = ImGuiConfigFlags_NoMouseCursorChange;
ImGui_ImplWin32_Init(window);
ImGui_ImplDX9_Init(pDevice);
}
bool init = false;
bool openmenu = false;
// Declare the detour function
long __stdcall hkEndScene(LPDIRECT3DDEVICE9 pDevice)
{
if (!init)
{
InitImGui(pDevice);
init = true;
}
if (GetAsyncKeyState(VK_INSERT) & 1)
{
openmenu = !openmenu;
}
if (GetAsyncKeyState(VK_END))
{
kiero::shutdown();
return 0;
}
if (openmenu)
{
ImGui_ImplDX9_NewFrame();
ImGui_ImplWin32_NewFrame();
ImGui::NewFrame();
ImGui::Begin("Sv1n|Ware");
ImGui::End();
ImGui::EndFrame();
ImGui::Render();
ImGui_ImplDX9_RenderDrawData(ImGui::GetDrawData());
}
return oEndScene(pDevice);
}
LRESULT _stdcall WndProc(const HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
if (true && ImGui_ImplWin32_WndProcHandle(hwnd, uMsg, wParam, lParam))
return true;
return CallWindowProc(oWndProc, hwnd, uMsg, wParam, lParam);
}
BOOL CALLBACK EnumWindowsCallBack(HWND handle, LPARAM lParam)
{
DWORD procID;
GetWindowThreadProcessId(handle, &procID);
if (GetCurrentProcessId() != procID)
return TRUE;
window = handle;
return false;
}
HWND GetProcessWindow()
{
window = NULL;
EnumWindows(EnumWindowsCallBack, NULL);
return window;
}
int mainThread()
{
if (kiero::init(kiero::RenderType::D3D9) == kiero::Status::Success)
{
kiero::bind(42, (void**)&oEndScene, hkEndScene);
window = GetProcessWindow();
oWndProc = (WNDPROC)SetWindowLongPtr(window, GWL_WNDPROC, (LONG_PTR)WndProc);
}
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD fdwReason, LPVOID)
{
DisableThreadLibraryCalls(hInstance);
if (fdwReason == DLL_PROCESS_ATTACH)
{
CloseHandle(CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)mainThread, NULL, 0, NULL));
}
return TRUE;
}
LRESULT ImGui_ImplWin32_WndProcHandle(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
return LRESULT();
}