This commit is contained in:
恍兮惚兮 2024-11-29 11:46:13 +08:00
parent 2e06adddbd
commit 5c27c1114a
3 changed files with 100 additions and 1 deletions

View File

@ -138,12 +138,46 @@ bool Hook_Network_RoomMember_SendGameInfo()
}
return false;
}
namespace
{
void trygetgameinwindowtitle()
{
auto getSecondSubstring = [](const std::wstring &str) -> std::wstring
{
size_t firstPos = str.find(L'|');
if (firstPos == std::wstring::npos)
return L"";
size_t lastPos = str.rfind(L'|');
if (lastPos == std::wstring::npos)
return L"";
lastPos = str.rfind(L'|', lastPos - 1);
if (lastPos == std::wstring::npos)
return L"";
lastPos = str.rfind(L'(', lastPos - 1);
if (lastPos == std::wstring::npos)
return L"";
size_t start = firstPos + 1;
size_t end = lastPos;
return str.substr(start, end - start);
};
auto wininfos = get_proc_windows();
for (auto &&info : wininfos)
{
auto game = getSecondSubstring(info.title);
if (game.size())
{
return HostInfo(HOSTINFO::EmuGameName, WideStringToString(game).c_str());
}
}
}
}
bool yuzu::attach_function()
{
ConsoleOutput("[Compatibility] Yuzu 1616+");
auto DoJitPtr = getDoJitAddress();
if (!DoJitPtr)
return false;
trygetgameinwindowtitle();
Hook_Network_RoomMember_SendGameInfo();
spDefault.isjithook = true;
spDefault.minAddress = 0;

View File

@ -530,11 +530,23 @@ namespace ppsspp
};
NewHook(hp, "PPSSPPGameInfo");
}
void trygetgameinwindowtitle()
{
auto wininfos = get_proc_windows();
for (auto &&info : wininfos)
{
if (info.title.find(L'-') != info.title.npos)
{
return HostInfo(HOSTINFO::EmuGameName, WideStringToString(info.title.substr(info.title.find(L'-') + 1)).c_str());
}
}
}
bool hookPPSSPPDoJit()
{
auto DoJitPtr = getDoJitAddress();
if (!DoJitPtr)
return false;
trygetgameinwindowtitle();
Load_PSP_ISO_StringFromFormat();
spDefault.isjithook = true;
spDefault.minAddress = 0;

View File

@ -168,7 +168,6 @@ namespace ppsspp
return s;
}
}
void ULJM05428(hook_stack *stack, HookParam *hp, TextBuffer *buffer, uintptr_t *split)
{
auto address = PPSSPP::emu_arg(stack)[1];
@ -368,6 +367,48 @@ namespace ppsspp
s = std::regex_replace(s, std::regex("(#[A-Za-z]+\\[(\\d*[.])?\\d+\\])+"), "");
buffer->from(s);
}
void ULJM06040_2(TextBuffer *buffer, HookParam *hp)
{
auto s = buffer->strA();
s = std::regex_replace(s, std::regex(R"(\x81k(.*?)\x81l(.*))"), "$1");
buffer->from(s);
}
void ULJM06040_1(TextBuffer *buffer, HookParam *hp)
{
StringFilter(buffer, "%K%P", 4);
StringFilterBetween(buffer, "\x81k", 2, "\x81l", 2);
StringReplacer(buffer, "\x84\xa5", 2, "\x81\x5b", 2);
StringReplacer(buffer, "\x84\xa7", 2, "\x81\x5b", 2);
auto s = buffer->strA();
s = std::regex_replace(s, std::regex(R"(\{(.*?)\}\[(.*?)\])"), "$1");
buffer->from(s);
}
void ULJS00169(TextBuffer *buffer, HookParam *hp)
{
CharFilter(buffer, '\n');
static std::string last;
auto s = buffer->strA();
if (s == last)
return buffer->clear();
last = s;
}
void ULJM05456(TextBuffer *buffer, HookParam *hp)
{
static std::string last;
auto s = buffer->strA();
if (endWith(last, s))
{
buffer->clear();
last = s;
}
else
{
last = s;
s = s.substr(0, s.size() - 1);
s = std::regex_replace(s, std::regex(R"(\$\w\d{5})"), "$1");
buffer->from(s);
}
}
void NPJH50380(TextBuffer *buffer, HookParam *hp)
{
static std::wstring last;
@ -531,6 +572,18 @@ namespace ppsspp
{0x885B7BC, {0, 0, 0, 0, ULJM05823_1, "ULJM06048"}}, // name+text
// サモンナイト3
{0x89DCF90, {0, 6, 0, 0, NPJH50380, "NPJH50380"}},
// Steins;Gate 比翼恋理のだーりん
{0x8856968, {0, 4, 0, 0, ULJM06040_1, "ULJM06040"}},
{0x889AD70, {0, 1, 0, 0, ULJM06040_2, "ULJM06040"}},
// 鋼鉄のガールフレンド特別編ポータブル
{0x882AAA4, {0, 1, 0, 0, ULJM05456, "ULJM05456"}},
// アイドルマスターSP パーフェクトサン
{0x8951A7C, {0, 1, 0, 0, ULJS00169, "ULJS00167"}},
// アイドルマスターSP ワンダリングスター
{0x8955E54, {0, 0, 0, 0, ULJS00169, "ULJS00168"}},
// アイドルマスターSP ミッシングムーン
{0x8951AE0, {0, 1, 0, 0, ULJS00169, "ULJS00169"}},
};
}