2019-03-16 16:57:17 +01:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2019-05-04 18:04:53 +02:00
|
|
|
#include "amex/amex.h"
|
2019-03-16 16:57:17 +01:00
|
|
|
|
2019-05-03 23:21:38 +02:00
|
|
|
#include "board/sg-reader.h"
|
|
|
|
|
2019-05-18 05:41:14 +02:00
|
|
|
#include "divahook/config.h"
|
2019-03-16 16:57:17 +01:00
|
|
|
#include "divahook/jvs.h"
|
2019-05-03 21:59:23 +02:00
|
|
|
#include "divahook/slider.h"
|
2019-03-16 16:57:17 +01:00
|
|
|
|
|
|
|
#include "hook/process.h"
|
|
|
|
|
2019-05-14 17:15:20 +02:00
|
|
|
#include "hooklib/gfx.h"
|
2019-03-16 16:57:17 +01:00
|
|
|
#include "hooklib/serial.h"
|
2019-05-14 17:15:20 +02:00
|
|
|
#include "hooklib/spike.h"
|
2019-03-16 16:57:17 +01:00
|
|
|
|
2019-05-18 05:10:09 +02:00
|
|
|
#include "platform/platform.h"
|
2019-03-16 16:57:17 +01:00
|
|
|
|
|
|
|
#include "util/dprintf.h"
|
|
|
|
|
2019-05-18 05:10:09 +02:00
|
|
|
static HMODULE diva_hook_mod;
|
2019-03-16 16:57:17 +01:00
|
|
|
static process_entry_t diva_startup;
|
2019-05-18 05:41:14 +02:00
|
|
|
static struct diva_hook_config diva_hook_cfg;
|
2019-03-16 16:57:17 +01:00
|
|
|
|
|
|
|
static DWORD CALLBACK diva_pre_startup(void)
|
|
|
|
{
|
|
|
|
dprintf("--- Begin diva_pre_startup ---\n");
|
|
|
|
|
2019-05-18 05:41:14 +02:00
|
|
|
/* Config load */
|
|
|
|
|
|
|
|
diva_hook_config_load(&diva_hook_cfg, L".\\segatools.ini");
|
|
|
|
|
2019-03-16 16:57:17 +01:00
|
|
|
/* Hook Win32 APIs */
|
|
|
|
|
|
|
|
serial_hook_init();
|
|
|
|
|
2019-05-18 05:41:14 +02:00
|
|
|
/* Initialize emulation hooks */
|
2019-03-16 16:57:17 +01:00
|
|
|
|
2019-11-03 15:52:33 +01:00
|
|
|
platform_hook_init(
|
|
|
|
&diva_hook_cfg.platform,
|
|
|
|
"SBZV",
|
|
|
|
"AAV0",
|
|
|
|
diva_hook_mod);
|
|
|
|
|
2019-11-03 19:01:03 +01:00
|
|
|
amex_hook_init(&diva_hook_cfg.amex, diva_jvs_init);
|
2019-06-04 04:28:44 +02:00
|
|
|
sg_reader_hook_init(&diva_hook_cfg.aime, 10);
|
2019-03-16 16:57:17 +01:00
|
|
|
slider_hook_init();
|
|
|
|
|
|
|
|
/* Initialize debug helpers */
|
|
|
|
|
2019-10-19 22:15:14 +02:00
|
|
|
spike_hook_init(L".\\segatools.ini");
|
2019-03-16 16:57:17 +01:00
|
|
|
|
|
|
|
dprintf("--- End diva_pre_startup ---\n");
|
|
|
|
|
|
|
|
/* Jump to EXE start address */
|
|
|
|
|
|
|
|
return diva_startup();
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL WINAPI DllMain(HMODULE mod, DWORD cause, void *ctx)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if (cause != DLL_PROCESS_ATTACH) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2019-05-18 05:10:09 +02:00
|
|
|
diva_hook_mod = mod;
|
|
|
|
|
2019-03-16 16:57:17 +01:00
|
|
|
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);
|
|
|
|
}
|