2019-03-16 15:57:17 +00:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2019-05-04 16:04:53 +00:00
|
|
|
#include "amex/amex.h"
|
2019-05-16 00:08:35 +00:00
|
|
|
#include "amex/config.h"
|
2019-03-16 15:57:17 +00:00
|
|
|
|
2019-05-03 21:21:38 +00:00
|
|
|
#include "board/sg-reader.h"
|
|
|
|
|
2019-03-16 15:57:17 +00:00
|
|
|
#include "divahook/jvs.h"
|
2019-05-03 19:59:23 +00:00
|
|
|
#include "divahook/slider.h"
|
2019-03-16 15:57:17 +00:00
|
|
|
|
|
|
|
#include "hook/process.h"
|
|
|
|
|
2019-05-14 15:15:20 +00:00
|
|
|
#include "hooklib/clock.h"
|
|
|
|
#include "hooklib/gfx.h"
|
2019-03-16 15:57:17 +00:00
|
|
|
#include "hooklib/serial.h"
|
2019-05-14 15:15:20 +00:00
|
|
|
#include "hooklib/spike.h"
|
2019-03-16 15:57:17 +00:00
|
|
|
|
|
|
|
#include "platform/hwmon.h"
|
|
|
|
#include "platform/nusec.h"
|
|
|
|
|
|
|
|
#include "util/dprintf.h"
|
|
|
|
|
|
|
|
static process_entry_t diva_startup;
|
|
|
|
|
|
|
|
static DWORD CALLBACK diva_pre_startup(void)
|
|
|
|
{
|
2019-05-04 17:12:20 +00:00
|
|
|
struct amex_config amex_cfg;
|
|
|
|
|
2019-03-16 15:57:17 +00:00
|
|
|
dprintf("--- Begin diva_pre_startup ---\n");
|
|
|
|
|
|
|
|
/* Hook Win32 APIs */
|
|
|
|
|
|
|
|
clock_hook_init();
|
|
|
|
serial_hook_init();
|
|
|
|
|
|
|
|
/* Initialize platform API emulation */
|
|
|
|
|
|
|
|
hwmon_hook_init();
|
|
|
|
nusec_hook_init();
|
|
|
|
|
|
|
|
/* Initialize AMEX emulation */
|
|
|
|
|
2019-05-04 17:12:20 +00:00
|
|
|
amex_config_load(&amex_cfg, L".\\segatools.ini");
|
|
|
|
amex_hook_init(&amex_cfg);
|
2019-03-16 15:57:17 +00:00
|
|
|
|
|
|
|
/* Initialize Project Diva I/O board emulation */
|
|
|
|
|
2019-05-04 17:12:20 +00:00
|
|
|
if (amex_cfg.jvs.enable) {
|
|
|
|
diva_jvs_init();
|
|
|
|
}
|
|
|
|
|
2019-05-03 21:21:38 +00:00
|
|
|
sg_reader_hook_init(10);
|
2019-03-16 15:57:17 +00:00
|
|
|
slider_hook_init();
|
|
|
|
|
|
|
|
/* Initialize debug helpers */
|
|
|
|
|
|
|
|
spike_hook_init("divaspike.txt");
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|