Adding TokyoNecro matching function
This commit is contained in:
parent
fe3e152553
commit
261da66d74
@ -125,6 +125,7 @@ bool InsertNeXASHook(); // NeXAS: Thumbnail.pac
|
|||||||
bool InsertNextonHook(); // NEXTON: aInfo.db
|
bool InsertNextonHook(); // NEXTON: aInfo.db
|
||||||
bool InsertNexton1Hook();
|
bool InsertNexton1Hook();
|
||||||
bool InsertNitroplusHook(); // Nitroplus: *.npa
|
bool InsertNitroplusHook(); // Nitroplus: *.npa
|
||||||
|
bool InsertTokyoNecroHook(); // Nitroplus TokyoNecro: *.npk, resource string
|
||||||
bool InsertPalHook(); // AMUSE CRAFT: *.pac
|
bool InsertPalHook(); // AMUSE CRAFT: *.pac
|
||||||
bool InsertPensilHook(); // Pensil: PSetup.exe
|
bool InsertPensilHook(); // Pensil: PSetup.exe
|
||||||
bool InsertPONScripterHook();
|
bool InsertPONScripterHook();
|
||||||
|
@ -435,6 +435,23 @@ bool DetermineEngineByFile4()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// jichi 11/22/2015: 凍京NECRO 体験版
|
||||||
|
// Jazzinghen 23/05/2020: Add check for 凍京NECRO
|
||||||
|
// ResEdit shows multiple potential strings:
|
||||||
|
// - TOKYONECRO
|
||||||
|
// - 東京NECRO
|
||||||
|
// - TokyoNecro.exe in "OriginalFilename"
|
||||||
|
if (Util::CheckFile(L"*.npk")) {
|
||||||
|
if (Util::SearchResourceString(L"TOKYONECRO")) {
|
||||||
|
ConsoleOutput("vnreng: Hooking TokyoNecro");
|
||||||
|
InsertTokyoNecroHook();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
ConsoleOutput("vnreng: IGNORE new Nitroplus");
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -709,12 +726,6 @@ bool DetermineNoEngine()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// jichi 11/22/2015: 凍京NECRO 体験版
|
|
||||||
if (Util::CheckFile(L"*.npk")) {
|
|
||||||
ConsoleOutput("vnreng: IGNORE new Nitroplus");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 8/29/2015 jichi: minori, text in GetGlyphOutlineA
|
// 8/29/2015 jichi: minori, text in GetGlyphOutlineA
|
||||||
if (Util::CheckFile(L"*.paz")) {
|
if (Util::CheckFile(L"*.paz")) {
|
||||||
ConsoleOutput("vnreng: IGNORE minori");
|
ConsoleOutput("vnreng: IGNORE minori");
|
||||||
|
Loading…
Reference in New Issue
Block a user