Merge remote-tracking branch 'Blu3train/KissHook'

This commit is contained in:
Chenx221 2024-09-05 12:14:30 +08:00
commit 178ec0fe3f
3 changed files with 41 additions and 0 deletions

View File

@ -23712,6 +23712,42 @@ bool InsertNamcoPS2Hook()
} }
#endif // 0 #endif // 0
bool InsertKissHook() {
//by Blu3train
/*
* Sample games:
* https://vndb.org/v1767
*/
const BYTE bytes[] = {
0xC1, 0xE9, 0x02, // shr ecx,02 <- hook here
0xF3, 0xA5, // repe movsd
0x8B, 0xCA, // mov ecx,edx
0x55, // push ebp
0x83, 0xE1, 0x03, // and ecx,03
0xF3, 0xA4, // repe movsb
0x8D, 0x4C, 0x24, 0x18, // lea ecx,[esp+18]
0xE8, XX4, // call kano.exe+6310
0x8B, 0x0D, XX4 // mov ecx,[kano.exe+211F8C]
};
ULONG range = min(processStopAddress - processStartAddress, MAX_REL_ADDR);
ULONG addr = MemDbg::findBytes(bytes, sizeof(bytes), processStartAddress, processStartAddress + range);
if (!addr) {
ConsoleOutput("vnreng:Kiss: pattern not found");
return false;
}
HookParam hp = {};
hp.address = addr;
hp.offset = pusha_esi_off -4;
hp.index = 0;
hp.type = USING_STRING | NO_CONTEXT;
ConsoleOutput("vnreng: INSERT Kiss");
NewHook(hp, "Kiss");
return true;
}
bool KidFilter(LPVOID data, DWORD *size, HookParam *, BYTE) bool KidFilter(LPVOID data, DWORD *size, HookParam *, BYTE)
{ {
auto text = reinterpret_cast<LPSTR>(data); auto text = reinterpret_cast<LPSTR>(data);

View File

@ -156,6 +156,7 @@ bool InsertWillPlusHook(); // WillPlus: Rio.arc
bool InsertWolfHook(); // Wolf: Data.wolf bool InsertWolfHook(); // Wolf: Data.wolf
bool InsertYukaSystemHooks(); // YukaSystem2: *.ykc bool InsertYukaSystemHooks(); // YukaSystem2: *.ykc
bool InsertYurisHook(); // YU-RIS: *.ypf bool InsertYurisHook(); // YU-RIS: *.ypf
bool InsertKissHook(); // Kiss: GameData/*.arc
bool InsertKidHook(); // Kid: resource string bool InsertKidHook(); // Kid: resource string
bool InsertISMscriptHooks(); // ISM script Engine: ism.dll bool InsertISMscriptHooks(); // ISM script Engine: ism.dll
bool InsertTrianglePixHook(); // Triangle Pix: pix.bin bool InsertTrianglePixHook(); // Triangle Pix: pix.bin

View File

@ -380,6 +380,10 @@ bool DetermineEngineByFile3()
bool DetermineEngineByFile4() bool DetermineEngineByFile4()
{ {
if (Util::CheckFile(L"GameData/*.arc")) {
if (InsertKissHook())
return true;
}
if (Util::SearchResourceString(L" KID")) { if (Util::SearchResourceString(L" KID")) {
if (InsertKidHook()) if (InsertKidHook())
return true; return true;