151 lines
4.2 KiB
C++
151 lines
4.2 KiB
C++
#if defined(PLAYER) || defined(SERVER)
|
|
|
|
#include "Hooks/CRoblox.hpp"
|
|
|
|
bool hasAuthenticationUrl = false;
|
|
bool hasAuthenticationTicket = false;
|
|
bool hasJoinScriptUrl = false;
|
|
|
|
std::wstring authenticationUrl;
|
|
std::wstring authenticationTicket;
|
|
std::wstring joinScriptUrl;
|
|
|
|
#ifdef SERVER
|
|
bool hasJobId = false;
|
|
std::wstring jobId;
|
|
#endif
|
|
|
|
CRobloxApp__InitInstance_t CRobloxApp__InitInstance = (CRobloxApp__InitInstance_t)ADDRESS_CROBLOXAPP__INITINSTANCE;
|
|
CRobloxCommandLineInfo__ParseParam_t CRobloxCommandLineInfo__ParseParam = (CRobloxCommandLineInfo__ParseParam_t)ADDRESS_CROBLOXCOMMANDLINEINFO__PARSEPARAM;
|
|
|
|
BOOL __fastcall CRobloxApp__InitInstance_hook(CRobloxApp* _this)
|
|
{
|
|
if (!CRobloxApp__InitInstance(_this))
|
|
{
|
|
return FALSE;
|
|
}
|
|
|
|
CApp* app = reinterpret_cast<CApp*>(CLASSLOCATION_CAPP);
|
|
|
|
if (hasAuthenticationUrl && hasAuthenticationTicket && !authenticationUrl.empty() && !authenticationTicket.empty())
|
|
{
|
|
CApp__RobloxAuthenticate(app, nullptr, authenticationUrl.c_str(), authenticationTicket.c_str());
|
|
}
|
|
|
|
if (hasJoinScriptUrl && !joinScriptUrl.empty())
|
|
{
|
|
try
|
|
{
|
|
CRobloxDoc* document = CRobloxApp__CreateDocument(_this);
|
|
CWorkspace__ExecUrlScript(document->workspace, joinScriptUrl.c_str(), VARIANT(), VARIANT(), VARIANT(), VARIANT(), nullptr);
|
|
}
|
|
catch (std::runtime_error)
|
|
{
|
|
return FALSE;
|
|
}
|
|
}
|
|
|
|
#ifdef SERVER
|
|
if (!hasAuthenticationUrl || !hasAuthenticationTicket || !hasJoinScriptUrl)
|
|
{
|
|
return FALSE;
|
|
}
|
|
#endif
|
|
|
|
#ifdef PLAYER
|
|
if (!hasAuthenticationUrl || !hasAuthenticationTicket || !hasJoinScriptUrl || !hasJobId)
|
|
{
|
|
ShellExecute(0, 0, L"https://kiseki.lol/games", 0, 0, SW_SHOW);
|
|
return FALSE;
|
|
}
|
|
#endif
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
void __fastcall CRobloxCommandLineInfo__ParseParam_hook(CRobloxCommandLineInfo* _this, void*, const char* pszParam, BOOL bFlag, BOOL bLast)
|
|
{
|
|
if (hasJoinScriptUrl && joinScriptUrl.empty())
|
|
{
|
|
int size = MultiByteToWideChar(CP_ACP, 0, pszParam, strlen(pszParam), nullptr, 0);
|
|
joinScriptUrl.resize(size);
|
|
MultiByteToWideChar(CP_ACP, 0, pszParam, strlen(pszParam), &joinScriptUrl[0], size);
|
|
|
|
_this->m_bRunAutomated = TRUE;
|
|
|
|
CCommandLineInfo__ParseLast(_this, bLast);
|
|
|
|
#ifdef PLAYER
|
|
Discord::Initialize(Helpers::ws2s(joinScriptUrl));
|
|
#endif
|
|
}
|
|
|
|
if (hasAuthenticationUrl && authenticationUrl.empty())
|
|
{
|
|
int size = MultiByteToWideChar(CP_ACP, 0, pszParam, strlen(pszParam), nullptr, 0);
|
|
authenticationUrl.resize(size);
|
|
MultiByteToWideChar(CP_ACP, 0, pszParam, strlen(pszParam), &authenticationUrl[0], size);
|
|
|
|
CCommandLineInfo__ParseLast(_this, bLast);
|
|
return;
|
|
}
|
|
|
|
if (hasAuthenticationTicket && authenticationTicket.empty())
|
|
{
|
|
int size = MultiByteToWideChar(CP_ACP, 0, pszParam, strlen(pszParam), nullptr, 0);
|
|
authenticationTicket.resize(size);
|
|
MultiByteToWideChar(CP_ACP, 0, pszParam, strlen(pszParam), &authenticationTicket[0], size);
|
|
|
|
CCommandLineInfo__ParseLast(_this, bLast);
|
|
return;
|
|
}
|
|
|
|
#ifdef SERVER
|
|
if (hasJobId && jobId.empty())
|
|
{
|
|
int size = MultiByteToWideChar(CP_ACP, 0, pszParam, strlen(pszParam), nullptr, 0);
|
|
jobId.resize(size);
|
|
MultiByteToWideChar(CP_ACP, 0, pszParam, strlen(pszParam), &jobId[0], size);
|
|
|
|
CCommandLineInfo__ParseLast(_this, bLast);
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
if (bFlag && _stricmp(pszParam, "a") == 0)
|
|
{
|
|
hasAuthenticationUrl = true;
|
|
CCommandLineInfo__ParseLast(_this, bLast);
|
|
return;
|
|
}
|
|
|
|
if (bFlag && _stricmp(pszParam, "t") == 0)
|
|
{
|
|
hasAuthenticationTicket = true;
|
|
CCommandLineInfo__ParseLast(_this, bLast);
|
|
return;
|
|
}
|
|
|
|
if (bFlag && _stricmp(pszParam, "j") == 0)
|
|
{
|
|
hasJoinScriptUrl = true;
|
|
CCommandLineInfo__ParseLast(_this, bLast);
|
|
return;
|
|
}
|
|
|
|
#ifdef SERVER
|
|
if (bFlag && _stricmp(pszParam, "jobId") == 0)
|
|
{
|
|
hasJobId = true;
|
|
CCommandLineInfo__ParseLast(_this, bLast);
|
|
|
|
Server::Initialize(jobId);
|
|
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
CRobloxCommandLineInfo__ParseParam(_this, pszParam, bFlag, bLast);
|
|
}
|
|
|
|
#endif |