forked from Hay1tsme/segatools
changed everything and nothing
This commit is contained in:
parent
1a225822ce
commit
93db71df54
@ -6,9 +6,11 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "mercuryhook/elisabeth.h"
|
#include "mercuryhook/elisabeth.h"
|
||||||
|
#include "mercuryhook/mercury-dll.h"
|
||||||
|
|
||||||
#include "hook/table.h"
|
#include "hook/table.h"
|
||||||
|
|
||||||
|
#include "hooklib/uart.h"
|
||||||
#include "hooklib/dll.h"
|
#include "hooklib/dll.h"
|
||||||
#include "hooklib/path.h"
|
#include "hooklib/path.h"
|
||||||
#include "hooklib/setupapi.h"
|
#include "hooklib/setupapi.h"
|
||||||
@ -22,6 +24,13 @@ static HMODULE WINAPI my_LoadLibraryW(const wchar_t *name);
|
|||||||
static HMODULE (WINAPI *next_LoadLibraryW)(const wchar_t *name);
|
static HMODULE (WINAPI *next_LoadLibraryW)(const wchar_t *name);
|
||||||
static FARPROC WINAPI my_GetProcAddress(HMODULE hModule, const char *name);
|
static FARPROC WINAPI my_GetProcAddress(HMODULE hModule, const char *name);
|
||||||
static FARPROC (WINAPI *next_GetProcAddress)(HMODULE hModule, const char *name);
|
static FARPROC (WINAPI *next_GetProcAddress)(HMODULE hModule, const char *name);
|
||||||
|
static HRESULT elisabeth_handle_irp(struct irp *irp);
|
||||||
|
static HRESULT elisabeth_handle_irp_locked(struct irp *irp);
|
||||||
|
|
||||||
|
static CRITICAL_SECTION elisabeth_lock;
|
||||||
|
static struct uart elisabeth_uart;
|
||||||
|
static uint8_t elisabeth_written_bytes[520];
|
||||||
|
static uint8_t elisabeth_readable_bytes[520];
|
||||||
|
|
||||||
static const struct hook_symbol win32_hooks[] = {
|
static const struct hook_symbol win32_hooks[] = {
|
||||||
{
|
{
|
||||||
@ -42,10 +51,84 @@ static const wchar_t *target_modules[] = {
|
|||||||
|
|
||||||
static const size_t target_modules_len = _countof(target_modules);
|
static const size_t target_modules_len = _countof(target_modules);
|
||||||
|
|
||||||
void elisabeth_hook_init()
|
HRESULT elisabeth_hook_init()
|
||||||
{
|
{
|
||||||
dll_hook_insert_hooks(NULL);
|
dll_hook_insert_hooks(NULL);
|
||||||
setupapi_add_phantom_dev(&elisabeth_guid, L"USB\\VID_0403&PID_6001");
|
setupapi_add_phantom_dev(&elisabeth_guid, L"$ftdi");
|
||||||
|
|
||||||
|
InitializeCriticalSection(&elisabeth_lock);
|
||||||
|
|
||||||
|
uart_init(&elisabeth_uart, 1);
|
||||||
|
elisabeth_uart.written.bytes = elisabeth_written_bytes;
|
||||||
|
elisabeth_uart.written.nbytes = sizeof(elisabeth_written_bytes);
|
||||||
|
elisabeth_uart.readable.bytes = elisabeth_readable_bytes;
|
||||||
|
elisabeth_uart.readable.nbytes = sizeof(elisabeth_readable_bytes);
|
||||||
|
|
||||||
|
return iohook_push_handler(elisabeth_handle_irp);
|
||||||
|
}
|
||||||
|
|
||||||
|
static HRESULT elisabeth_handle_irp(struct irp *irp)
|
||||||
|
{
|
||||||
|
HRESULT hr;
|
||||||
|
|
||||||
|
assert(irp != NULL);
|
||||||
|
|
||||||
|
if (!uart_match_irp(&elisabeth_uart, irp)) {
|
||||||
|
return iohook_invoke_next(irp);
|
||||||
|
}
|
||||||
|
|
||||||
|
EnterCriticalSection(&elisabeth_lock);
|
||||||
|
hr = elisabeth_handle_irp_locked(irp);
|
||||||
|
LeaveCriticalSection(&elisabeth_lock);
|
||||||
|
|
||||||
|
return hr;
|
||||||
|
}
|
||||||
|
|
||||||
|
static HRESULT elisabeth_handle_irp_locked(struct irp *irp)
|
||||||
|
{
|
||||||
|
//union elisabeth_req_any req;
|
||||||
|
struct iobuf req_iobuf;
|
||||||
|
HRESULT hr;
|
||||||
|
|
||||||
|
if (irp->op == IRP_OP_OPEN) {
|
||||||
|
dprintf("Elisabeth: Starting backend\n");
|
||||||
|
hr = mercury_dll.elisabeth_init();
|
||||||
|
|
||||||
|
if (FAILED(hr)) {
|
||||||
|
dprintf("Elisabeth: Backend error: %x\n", (int) hr);
|
||||||
|
|
||||||
|
return hr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
hr = uart_handle_irp(&elisabeth_uart, irp);
|
||||||
|
|
||||||
|
if (FAILED(hr) || irp->op != IRP_OP_WRITE) {
|
||||||
|
return hr;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (;;) {
|
||||||
|
|
||||||
|
//req_iobuf.bytes = req.bytes;
|
||||||
|
//req_iobuf.nbytes = sizeof(req.bytes);
|
||||||
|
//req_iobuf.pos = 0;
|
||||||
|
|
||||||
|
/*hr = elisabeth_frame_decode(&req_iobuf, &elisabeth_uart.written);
|
||||||
|
|
||||||
|
if (hr != S_OK) {
|
||||||
|
if (FAILED(hr)) {
|
||||||
|
dprintf("Elisabeth: Deframe error: %x\n", (int) hr);
|
||||||
|
}
|
||||||
|
|
||||||
|
return hr;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr = elisabeth_req_dispatch(&req);
|
||||||
|
|
||||||
|
if (FAILED(hr)) {
|
||||||
|
dprintf("Elisabeth: Processing error: %x\n", (int) hr);
|
||||||
|
}*/
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void dll_hook_insert_hooks(HMODULE target)
|
static void dll_hook_insert_hooks(HMODULE target)
|
||||||
|
@ -8,4 +8,4 @@ DEFINE_GUID(
|
|||||||
0x4FF5,
|
0x4FF5,
|
||||||
0x97, 0x0A1, 0x0BD, 0x86, 0x58, 0x7C, 0x6C, 0x7E);
|
0x97, 0x0A1, 0x0BD, 0x86, 0x58, 0x7C, 0x6C, 0x7E);
|
||||||
|
|
||||||
void elisabeth_hook_init();
|
HRESULT elisabeth_hook_init();
|
||||||
|
@ -21,6 +21,9 @@ const struct dll_bind_sym mercury_dll_syms[] = {
|
|||||||
}, {
|
}, {
|
||||||
.sym = "mercury_io_get_gamebtns",
|
.sym = "mercury_io_get_gamebtns",
|
||||||
.off = offsetof(struct mercury_dll, get_gamebtns),
|
.off = offsetof(struct mercury_dll, get_gamebtns),
|
||||||
|
}, {
|
||||||
|
.sym = "mercury_io_elisabeth_init",
|
||||||
|
.off = offsetof(struct mercury_dll, elisabeth_init),
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -10,6 +10,7 @@ struct mercury_dll {
|
|||||||
HRESULT (*poll)(void);
|
HRESULT (*poll)(void);
|
||||||
void (*get_opbtns)(uint8_t *opbtn);
|
void (*get_opbtns)(uint8_t *opbtn);
|
||||||
void (*get_gamebtns)(uint16_t *player1, uint16_t *player2);
|
void (*get_gamebtns)(uint16_t *player1, uint16_t *player2);
|
||||||
|
HRESULT (*elisabeth_init)(void);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct mercury_dll_config {
|
struct mercury_dll_config {
|
||||||
|
@ -15,5 +15,6 @@ EXPORTS
|
|||||||
mercury_io_get_api_version
|
mercury_io_get_api_version
|
||||||
mercury_io_get_gamebtns
|
mercury_io_get_gamebtns
|
||||||
mercury_io_get_opbtns
|
mercury_io_get_opbtns
|
||||||
|
mercury_io_elisabeth_init
|
||||||
mercury_io_init
|
mercury_io_init
|
||||||
mercury_io_poll
|
mercury_io_poll
|
||||||
|
@ -47,3 +47,8 @@ void mercury_io_get_gamebtns(uint16_t *player1, uint16_t *player2)
|
|||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT mercury_io_elisabeth_init(void)
|
||||||
|
{
|
||||||
|
return S_OK;
|
||||||
|
}
|
||||||
|
@ -65,3 +65,5 @@ void mercury_io_get_opbtns(uint8_t *opbtn);
|
|||||||
Minimum API version: 0x0100 */
|
Minimum API version: 0x0100 */
|
||||||
|
|
||||||
void mercury_io_get_gamebtns(uint16_t *player1, uint16_t *player2);
|
void mercury_io_get_gamebtns(uint16_t *player1, uint16_t *player2);
|
||||||
|
|
||||||
|
HRESULT mercury_io_elisabeth_init(void);
|
||||||
|
Loading…
Reference in New Issue
Block a user