2019-03-05 19:34:43 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2019-05-04 16:04:53 +00:00
|
|
|
#include "amex/amex.h"
|
2019-03-05 19:34:43 +00:00
|
|
|
|
2019-05-03 21:21:38 +00:00
|
|
|
#include "board/sg-reader.h"
|
|
|
|
|
2019-03-05 19:34:43 +00:00
|
|
|
#include "hook/process.h"
|
|
|
|
|
2019-05-14 15:15:20 +00:00
|
|
|
#include "hooklib/gfx.h"
|
2019-03-05 19:34:43 +00:00
|
|
|
#include "hooklib/serial.h"
|
2019-05-14 15:15:20 +00:00
|
|
|
#include "hooklib/spike.h"
|
2019-03-05 19:34:43 +00:00
|
|
|
|
2019-05-18 03:48:21 +00:00
|
|
|
#include "idzhook/config.h"
|
2019-03-05 19:34:43 +00:00
|
|
|
#include "idzhook/jvs.h"
|
2019-11-03 21:12:58 +00:00
|
|
|
#include "idzhook/zinput.h"
|
2019-03-05 19:34:43 +00:00
|
|
|
|
2019-05-18 03:10:09 +00:00
|
|
|
#include "platform/platform.h"
|
2019-03-05 19:34:43 +00:00
|
|
|
|
|
|
|
#include "util/dprintf.h"
|
|
|
|
|
2019-05-16 00:08:35 +00:00
|
|
|
static HMODULE idz_hook_mod;
|
2019-03-05 19:34:43 +00:00
|
|
|
static process_entry_t idz_startup;
|
2019-05-18 03:48:21 +00:00
|
|
|
static struct idz_hook_config idz_hook_cfg;
|
2019-03-05 19:34:43 +00:00
|
|
|
|
|
|
|
static DWORD CALLBACK idz_pre_startup(void)
|
|
|
|
{
|
2019-11-05 23:03:24 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
2019-03-05 19:34:43 +00:00
|
|
|
dprintf("--- Begin idz_pre_startup ---\n");
|
|
|
|
|
2019-05-18 03:48:21 +00:00
|
|
|
/* Config load */
|
|
|
|
|
|
|
|
idz_hook_config_load(&idz_hook_cfg, L".\\segatools.ini");
|
|
|
|
|
2019-03-05 19:34:43 +00:00
|
|
|
/* Hook Win32 APIs */
|
|
|
|
|
|
|
|
serial_hook_init();
|
2019-11-03 21:12:58 +00:00
|
|
|
zinput_hook_init(&idz_hook_cfg.zinput);
|
2019-03-05 19:34:43 +00:00
|
|
|
|
2019-05-18 03:48:21 +00:00
|
|
|
/* Initialize emulation hooks */
|
2019-03-05 19:34:43 +00:00
|
|
|
|
2019-11-05 23:03:24 +00:00
|
|
|
hr = platform_hook_init(
|
|
|
|
&idz_hook_cfg.platform,
|
|
|
|
"SDDF",
|
|
|
|
"AAV2",
|
|
|
|
idz_hook_mod);
|
|
|
|
|
|
|
|
if (FAILED(hr)) {
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = amex_hook_init(&idz_hook_cfg.amex, idz_jvs_init);
|
|
|
|
|
|
|
|
if (FAILED(hr)) {
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr = sg_reader_hook_init(&idz_hook_cfg.aime, 10);
|
|
|
|
|
|
|
|
if (FAILED(hr)) {
|
|
|
|
return hr;
|
|
|
|
}
|
2019-06-04 02:28:44 +00:00
|
|
|
|
2019-03-05 19:34:43 +00:00
|
|
|
/* Initialize debug helpers */
|
|
|
|
|
2019-10-19 20:15:14 +00:00
|
|
|
spike_hook_init(L".\\segatools.ini");
|
2019-03-05 19:34:43 +00:00
|
|
|
|
|
|
|
dprintf("--- End idz_pre_startup ---\n");
|
|
|
|
|
|
|
|
/* Jump to EXE start address */
|
|
|
|
|
|
|
|
return idz_startup();
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI DllMain(HMODULE mod, DWORD cause, void *ctx)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if (cause != DLL_PROCESS_ATTACH) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-05-16 00:08:35 +00:00
|
|
|
idz_hook_mod = mod;
|
|
|
|
|
2019-03-05 19:34:43 +00:00
|
|
|
hr = process_hijack_startup(idz_pre_startup, &idz_startup);
|
|
|
|
|
|
|
|
if (!SUCCEEDED(hr)) {
|
|
|
|
dprintf("Failed to hijack process startup: %x\n", (int) hr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return SUCCEEDED(hr);
|
|
|
|
}
|