Skip to content

Commit

Permalink
scripts/client: Remove uses of Autohook from scriptbrowserhooks.cpp (
Browse files Browse the repository at this point in the history
…#833)

* Manually hook OpenExternalWebBrowser
* Remove AUTOHOOK_INIT and AUTOHOOK_DISPATCH
  • Loading branch information
ASpoonPlaysGames authored Dec 15, 2024
1 parent feab262 commit 1045478
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions primedev/scripts/client/scriptbrowserhooks.cpp
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@

AUTOHOOK_INIT()

bool* bIsOriginOverlayEnabled;

// clang-format off
AUTOHOOK(OpenExternalWebBrowser, engine.dll + 0x184E40,
void, __fastcall, (char* pUrl, char flags))
// clang-format on
static void(__fastcall* o_pOpenExternalWebBrowser)(char* pUrl, char flags) = nullptr;
static void __fastcall h_OpenExternalWebBrowser(char* pUrl, char flags)
{
bool bIsOriginOverlayEnabledOriginal = *bIsOriginOverlayEnabled;
bool isHttp = !strncmp(pUrl, "http://", 7) || !strncmp(pUrl, "https://", 8);
if (flags & 2 && isHttp) // custom force external browser flag
*bIsOriginOverlayEnabled = false; // if this bool is false, game will use an external browser rather than the origin overlay one

OpenExternalWebBrowser(pUrl, flags);
o_pOpenExternalWebBrowser(pUrl, flags);
*bIsOriginOverlayEnabled = bIsOriginOverlayEnabledOriginal;
}

ON_DLL_LOAD_CLIENT("engine.dll", ScriptExternalBrowserHooks, (CModule module))
{
AUTOHOOK_DISPATCH()
o_pOpenExternalWebBrowser = module.Offset(0x184E40).RCast<decltype(o_pOpenExternalWebBrowser)>();
HookAttach(&(PVOID&)o_pOpenExternalWebBrowser, (PVOID)h_OpenExternalWebBrowser);

bIsOriginOverlayEnabled = module.Offset(0x13978255).RCast<bool*>();
}

0 comments on commit 1045478

Please sign in to comment.