LunaHook-mirror/LunaHook/engine32/Reallive.h
恍兮惚兮 20ce1fa8d0 reallive
2024-09-08 12:39:14 +08:00

51 lines
1.1 KiB
C++
Raw Permalink 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.

class Reallive : public ENGINE
{
public:
Reallive()
{
check_by = CHECK_BY::CUSTOM;
check_by_target = []()
{
return (wcsstr(processName_lower, L"reallive") || Util::CheckFile(L"Reallive.exe") || Util::CheckFile(L"REALLIVEDATA\\Start.ini"));
};
};
bool attach_function();
};
class Reallive_old : public Reallive
{
public:
Reallive_old()
{
// DEVOTE2 いけない放課後
check_by = CHECK_BY::FILE_ALL;
//,L"sys\\*",L"PDT\\*",L"Gameexe.ini"是独有的其他siglus也有
check_by_target = check_by_list{L"G00\\*.g00", L"bgm\\*.nwa", L"koe\\*", L"wav\\*", L"sys\\*", L"PDT\\*", L"Gameexe.ini"};
};
};
class avg3216d : public ENGINE
{
public:
avg3216d()
{
//[980731][13cm] 好き好き大好き!
check_by = CHECK_BY::FILE_ALL;
check_by_target = check_by_list{L"koe\\*.koe", L"PDT\\*.pdt", L"Gameexe.ini"};
};
bool attach_function();
};
class RealliveX : public Reallive
{
public:
RealliveX()
{
// 部分远古版本
check_by = CHECK_BY::RESOURCE_STR;
check_by_target = L"RealLive";
};
};