segatools/divahook/dllmain.c

109 lines
1.9 KiB
C
Raw Permalink Normal View History

#include <windows.h>
#include <stdlib.h>
2019-05-04 16:04:53 +00:00
#include "amex/amex.h"
#include "board/sg-reader.h"
2019-05-18 03:41:14 +00:00
#include "divahook/config.h"
2021-06-06 13:38:20 +00:00
#include "divahook/diva-dll.h"
#include "divahook/jvs.h"
2019-05-03 19:59:23 +00:00
#include "divahook/slider.h"
#include "hook/process.h"
#include "hooklib/serial.h"
#include "hooklib/spike.h"
2019-05-18 03:10:09 +00:00
#include "platform/platform.h"
#include "util/dprintf.h"
2019-05-18 03:10:09 +00:00
static HMODULE diva_hook_mod;
static process_entry_t diva_startup;
2019-05-18 03:41:14 +00:00
static struct diva_hook_config diva_hook_cfg;
static DWORD CALLBACK diva_pre_startup(void)
{
2019-11-05 23:03:24 +00:00
HRESULT hr;
dprintf("--- Begin diva_pre_startup ---\n");
2019-05-18 03:41:14 +00:00
/* Config load */
diva_hook_config_load(&diva_hook_cfg, L".\\segatools.ini");
/* Hook Win32 APIs */
serial_hook_init();
2019-05-18 03:41:14 +00:00
/* Initialize emulation hooks */
2019-11-05 23:03:24 +00:00
hr = platform_hook_init(
&diva_hook_cfg.platform,
"SBZV",
"AAV0",
diva_hook_mod);
2019-11-05 23:03:24 +00:00
if (FAILED(hr)) {
goto fail;
2019-11-05 23:03:24 +00:00
}
2021-06-06 13:38:20 +00:00
hr = diva_dll_init(&diva_hook_cfg.dll, diva_hook_mod);
if (FAILED(hr)) {
goto fail;
}
2019-11-05 23:03:24 +00:00
hr = amex_hook_init(&diva_hook_cfg.amex, diva_jvs_init);
if (FAILED(hr)) {
goto fail;
2019-11-05 23:03:24 +00:00
}
2021-05-23 15:54:24 +00:00
hr = sg_reader_hook_init(&diva_hook_cfg.aime, 10, diva_hook_mod);
2019-11-05 23:03:24 +00:00
if (FAILED(hr)) {
goto fail;
2019-11-05 23:03:24 +00:00
}
hr = slider_hook_init(&diva_hook_cfg.slider);
2019-11-05 23:03:24 +00:00
if (FAILED(hr)) {
goto fail;
2019-11-05 23:03:24 +00:00
}
/* Initialize debug helpers */
spike_hook_init(L".\\segatools.ini");
dprintf("--- End diva_pre_startup ---\n");
/* Jump to EXE start address */
return diva_startup();
fail:
ExitProcess(EXIT_FAILURE);
}
BOOL WINAPI DllMain(HMODULE mod, DWORD cause, void *ctx)
{
HRESULT hr;
if (cause != DLL_PROCESS_ATTACH) {
return TRUE;
}
2019-05-18 03:10:09 +00:00
diva_hook_mod = mod;
hr = process_hijack_startup(diva_pre_startup, &diva_startup);
if (!SUCCEEDED(hr)) {
dprintf("Failed to hijack process startup: %x\n", (int) hr);
}
return SUCCEEDED(hr);
}