LunaHook-mirror/LunaHook/engine32/Speed.cpp
恍兮惚兮 e84af745ca issues/20
2024-04-25 18:09:46 +08:00

23 lines
873 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include"Speed.h"
bool Speed::attach_function() {
// 藍色狂詩曲Deep Blue Rhapsody
//mov esi, ds:DrawTextA
auto addr = findiatcallormov((DWORD)DrawTextA,processStartAddress,processStartAddress,processStopAddress,false,0x35);
if (addr == 0)return false;
BYTE sig1[]={ 0x68,0x00,0x04,0x00,0x00 };
BYTE sig2[]={ 0xFF,0xD6 };
BYTE sig3[]={ 0x68,0x00,0x01,0x00,0x00 };
BYTE sig4[]={ 0xFF,0xD6 };
for(auto p:std::vector<std::pair<BYTE*,int>>{{sig1,sizeof(sig1)},{sig2,sizeof(sig2)},{sig3,sizeof(sig3)},{sig4,sizeof(sig4)}}){
addr=MemDbg::findBytes(p.first, p.second, addr, addr+0x40);
if(addr==0)return false;
}
addr = MemDbg::findEnclosingAlignedFunction(addr);
if (addr == 0)return false;
HookParam hp;
hp.address = addr;
hp.offset=get_stack(1);
hp.type = CODEC_ANSI_BE ;
return NewHook(hp, "Speed");
}