Preliminary libacio hooks
This commit is contained in:
parent
c95b7a77d5
commit
4767295cdd
516
OpenParrotKonamiLoader/src/libacio.cpp
Normal file
516
OpenParrotKonamiLoader/src/libacio.cpp
Normal file
@ -0,0 +1,516 @@
|
||||
#include <Windows.h>
|
||||
|
||||
DWORD mainModuleBase;
|
||||
|
||||
// TODO: REVERSE EACH API WITH DEBUGGING AND USE ORIGINAL I/O FOR PROPER RETURN VALUES OF REST OF THE STUFF
|
||||
|
||||
char __cdecl ac_io_begin_get_status(int a1) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool ac_io_end() // JGT
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
int ac_io_end_get_status() // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_get_version(int a1, int a2) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_control_lamp_bright(char a1, unsigned __int8 a2) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_control_lamp_mode(int a1) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_control_lamp_off(int a1) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_control_lamp_on(char a1) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_control_parallel_off(char a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_control_parallel_on(char a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int ac_io_hbhi_control_reset()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char ac_io_hbhi_create_get_status_thread()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int ac_io_hbhi_destroy_get_status_thread()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hbhi_get_coin_input_wave_buffer(int *a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool ac_io_hbhi_get_watchdog_status() // JGT
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hbhi_lock_coincounter(signed int a1) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
signed int ac_io_hbhi_req_carddispenser_disburse()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool ac_io_hbhi_req_carddispenser_get_status()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
signed int ac_io_hbhi_req_carddispenser_init()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char ac_io_hbhi_req_coin_input_wave()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hbhi_req_get_control_status(DWORD *a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hbhi_req_secplug_check(const char *a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_hbhi_req_secplug_check_isfinished(signed int *a1) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hbhi_req_secplug_check_softwareplug(const char *a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char ac_io_hbhi_req_secplug_check_systemplug()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char ac_io_hbhi_req_secplug_missing_check()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_reset_coin_slot_noise_flag(int a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_hbhi_req_secplug_missing_check_isfinished(signed int *a1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_hbhi_req_volume_control(char a1, unsigned __int8 a2)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_hbhi_req_volume_control_isfinished(signed int *a1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_set_framing_err_packet_send_interval(int a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_hbhi_set_watchdog_time(__int16 a1)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hbhi_unlock_coincounter(signed int a1) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char ac_io_hbhi_update_control_status_buffer() // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char ac_io_hgth_update_recvdata()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_set_soft_watch_dog(int a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int ac_io_soft_watch_dog_off() // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int ac_io_soft_watch_dog_on() // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int ac_io_update() // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hdxs_update_control_status_buffer(signed int a1)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char ac_io_icca_is_felica()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_secplug_set_encodedpasswd(int a1, int a2)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char ac_io_get_firmware_update_device_index()
|
||||
{
|
||||
return 0xFF;
|
||||
}
|
||||
|
||||
const char *ac_io_get_version_string()
|
||||
{
|
||||
return "1.25.0";
|
||||
}
|
||||
|
||||
__int16 ac_io_hbhi_get_watchdog_time_min()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
__int16 ac_io_hbhi_get_watchdog_time_now()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hdxs_led_scroll(signed int a1, char a2, char a3, char a4, char a5, char a6, char a7, char a8, char a9, char a10, char a11, char a12, char a13)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hdxs_led_set_pattern(signed int a1, char a2, char a3, char a4, __int64 a5)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hdxs_led_set_rgb_mask(signed int a1, char a2, char a3, __int64 a4)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_icca_send_keep_alive_packet(int a1, unsigned __int64 a2)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
void ac_io_hbhi_watchdog_off()
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
void __cdecl ac_io_hgth_set_senddata(int a1)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_begin(char a1, int a2, DWORD *a3, int a4) // JGT
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_get_node_no(int a1)
|
||||
{
|
||||
// TODO
|
||||
// UNK RET
|
||||
return 1;
|
||||
}
|
||||
|
||||
DWORD *__cdecl ac_io_get_rs232c_status(DWORD *a1) // JGT
|
||||
{
|
||||
// TODO
|
||||
// UNK RET
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD coinDw = 0;
|
||||
|
||||
int __cdecl ac_io_hbhi_add_coin(int a1, int a2)
|
||||
{
|
||||
coinDw++;
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hbhi_consume_coinstock(signed int a1, int a2) // JGT
|
||||
{
|
||||
const DWORD val = coinDw;
|
||||
coinDw = 0;
|
||||
return val;
|
||||
}
|
||||
|
||||
DWORD coinBlockerVal = 0;
|
||||
|
||||
int __cdecl ac_io_hbhi_control_coin_blocker_close(int a1) // JGT
|
||||
{
|
||||
coinBlockerVal = 1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_control_coin_blocker_open(int a1) // JGT
|
||||
{
|
||||
coinBlockerVal = 0;
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hbhi_current_coinstock(signed int a1, DWORD *a2) // JGT
|
||||
{
|
||||
*a2 = coinDw;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_get_control_status_buffer(int a1) // JGT
|
||||
{
|
||||
// TODO
|
||||
// TODO UNK RET
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_get_softwareid(DWORD *a1) // JGT
|
||||
{
|
||||
*a1 = 0x46464646;
|
||||
a1[1] = 0x46464646;
|
||||
a1[2] = 0x46464646;
|
||||
a1[3] = 0x46464646;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_get_systemid(DWORD *a1) // JGT
|
||||
{
|
||||
*a1 = 0x46464646;
|
||||
a1[1] = 0x46464646;
|
||||
a1[2] = 0x46464646;
|
||||
a1[3] = 0x46464646;
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_hbhi_req_carddispenser_disburse_isfinished(DWORD *a1)
|
||||
{
|
||||
++*a1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hbhi_req_carddispenser_get_status_isfinished(DWORD *a1)
|
||||
{
|
||||
++*a1;
|
||||
return 2;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_hbhi_req_carddispenser_init_isfinished(DWORD *a1)
|
||||
{
|
||||
++*a1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hdxs_get_control_status_buffer(signed int a1, DWORD *a2)
|
||||
{
|
||||
// TODO
|
||||
// TODO UNK RET
|
||||
return 1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_hdxs_set_framing_err_packet_send_interval(int a1)
|
||||
{
|
||||
return a1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_hgth_directreq_set_handle_limit(char a1, DWORD *a2)
|
||||
{
|
||||
*a2 = 1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_hgth_directreq_set_handle_limit_isfinished(DWORD *a1)
|
||||
{
|
||||
*a1 = 2;
|
||||
return 1;
|
||||
}
|
||||
|
||||
void __cdecl ac_io_hgth_get_recvdata(void *a1)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
char icCardBuf[256];
|
||||
|
||||
bool __cdecl ac_io_icca_cardunit_init(int a1) // JGT
|
||||
{
|
||||
icCardBuf[36 * (a1 & 1)] = 1;
|
||||
if (a1 == 2)
|
||||
icCardBuf[8] = -1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_icca_cardunit_init_isfinished(int a1, DWORD *a2) // JGT
|
||||
{
|
||||
if (a1 == 2)
|
||||
icCardBuf[8] = -1;
|
||||
*a2 = 4;
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_icca_device_control_iccard_power_supply_off(int a1)
|
||||
{
|
||||
if (a1 == 2)
|
||||
icCardBuf[8] = -1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_icca_device_control_iccard_power_supply_on(int a1)
|
||||
{
|
||||
if (a1 == 2)
|
||||
icCardBuf[8] = -1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_icca_device_control_isfinished(int a1, DWORD *a2)
|
||||
{
|
||||
if (a1 == 2)
|
||||
icCardBuf[8] = -1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_icca_get_keep_alive_error(int a1, DWORD *a2)
|
||||
{
|
||||
if (a1 == 2)
|
||||
icCardBuf[8] = -1;
|
||||
*a2 = 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_icca_get_status(int a1, int a2) // JGT
|
||||
{
|
||||
// TODO
|
||||
// TODO UNK RET
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_icca_get_uid_felica(int a1, int a2) // JGT
|
||||
{
|
||||
// TODO
|
||||
// TODO UNK RET
|
||||
return 1;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_icca_req_uid(int a1) // JGT
|
||||
{
|
||||
// TODO
|
||||
// TODO UNK RET
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_icca_req_uid_isfinished(int a1, DWORD *a2) // JGT
|
||||
{
|
||||
// TODO
|
||||
// TODO UNK RET
|
||||
return true;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_icca_workflow(int a1, int a2) // JGT
|
||||
{
|
||||
// TODO
|
||||
// TODO UNK RET
|
||||
return 1;
|
||||
}
|
||||
|
||||
DWORD ac_io_unk = 0;
|
||||
|
||||
char __cdecl ac_io_is_active(int a1)
|
||||
{
|
||||
// TODO: UNK NOT SURE
|
||||
ac_io_unk++;
|
||||
return ac_io_unk != 259;
|
||||
}
|
||||
|
||||
bool __cdecl ac_io_is_active2(int a1, int *a2) // JGT
|
||||
{
|
||||
ac_io_unk = 0x259;
|
||||
*a2 = 6;
|
||||
return true;
|
||||
}
|
||||
|
||||
char __cdecl ac_io_is_active_device(int a1) // JGT
|
||||
{
|
||||
return a1 != 5;
|
||||
}
|
||||
|
||||
int ac_io_reset(int a1)
|
||||
{
|
||||
return a1;
|
||||
}
|
||||
|
||||
int __cdecl ac_io_set_get_status_device(int a1)
|
||||
{
|
||||
return a1;
|
||||
}
|
||||
|
||||
const char *ac_io_version()
|
||||
{
|
||||
// TODO
|
||||
// TODO UNK RET
|
||||
return "1337";
|
||||
}
|
||||
|
||||
int init_libacioHooks()
|
||||
{
|
||||
return 1;
|
||||
}
|
2
OpenParrotKonamiLoader/src/libacio.h
Normal file
2
OpenParrotKonamiLoader/src/libacio.h
Normal file
@ -0,0 +1,2 @@
|
||||
#pragma once
|
||||
int init_libacioHooks();
|
Loading…
Reference in New Issue
Block a user