2016-01-05 23:01:17 +08:00
// match.cc
// 8/9/2013 jichi
// Branch: ITH_Engine/engine.cpp, revision 133
# ifdef _MSC_VER
# pragma warning (disable:4100) // C4100: unreference formal parameter
//# pragma warning (disable:4733) // C4733: Inline asm assigning to 'FS:0' : handler not registered as safe handler
# endif // _MSC_VER
2018-08-23 23:53:23 +08:00
# include "engine/match.h"
# include "engine/engine.h"
2018-09-18 09:40:54 +08:00
# include "engine/native/pchooks.h"
2018-08-23 23:53:23 +08:00
# include "util/growl.h"
# include "util/util.h"
# include "main.h"
2019-01-02 07:44:27 +08:00
# include "text.h"
2016-01-05 23:01:17 +08:00
# include "ithsys/ithsys.h"
//#define ConsoleOutput(...) (void)0 // jichi 8/18/2013: I don't need ConsoleOutput
enum { MAX_REL_ADDR = 0x200000 } ; // jichi 8/18/2013: maximum relative address
// - Global variables -
2018-08-26 03:45:25 +08:00
DWORD processStartAddress , processStopAddress ;
2016-01-05 23:01:17 +08:00
namespace Engine {
2018-07-01 14:08:51 +08:00
WCHAR * processName , // cached
processPath [ MAX_PATH ] ; // cached
2016-01-05 23:01:17 +08:00
//LPVOID trigger_addr;
2018-12-02 04:53:54 +08:00
/** jichi 12/24/2014
* @ param addr function address
* @ param frame real address of the function , supposed to be the same as addr
* @ param stack address of current stack - 4
* @ return If success , which is reverted
*/
2016-01-05 23:01:17 +08:00
trigger_fun_t trigger_fun_ ;
} // namespace Engine
// - Methods -
namespace Engine { namespace { // unnamed
bool DetermineGameHooks ( ) // 7/19/2015
{
#if 0 // jichi 7/19/2015: Disabled as it will crash the game
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " UE3ShaderCompileWorker.exe " ) & & Util : : CheckFile ( L " awesomium_process.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertLovaGameHook ( ) ;
return true ;
}
# endif // 0
return false ;
}
// jichi 7/17/2014: Disable GDI hooks for PPSSPP
bool DeterminePCEngine ( )
{
if ( DetermineGameHooks ( ) ) {
ConsoleOutput ( " vnreng: found game-specific hook " ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " PPSSPP*.exe " ) ) { // jichi 7/12/2014 PPSSPPWindows.exe, PPSSPPEX.exe PPSSPPSP.exe
2018-08-04 16:33:56 +08:00
//InsertPPSSPPHooks(); // Artikash 8/4/2018: removed for now as doesn't work for non ancient ppsspp versions
2016-01-05 23:01:17 +08:00
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " pcsx2*.exe " ) ) { // jichi 7/19/2014 PCSX2.exe or PCSX2WX.exe
2016-01-05 23:01:17 +08:00
InsertPCSX2Hooks ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Dolphin.exe " ) ) { // jichi 7/20/2014
2016-01-05 23:01:17 +08:00
InsertGCHooks ( ) ;
return true ;
}
// jichi 5/14/2015: Skip hijacking BALDRSKY ZEROs
2018-08-28 08:50:09 +08:00
//if (Util::CheckFile(L"bsz_Data\\Mono\\mono.dll") || Util::CheckFile(L"bsz2_Data\\Mono\\mono.dll")) {
// ConsoleOutput("vnreng: IGNORE BALDRSKY ZEROs");
// return true;
//}
2018-09-21 09:17:51 +08:00
2019-01-27 16:04:16 +08:00
for ( std : : wstring DXVersion : { L " d3dx9 " , L " d3dx10 " } )
if ( HMODULE module = GetModuleHandleW ( DXVersion . c_str ( ) ) ) PcHooks : : hookD3DXFunctions ( module ) ;
else for ( int i = 0 ; i < 50 ; + + i )
if ( HMODULE module = GetModuleHandleW ( ( DXVersion + L " _ " + std : : to_wstring ( i ) ) . c_str ( ) ) ) PcHooks : : hookD3DXFunctions ( module ) ;
2018-09-21 09:17:51 +08:00
if ( GetProcAddress ( ( HMODULE ) processStartAddress , " ?Write@String@v8@@QBEHPAGHHH@Z " ) )
InsertV8Hook ( ( HMODULE ) processStartAddress ) ;
if ( HMODULE module = GetModuleHandleW ( L " node.dll " ) )
InsertV8Hook ( module ) ;
if ( HMODULE module = GetModuleHandleW ( L " nw.dll " ) )
InsertV8Hook ( module ) ;
2016-01-05 23:01:17 +08:00
if ( : : GetModuleHandleA ( " mono.dll " ) ) {
InsertMonoHooks ( ) ;
return true ;
}
// PC games
PcHooks : : hookGDIFunctions ( ) ;
2018-08-26 03:45:25 +08:00
PcHooks : : hookGDIPlusFunctions ( ) ;
2018-08-31 04:09:09 +08:00
const char check [ ] = " sdffffffkjldfjlhjweiumxnvq1204tergdmnxcq1111111111111111111111408t03kxjb40 " ;
2018-09-12 01:40:49 +08:00
Util : : SearchMemory ( ( const BYTE * ) check , sizeof ( check ) ) ; // Not too sure about the stability of this guy, so test it here
2016-01-05 23:01:17 +08:00
return false ;
}
bool DetermineEngineByFile1 ( )
{
2018-07-16 03:37:26 +08:00
// Artikash 7/14/2018: AIRNovel - sample game https://vndb.org/v18814
2018-07-19 00:44:17 +08:00
if ( Util : : CheckFile ( L " *.swf " ) )
2018-07-16 03:37:26 +08:00
{
//InsertAdobeAirHook();
InsertAIRNovelHook ( ) ;
return true ;
}
2018-08-10 03:27:44 +08:00
// Artikash 8/9/2018: Renpy - sample game https://vndb.org/v19843
2018-08-17 07:54:46 +08:00
if ( Util : : CheckFile ( L " *.py " ) )
2018-08-10 03:27:44 +08:00
{
InsertRenpyHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.xp3 " ) | | Util : : SearchResourceString ( L " TVP(KIRIKIRI) " ) ) {
2016-01-05 23:01:17 +08:00
if ( Util : : SearchResourceString ( L " TVP(KIRIKIRI) Z " ) ) { // TVP(KIRIKIRI) Z CORE
// jichi 11/24/2014: Disabled that might crash VBH
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"plugin\\KAGParser.dll"))
2016-01-05 23:01:17 +08:00
// InsertKAGParserHook();
2018-06-15 16:32:35 +08:00
//else if (Util::CheckFile(L"plugin\\KAGParserEx.dll"))
2016-01-05 23:01:17 +08:00
// InsertKAGParserExHook();
if ( InsertKiriKiriZHook ( ) )
return true ;
}
InsertKiriKiriHook ( ) ;
return true ;
}
// 8/2/2014 jichi: Game name shown as 2RM - Adventure Engine, text also in GetGlyphOutlineA
if ( Util : : SearchResourceString ( L " 2RM " ) & & Util : : SearchResourceString ( L " Adventure Engine " ) ) {
Insert2RMHook ( ) ;
return true ;
}
// 8/2/2014 jichi: Copyright is side-B, a conf.dat will be generated after the game is launched
// It also contains lua5.1.dll and lua5.dll
if ( Util : : SearchResourceString ( L " side-B " ) ) {
InsertSideBHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " bgi.* " ) | | Util : : CheckFile ( L " sysgrp.arc " ) ) {
2016-01-05 23:01:17 +08:00
InsertBGIHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Bootup.dat " ) & & InsertBootupHook ( ) ) // 5/22/2015 Bootup
2016-01-05 23:01:17 +08:00
// lstrlenW can also find text with repetition though
return true ;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " AGERC.DLL " ) ) { // 6/1/2014 jichi: Eushully, AGE.EXE
2016-01-05 23:01:17 +08:00
InsertEushullyHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " data*.arc " ) & & Util : : CheckFile ( L " stream*.arc " ) ) {
2016-01-05 23:01:17 +08:00
InsertMajiroHook ( ) ;
return true ;
}
// jichi 5/31/2014
2018-06-15 16:32:35 +08:00
if ( //Util::CheckFile(L"Silkys.exe") || // It might or might not have Silkys.exe
2016-01-05 23:01:17 +08:00
// data, effect, layer, mes, music
2018-06-15 16:32:35 +08:00
Util : : CheckFile ( L " data.arc " ) & & Util : : CheckFile ( L " effect.arc " ) & & Util : : CheckFile ( L " mes.arc " ) ) {
2016-01-05 23:01:17 +08:00
InsertElfHook ( ) ;
return true ;
}
// jichi 6/9/2015: Skip Silkys Sakura
if ( // Almost the same as Silkys except mes.arc is replaced by Script.arc
2018-06-15 16:32:35 +08:00
Util : : CheckFile ( L " data.arc " ) & & Util : : CheckFile ( L " effect.arc " ) & & Util : : CheckFile ( L " Script.arc " ) ) {
2016-01-05 23:01:17 +08:00
InsertSilkysHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " data \\ pack \\ *.cpz " ) ) {
2016-01-05 23:01:17 +08:00
InsertCMVSHook ( ) ;
return true ;
}
// jichi 10/12/2013: Restore wolf engine
// jichi 10/18/2013: Check for data/*.wolf
2018-08-17 07:54:46 +08:00
if ( Util : : CheckFile ( L " data.wolf " ) | | Util : : CheckFile ( L " data \\ *.wolf " ) | | Util : : CheckFile ( L " data \\ basicdata \\ cdatabase.dat " ) ) {
2016-01-05 23:01:17 +08:00
InsertWolfHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " AdvData \\ DAT \\ NAMES.DAT " ) ) {
2016-01-05 23:01:17 +08:00
InsertCircusHook1 ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " AdvData \\ GRP \\ NAMES.DAT " ) ) {
2016-01-05 23:01:17 +08:00
InsertCircusHook2 ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.noa " ) | | Util : : CheckFile ( L " data \\ *.noa " ) ) {
2016-01-05 23:01:17 +08:00
InsertCotophaHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.pfs " ) ) { // jichi 10/1/2013
2016-01-05 23:01:17 +08:00
InsertArtemisHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.int " ) ) {
2016-01-05 23:01:17 +08:00
InsertCatSystemHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " message.dat " ) ) {
2016-01-05 23:01:17 +08:00
InsertAtelierHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Check.mdx " ) ) { // jichi 4/1/2014: AUGame
2016-01-05 23:01:17 +08:00
InsertTencoHook ( ) ;
return true ;
}
// jichi 12/25/2013: It may or may not be QLIE.
// AlterEgo also has GameData/sound.pack but is not QLIE
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " GameData \\ *.pack " ) & & InsertQLIEHook ( ) )
2016-01-05 23:01:17 +08:00
return true ;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " dll \\ Pal.dll " ) ) {
2016-01-05 23:01:17 +08:00
InsertPalHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.pac " ) ) {
2016-01-05 23:01:17 +08:00
// jichi 6/3/2014: AMUSE CRAFT and SOFTPAL
// Selectively insert, so that lstrlenA can still get correct text if failed
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"dll\\resource.dll") && Util::CheckFile(L"dll\\pal.dll") && InsertAmuseCraftHook())
2016-01-05 23:01:17 +08:00
// return true;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Thumbnail.pac " ) ) {
2016-01-05 23:01:17 +08:00
//ConsoleOutput("vnreng: IGNORE NeXAS");
InsertNeXASHook ( ) ; // jichi 7/6/2014: GIGA
return true ;
}
if ( Util : : SearchResourceString ( L " SOFTPAL " ) ) {
ConsoleOutput ( " vnreng: IGNORE SoftPal UNiSONSHIFT " ) ;
return true ;
}
}
// jichi 12/27/2014: LunaSoft
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Pac \\ *.pac " ) ) {
2016-01-05 23:01:17 +08:00
InsertLunaSoftHook ( ) ;
return true ;
}
// jichi 9/16/2013: Add Gesen18
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.szs " ) | | Util : : CheckFile ( L " Data \\ *.szs " ) ) {
2016-01-05 23:01:17 +08:00
InsertUnicornHook ( ) ;
return true ;
}
// jichi 12/22/2013: Add rejet
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " gd.dat " ) & & Util : : CheckFile ( L " pf.dat " ) & & Util : : CheckFile ( L " sd.dat " ) ) {
2016-01-05 23:01:17 +08:00
InsertRejetHook ( ) ;
return true ;
}
// Only examined with version 1.0
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"Adobe AIR\\Versions\\*\\Adobe AIR.dll")) { // jichi 4/15/2014: FIXME: Wildcard not working
if ( Util : : CheckFile ( L " Adobe AIR \\ Versions \\ 1.0 \\ Adobe AIR.dll " ) ) { // jichi 4/15/2014: Adobe AIR
2016-01-05 23:01:17 +08:00
InsertAdobeAirHook ( ) ;
return true ;
}
return false ;
}
bool DetermineEngineByFile2 ( )
{
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " resident.dll " ) ) {
2016-01-05 23:01:17 +08:00
InsertRetouchHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Malie.ini " ) | | Util : : CheckFile ( L " Malie.exe " ) ) { // jichi: 9/9/2014: Add malie.exe in case malie.ini is missing
2016-01-05 23:01:17 +08:00
InsertMalieHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " live.dll " ) ) {
2016-01-05 23:01:17 +08:00
InsertLiveHook ( ) ;
return true ;
}
// 9/5/2013 jichi
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " aInfo.db " ) ) {
2016-01-05 23:01:17 +08:00
InsertNextonHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.lpk " ) ) {
2016-01-05 23:01:17 +08:00
InsertLucifenHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " cfg.pak " ) ) {
2016-01-05 23:01:17 +08:00
InsertWaffleHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Arc00.dat " ) ) {
2016-01-05 23:01:17 +08:00
InsertTinkerBellHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.vfs " ) ) { // jichi 7/6/2014: Better to test AoiLib.dll? ja.wikipedia.org/wiki/ソフトハウスキャラ
2016-01-05 23:01:17 +08:00
InsertSystemAoiHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.mbl " ) ) {
2016-01-05 23:01:17 +08:00
InsertMBLHook ( ) ;
return true ;
}
// jichi 8/1/2014: YU-RIS engine, lots of clockup game also has this pattern
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " pac \\ *.ypf " ) | | Util : : CheckFile ( L " *.ypf " ) ) {
2016-04-10 12:31:20 +08:00
// jichi 8/14/2013: CLOCLUP: "ノーブレスオブリージュ" would crash the game.
2018-06-15 16:32:35 +08:00
if ( ! Util : : CheckFile ( L " noblesse.exe " ) )
2016-01-05 23:01:17 +08:00
InsertYurisHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.npa " ) ) {
2016-01-05 23:01:17 +08:00
InsertNitroplusHook ( ) ;
return true ;
}
return false ;
}
bool DetermineEngineByFile3 ( )
{
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"libscr.dll")) { // already checked
2016-01-05 23:01:17 +08:00
// InsertBrunsHook();
// return true;
//}
// jichi 10/12/2013: Sample args.txt:
// See: http://tieba.baidu.com/p/2631413816
// -workdir
// .
// -loadpath
// .
// am.cfg
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " args.txt " ) ) {
2016-01-05 23:01:17 +08:00
InsertBrunsHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " emecfg.ecf " ) ) {
2016-01-05 23:01:17 +08:00
InsertEMEHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " rrecfg.rcf " ) ) {
2016-01-05 23:01:17 +08:00
InsertRREHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.fpk " ) | | Util : : CheckFile ( L " data \\ *.fpk " ) ) {
2016-01-05 23:01:17 +08:00
InsertCandyHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " arc.a* " ) ) {
2016-01-05 23:01:17 +08:00
InsertApricoTHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.mpk " ) ) {
2016-01-05 23:01:17 +08:00
InsertStuffScriptHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " USRDIR \\ *.mpk " ) ) { // jichi 12/2/2014
2016-12-10 13:26:43 +08:00
InsertStuffScriptHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Execle.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertTriangleHook ( ) ;
return true ;
}
2016-04-10 12:31:20 +08:00
// jichi 2/28/2015: No longer work for "大正×対称アリス episode I" from Primula
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"PSetup.exe")) {
2016-01-05 23:01:17 +08:00
// InsertPensilHook();
// return true;
//}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Yanesdk.dll " ) ) {
2016-01-05 23:01:17 +08:00
InsertAB2TryHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.med " ) ) {
2016-01-05 23:01:17 +08:00
InsertMEDHook ( ) ;
return true ;
}
return false ;
}
bool DetermineEngineByFile4 ( )
{
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " EAGLS.dll " ) ) { // jichi 3/24/2014: E.A.G.L.S
2016-01-05 23:01:17 +08:00
//ConsoleOutput("vnreng: IGNORE EAGLS");
InsertEaglsHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " bmp.pak " ) & & Util : : CheckFile ( L " dsetup.dll " ) ) {
2016-01-05 23:01:17 +08:00
// 1/1/2016 jich: skip izumo4 from studio ego that is not supported by debonosu
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *izumo4*.exe " ) ) {
2018-09-18 07:44:29 +08:00
PcHooks : : hookOtherPcFunctions ( ) ;
2016-01-05 23:01:17 +08:00
return true ;
}
InsertDebonosuHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " C4.EXE " ) | | Util : : CheckFile ( L " XEX.EXE " ) ) {
2016-01-05 23:01:17 +08:00
InsertC4Hook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " Rio.arc " ) & & Util : : CheckFile ( L " Chip*.arc " ) ) {
2016-01-05 23:01:17 +08:00
InsertWillPlusHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.tac " ) ) {
2016-01-05 23:01:17 +08:00
InsertTanukiHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.gxp " ) ) {
2016-01-05 23:01:17 +08:00
InsertGXPHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.aos " ) ) { // jichi 4/2/2014: AOS hook
2016-01-05 23:01:17 +08:00
InsertAOSHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.at2 " ) ) { // jichi 12/23/2014: Mink, sample files: voice.at2, voice.det, voice.nme
2016-01-05 23:01:17 +08:00
InsertMinkHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.ykc " ) ) { // jichi 7/15/2014: YukaSystem1 is not supported, though
2016-01-05 23:01:17 +08:00
//ConsoleOutput("vnreng: IGNORE YKC:Feng/HookSoft(SMEE)");
InsertYukaSystem2Hook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " model \\ *.hed " ) ) { // jichi 9/8/2014: EXP
2016-01-05 23:01:17 +08:00
InsertExpHook ( ) ;
return true ;
}
2016-04-10 12:31:20 +08:00
// jichi 2/6/2015 平安亭
2016-01-05 23:01:17 +08:00
// dPi.dat, dPih.dat, dSc.dat, dSch.dat, dSo.dat, dSoh.dat, dSy.dat
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"dSoh.dat")) { // no idea why this file does not work
if ( Util : : CheckFile ( L " dSch.dat " ) ) {
2016-01-05 23:01:17 +08:00
InsertSyuntadaHook ( ) ;
return true ;
}
// jichi 2/28/2015: Delay checking Pensil in case something went wrong
2016-04-10 12:31:20 +08:00
// File pattern observed in [Primula] 大正×対称アリス episode I
2016-01-05 23:01:17 +08:00
// - PSetup.exe no longer exists
// - MovieTexture.dll information shows MovieTex dynamic library, copyright Pensil 2013
// - ta_trial.exe information shows 2XT - Primula Adventure Engine
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " PSetup.exe " ) | | Util : : CheckFile ( L " PENCIL.* " ) | | Util : : SearchResourceString ( L " 2XT - " ) ) {
2016-01-05 23:01:17 +08:00
InsertPensilHook ( ) ;
return true ;
}
2018-07-16 03:37:26 +08:00
2016-01-05 23:01:17 +08:00
return false ;
}
bool DetermineEngineByProcessName ( )
{
WCHAR str [ MAX_PATH ] ;
2018-07-01 14:08:51 +08:00
wcscpy ( str , processName ) ;
2016-01-05 23:01:17 +08:00
_wcslwr ( str ) ; // lower case
2018-06-15 16:32:35 +08:00
if ( wcsstr ( str , L " reallive " ) | | Util : : CheckFile ( L " Reallive.exe " ) | | Util : : CheckFile ( L " REALLIVEDATA \\ Start.ini " ) ) {
2016-01-05 23:01:17 +08:00
InsertRealliveHook ( ) ;
return true ;
}
2016-04-10 12:31:20 +08:00
// jichi 8/19/2013: DO NOT WORK for games like「ハピメア」
2016-01-05 23:01:17 +08:00
//if (wcsstr(str,L"cmvs32") || wcsstr(str,L"cmvs64")) {
// InsertCMVSHook();
// return true;
//}
// jichi 8/17/2013: Handle "~"
2018-06-15 16:32:35 +08:00
if ( wcsstr ( str , L " siglusengine " ) | | ! wcsncmp ( str , L " siglus~ " , 7 ) | | Util : : CheckFile ( L " SiglusEngine.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertSiglusHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( wcsstr ( str , L " taskforce2 " ) | | ! wcsncmp ( str , L " taskfo~ " , 7 ) | | Util : : CheckFile ( L " Taskforce2.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertTaskforce2Hook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( wcsstr ( str , L " rugp " ) | | Util : : CheckFile ( L " rugp.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertRUGPHook ( ) ;
return true ;
}
// jichi 8/17/2013: Handle "~"
2018-06-15 16:32:35 +08:00
if ( wcsstr ( str , L " igs_sample " ) | | ! wcsncmp ( str , L " igs_sa~ " , 7 ) | | Util : : CheckFile ( L " igs_sample.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertIronGameSystemHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( wcsstr ( str , L " bruns " ) | | Util : : CheckFile ( L " bruns.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertBrunsHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( wcsstr ( str , L " anex86 " ) | | Util : : CheckFile ( L " anex86.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertAnex86Hook ( ) ;
return true ;
}
// jichi 8/17/2013: Handle "~"
2018-06-15 16:32:35 +08:00
if ( wcsstr ( str , L " shinydays " ) | | ! wcsncmp ( str , L " shinyd~ " , 7 ) | | Util : : CheckFile ( L " ShinyDays.exe " ) ) {
2016-01-05 23:01:17 +08:00
InsertShinyDaysGameHook ( ) ;
return true ;
}
2018-07-01 14:08:51 +08:00
if ( wcsstr ( processName , L " SAISYS " ) | | Util : : CheckFile ( L " SaiSys.exe " ) ) { // jichi 4/19/2014: Marine Heart
2016-01-05 23:01:17 +08:00
InsertMarineHeartHook ( ) ;
return true ;
}
DWORD len = wcslen ( str ) ;
// jichi 8/24/2013: Checking for Rio.ini or $procname.ini
//wcscpy(str+len-4, L"_?.war");
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(str)) {
2016-01-05 23:01:17 +08:00
// InsertShinaHook();
// return true;
//}
2018-09-04 06:43:43 +08:00
if ( Util : : CheckFile ( L " *.ini " ) ) {
if ( InsertShinaHook ( ) )
return true ;
}
2016-01-05 23:01:17 +08:00
// jichi 8/10/2013: Since *.bin is common, move CaramelBox to the end
str [ len - 3 ] = L ' b ' ;
str [ len - 2 ] = L ' i ' ;
str [ len - 1 ] = L ' n ' ;
str [ len ] = 0 ;
2018-06-15 16:32:35 +08:00
if ( ( Util : : CheckFile ( str ) | | Util : : CheckFile ( L " trial.bin " ) ) // jichi 7/8/2014: add trial.bin
2016-01-05 23:01:17 +08:00
& & InsertCaramelBoxHook ( ) )
return true ;
// jichi 7/23/2015 It also has gameexe.bin existed
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " configure.cfg " ) & & Util : : CheckFile ( L " gfx.bin " ) ) {
2016-01-05 23:01:17 +08:00
InsertEscudeHook ( ) ;
return true ;
}
// This must appear at last since str is modified
wcscpy ( str + len - 4 , L " _checksum.exe " ) ;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( str ) ) {
2016-01-05 23:01:17 +08:00
InsertRyokuchaHook ( ) ;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.iar " ) & & Util : : CheckFile ( L " *.sec5 " ) ) // jichi 9/27/2014: For new Ryokucha games
2016-01-05 23:01:17 +08:00
InsertScenarioPlayerHook ( ) ;
return true ;
}
return false ;
}
bool DetermineEngineOther ( )
{
if ( InsertAliceHook ( ) )
return true ;
// jichi 1/19/2015: Disable inserting Lstr for System40
// See: http://sakuradite.com/topic/618
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " System40.ini " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE old System40.ini " ) ;
return true ;
}
// jichi 12/26/2013: Add this after alicehook
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " AliceStart.ini " ) ) {
2016-01-05 23:01:17 +08:00
InsertSystem43Hook ( ) ;
return true ;
}
2018-09-13 11:50:02 +08:00
// Artikash 7/16/2018: Uses node/libuv: likely v8 - sample game https://vndb.org/v22975
2018-09-21 09:17:51 +08:00
//if (GetProcAddress(GetModuleHandleW(nullptr), "uv_uptime") || GetModuleHandleW(L"node.dll"))
//{
// InsertV8Hook();
// return true;
//}
2018-07-17 02:04:21 +08:00
2016-01-05 23:01:17 +08:00
// jichi 8/24/2013: Move into functions
2018-06-15 17:51:11 +08:00
// Artikash 6/15/2018: Removed this detection for Abel Software games. IthGetFileInfo no longer works correctly
//static BYTE static_file_info[0x1000];
//if (IthGetFileInfo(L"*01", static_file_info))
// if (*(DWORD*)static_file_info == 0) {
// STATUS_INFO_LENGTH_MISMATCH;
// static WCHAR static_search_name[MAX_PATH];
// LPWSTR name=(LPWSTR)(static_file_info+0x5E);
// int len = wcslen(name);
// name[len-2] = L'.';
// name[len-1] = L'e';
// name[len] = L'x';
// name[len+1] = L'e';
// name[len+2] = 0;
// if (Util::CheckFile(name)) {
// sizeof(FILE_BOTH_DIR_INFORMATION);
// name[len-2] = L'*';
// name[len-1] = 0;
// wcscpy(static_search_name,name);
// IthGetFileInfo(static_search_name,static_file_info);
// union {
// FILE_BOTH_DIR_INFORMATION *both_info;
// DWORD addr;
// };
// both_info = (FILE_BOTH_DIR_INFORMATION *)static_file_info;
// //BYTE* ptr=static_file_info;
// len=0;
// while (both_info->NextEntryOffset) {
// addr += both_info->NextEntryOffset;
// len++;
// }
// if (len > 3) {
// InsertAbelHook();
// return true;
// }
// }
// }
2016-01-05 23:01:17 +08:00
return false ;
}
// jichi 8/17/2014
// Put the patterns that might break other games at last
bool DetermineEngineAtLast ( )
{
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " MovieTexture.dll " ) & & ( InsertPensilHook ( ) | | Insert2RMHook ( ) ) ) // MovieTexture.dll also exists in 2RM games such as 母子愛2体験版, which is checked first
2016-01-05 23:01:17 +08:00
return true ;
2018-06-15 17:51:11 +08:00
if ( ( Util : : CheckFile ( L " system " ) & & Util : : CheckFile ( L " system.dat " ) ) | | Util : : CheckFile ( L " *01 " ) ) { // jichi 7/31/2015 & Artikash 6/15/2018
2016-01-05 23:01:17 +08:00
InsertAbelHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " data \\ *.cpk " ) ) { // jichi 12/2/2014
2016-01-05 23:01:17 +08:00
Insert5pbHook ( ) ;
return true ;
}
// jichi 7/6/2014: named as ScenarioPlayer since resource string could be: scenario player program for xxx
// Do this at last as it is common
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.iar " ) & & Util : : CheckFile ( L " *.sec5 " ) ) { // jichi 4/18/2014: Other game engine could also have *.iar such as Ryokucha
2016-01-05 23:01:17 +08:00
InsertScenarioPlayerHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"arc0.dat") && Util::CheckFile(L"script.dat") // jichi 11/14/2014: too common
2016-01-05 23:01:17 +08:00
if ( Util : : SearchResourceString ( L " HorkEye " ) ) { // appear in copyright: Copyright (C) HorkEye, http://horkeye.com
InsertHorkEyeHook ( ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " comnArc.arc " ) // jichi 8/17/2014: this file might exist in multiple files
2016-01-05 23:01:17 +08:00
& & InsertNexton1Hook ( ) ) // old nexton game
return true ;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " arc.dat " ) // jichi 9/27/2014: too common
2016-01-05 23:01:17 +08:00
& & InsertApricoTHook ( ) )
return true ;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.pak " ) // jichi 12/25/2014: too common
2016-01-05 23:01:17 +08:00
& & InsertLeafHook ( ) )
return true ;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.dat " ) // mireado 08/22/2016: too common
2016-12-10 13:26:43 +08:00
& & InsertNekopackHook ( ) )
return true ;
2016-01-05 23:01:17 +08:00
// jichi 10/31/2014
// File description: Adobe Flash Player 10.2r153
// Product name: Shockwave Flash
// Original filename: SAFlashPlayer.exe
// Legal trademarks: Adobe Flash Player
// No idea why, this must appear at last or it will crash
if ( Util : : SearchResourceString ( L " Adobe Flash Player 10 " ) ) {
InsertAdobeFlash10Hook ( ) ; // only v10 might be supported. Otherwise, fallback to Lstr hooks
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " dat \\ *.arc " ) ) { // jichi 2/6/2015
2016-01-05 23:01:17 +08:00
InsertFocasLensHook ( ) ; // Touhou
return true ;
}
// jichi 8/23/2015: Tamamo
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " data.pck " ) & & Util : : CheckFile ( L " image.pck " ) & & Util : : CheckFile ( L " script.pck " ) ) {
//if (Util::CheckFile(L"QtGui.dll"))
2016-01-05 23:01:17 +08:00
InsertTamamoHook ( ) ;
return true ;
}
return false ;
}
// jichi 6/1/2014
2018-09-04 06:43:43 +08:00
// Artikash 9/3/2018 Hook wchar by default
2018-09-18 07:44:29 +08:00
//bool DetermineEngineGeneric()
//{
// bool ret = false;
//
// //if (Util::CheckFile(L"AlterEgo.exe")) {
// // ConsoleOutput("vnreng: AlterEgo, INSERT WideChar hooks");
// // ret = true;
// //} else if (Util::CheckFile(L"data\\Sky\\*")) {
// // ConsoleOutput("vnreng: TEATIME, INSERT WideChar hooks");
// // ret = true;
// //}
// ////} else if (Util::CheckFile(L"image\\*.po2") || Util::CheckFile(L"image\\*.jo2")) {
// //// ConsoleOutput("vnreng: HarukaKanata, INSERT WideChar hooks"); // はるかかなた
// //// ret = true;
// ////}
// //if (ret)
// // PcHooks::hookWcharFunctions();
// PcHooks::hookWcharFunctions();
// return ret;
//}
2016-01-05 23:01:17 +08:00
bool DetermineNoEngine ( )
{
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"*\\Managed\\UnityEngine.dll")) { // jichi 12/3/2013: Unity (BALDRSKY ZERO)
2016-01-05 23:01:17 +08:00
// ConsoleOutput("vnreng: IGNORE Unity");
// return true;
//}
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"bsz_Data\\Managed\\UnityEngine.dll") || Util::CheckFile(L"bsz2_Data\\Managed\\UnityEngine.dll")) {
2016-01-05 23:01:17 +08:00
// ConsoleOutput("vnreng: IGNORE Unity");
// return true;
//}
// jichi 6/7/2015: RPGMaker v3
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.rgss3a " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE RPGMaker RGSS3 " ) ;
return true ;
}
2016-04-10 12:31:20 +08:00
// jichi 11/22/2015: 凍京NECRO 体験版
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.npk " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE new Nitroplus " ) ;
return true ;
}
// 8/29/2015 jichi: minori, text in GetGlyphOutlineA
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.paz " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE minori " ) ;
return true ;
}
// 7/28/2015 jichi: Favorite games
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.hcb " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE FVP " ) ;
return true ;
}
2016-04-10 12:31:20 +08:00
// jichi 2/14/2015: Guilty+ R I N × S E N (PK)
2018-08-11 15:20:31 +08:00
if ( /*Util::CheckFile(L"rio.ini") || */ Util : : CheckFile ( L " *.war " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE unknown ShinaRio " ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " AdvHD.exe " ) | | Util : : CheckFile ( L " AdvHD.dll " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE Adv Player HD " ) ; // supposed to be WillPlus
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " ScrPlayer.exe " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE ScrPlayer " ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " nnnConfig2.exe " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE Nya NNNConfig " ) ;
return true ;
}
2016-04-10 12:31:20 +08:00
// jichi 4/30/2015: Skip games made from らすこう, such as とある人妻のネトラレ事情
2016-01-05 23:01:17 +08:00
// It has garbage from lstrlenW. Correct text is supposed to be in TabbedTextOutA.
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " data_cg.dpm " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE DPM data_cg.dpm " ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
//if (Util::CheckFile(L"AGERC.DLL")) { // jichi 3/17/2014: Eushully, AGE.EXE
2016-01-05 23:01:17 +08:00
// ConsoleOutput("vnreng: IGNORE Eushully");
// return true;
//}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " game_sys.exe " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE Atelier Kaguya BY/TH " ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " *.bsa " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE Bishop " ) ;
return true ;
}
// jichi 3/19/2014: Escude game
// Example: bgm.bin gfx.bin maou.bin script.bin snd.bin voc.bin
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " gfx.bin " ) & & Util : : CheckFile ( L " snd.bin " ) & & Util : : CheckFile ( L " voc.bin " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE Escude " ) ;
return true ;
}
// jichi 2/18/2015: Ignore if there is Nitro+ copyright
if ( Util : : SearchResourceString ( L " Nitro+ " ) ) {
ConsoleOutput ( " vnreng: IGNORE unknown Nitro+ " ) ;
return true ;
}
// jichi 12/28/2014: "Chartreux Inc." in Copyright.
// Sublimary brands include Rosebleu, MORE, etc.
// GetGlyphOutlineA already works.
if ( Util : : SearchResourceString ( L " Chartreux " ) ) {
ConsoleOutput ( " vnreng: IGNORE Chartreux " ) ;
return true ;
}
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( L " MovieTexture.dll " ) ) {
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE MovieTexture " ) ;
return true ;
}
2018-07-01 14:08:51 +08:00
if ( wcsstr ( processName , L " lcsebody " ) | | ! wcsncmp ( processName , L " lcsebo~ " , 7 ) | | Util : : CheckFile ( L " lcsebody* " ) ) { // jichi 3/19/2014: LC-ScriptEngine, GetGlyphOutlineA
2016-01-05 23:01:17 +08:00
ConsoleOutput ( " vnreng: IGNORE lcsebody " ) ;
return true ;
}
wchar_t str [ MAX_PATH ] ;
DWORD i ;
2018-07-01 14:08:51 +08:00
for ( i = 0 ; processName [ i ] ; i + + ) {
str [ i ] = processName [ i ] ;
if ( processName [ i ] = = L ' . ' )
2016-01-05 23:01:17 +08:00
break ;
}
* ( DWORD * ) ( str + i + 1 ) = 0x630068 ; //.hcb
* ( DWORD * ) ( str + i + 3 ) = 0x62 ;
2018-06-15 16:32:35 +08:00
if ( Util : : CheckFile ( str ) ) {
2016-04-10 12:31:20 +08:00
ConsoleOutput ( " vnreng: IGNORE FVP " ) ; // jichi 10/3/2013: such like アトリエかぐや
2016-01-05 23:01:17 +08:00
return true ;
}
return false ;
}
// jichi 9/14/2013: Certain ITH functions like FindEntryAligned might raise exception without admin priv
// Return if succeeded.
bool UnsafeDetermineEngineType ( )
{
return DeterminePCEngine ( )
| | DetermineEngineByFile1 ( )
| | DetermineEngineByFile2 ( )
| | DetermineEngineByFile3 ( )
| | DetermineEngineByFile4 ( )
| | DetermineEngineByProcessName ( )
| | DetermineEngineOther ( )
| | DetermineEngineAtLast ( )
| | DetermineNoEngine ( )
;
}
// jichi 10/21/2014: Return whether found the game engine
bool DetermineEngineType ( )
{
// jichi 9/27/2013: disable game engine for debugging use
bool found = false ;
2018-09-04 06:43:43 +08:00
# ifndef ITH_DISABLE_ENGINE
2016-01-05 23:01:17 +08:00
__try { found = UnsafeDetermineEngineType ( ) ; }
2019-01-19 12:54:53 +08:00
__except ( EXCEPTION_EXECUTE_HANDLER ) { ConsoleOutput ( HIJACK_ERROR ) ; }
2018-09-04 06:43:43 +08:00
# endif // ITH_DISABLE_ENGINE
2016-01-05 23:01:17 +08:00
if ( ! found ) { // jichi 10/2/2013: Only enable it if no game engine is detected
2018-09-18 07:44:29 +08:00
PcHooks : : hookOtherPcFunctions ( ) ;
2018-06-21 13:39:07 +08:00
} //else
// ConsoleOutput("vnreng: found game engine, IGNORE non gui hooks");
2016-01-05 23:01:17 +08:00
return found ;
}
2018-07-19 11:40:44 +08:00
} // unnamed
2016-01-05 23:01:17 +08:00
2018-07-19 11:40:44 +08:00
DWORD InsertDynamicHook ( LPVOID addr , DWORD frame , DWORD stack )
2016-01-05 23:01:17 +08:00
{
2018-07-19 11:40:44 +08:00
return trigger_fun_ ? ! trigger_fun_ ( addr , frame , stack ) : 0 ;
2016-01-05 23:01:17 +08:00
}
2018-07-19 11:40:44 +08:00
void Hijack ( )
2016-01-05 23:01:17 +08:00
{
2018-07-19 14:02:42 +08:00
static bool hijacked = false ;
if ( hijacked ) return ;
2018-07-19 11:40:44 +08:00
GetModuleFileNameW ( nullptr , processPath , MAX_PATH ) ;
processName = wcsrchr ( processPath , L ' \\ ' ) + 1 ;
2018-08-26 03:45:25 +08:00
: : processStartAddress = : : processStopAddress = ( DWORD ) GetModuleHandleW ( nullptr ) ;
MEMORY_BASIC_INFORMATION info ;
do
{
VirtualQuery ( ( void * ) : : processStopAddress , & info , sizeof ( info ) ) ;
: : processStopAddress = ( DWORD ) info . BaseAddress + info . RegionSize ;
} while ( info . Protect > PAGE_NOACCESS ) ;
processStopAddress - = info . RegionSize ;
2018-07-19 11:40:44 +08:00
DetermineEngineType ( ) ;
2018-07-19 14:02:42 +08:00
hijacked = true ;
2016-01-05 23:01:17 +08:00
}
2018-07-19 11:40:44 +08:00
} // namespace Engine
// - API -
2016-01-05 23:01:17 +08:00
// EOF