Skip to content

Commit

Permalink
Update stub plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
s1lentq committed Nov 28, 2023
1 parent 3af3812 commit 0c99300
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 20 deletions.
45 changes: 25 additions & 20 deletions metamod/extra/example/ex_rehlds_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const RehldsFuncs_t* g_RehldsFuncs;
IRehldsHookchains* g_RehldsHookchains;
IRehldsServerStatic* g_RehldsSvs;

bool rehlds_api_try_init(CSysModule* engineModule, char* failureReason)
bool rehlds_api_init(CSysModule* engineModule)
{
if (!engineModule) {
gpMetaUtilFuncs->pfnLogConsole(PLID, "Failed to locate engine module\n");
Expand All @@ -16,27 +16,26 @@ bool rehlds_api_try_init(CSysModule* engineModule, char* failureReason)

CreateInterfaceFn ifaceFactory = Sys_GetFactory(engineModule);
if (!ifaceFactory) {
sprintf(failureReason, "Failed to locate interface factory in engine module\n");
gpMetaUtilFuncs->pfnLogConsole(PLID, "Failed to locate interface factory in engine module\n");
return false;
}

int retCode = 0;
g_RehldsApi = (IRehldsApi*)ifaceFactory(VREHLDS_HLDS_API_VERSION, &retCode);
if (!g_RehldsApi) {
sprintf(failureReason, "Failed to locate retrieve rehlds api interface from engine module, return code is %d\n", retCode);
return false;
}

int majorVersion = g_RehldsApi->GetMajorVersion();
int minorVersion = g_RehldsApi->GetMinorVersion();

if (majorVersion != REHLDS_API_VERSION_MAJOR) {
sprintf(failureReason, "REHLDS Api major version mismatch; expected %d, real %d\n", REHLDS_API_VERSION_MAJOR, majorVersion);
gpMetaUtilFuncs->pfnLogConsole(PLID, "REHLDS Api major version mismatch; expected %d, real %d\n", REHLDS_API_VERSION_MAJOR, majorVersion);
return false;
}

if (minorVersion < REHLDS_API_VERSION_MINOR) {
sprintf(failureReason, "REHLDS Api minor version mismatch; expected at least %d, real %d\n", REHLDS_API_VERSION_MINOR, minorVersion);
gpMetaUtilFuncs->pfnLogConsole(PLID, "REHLDS Api minor version mismatch; expected at least %d, real %d\n", REHLDS_API_VERSION_MINOR, minorVersion);
return false;
}

Expand All @@ -47,25 +46,31 @@ bool rehlds_api_try_init(CSysModule* engineModule, char* failureReason)
return true;
}

bool meta_init_rehlds_api() {
char failReason[2048];

#ifdef WIN32
CSysModule* engineModule = Sys_LoadModule("swds.dll");
if (!rehlds_api_try_init(engineModule, failReason)) {
engineModule = Sys_LoadModule("filesystem_stdio.dll");
if (!rehlds_api_try_init(engineModule, failReason)) {
gpMetaUtilFuncs->pfnLogConsole(PLID, "%s", failReason);
return false;
}
bool meta_init_rehlds_api()
{
#ifdef _WIN32
// Find the most appropriate module handle from a list of DLL candidates
// Notes:
// - "swds.dll" is the library Dedicated Server
//
// Let's also attempt to locate the ReHLDS API in the client's library
// - "sw.dll" is the client library for Software render, with a built-in listenserver
// - "hw.dll" is the client library for Hardware render, with a built-in listenserver
const char *dllNames[] = { "swds.dll", "hw.dll", "sw.dll" }; // List of DLL candidates to lookup for the ReHLDS API
CSysModule *engineModule = NULL; // The module handle of the selected DLL
for (const char *dllName : dllNames)
{
if (engineModule = Sys_GetModuleHandle(dllName))
break; // gotcha
}

#else
CSysModule* engineModule = Sys_LoadModule("engine_i486.so");
if (!rehlds_api_try_init(engineModule, failReason)) {
gpMetaUtilFuncs->pfnLogConsole(PLID, "%s", failReason);
CSysModule *engineModule = Sys_GetModuleHandle("engine_i486.so");
#endif

if (!rehlds_api_init(engineModule)) {
return false;
}
#endif

return true;
}
8 changes: 8 additions & 0 deletions metamod/extra/example/include/hlsdk/public/interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,14 @@ void *Sys_GetProcAddress(void *pModuleHandle, const char *pName)
return GetProcAddress((HMODULE)pModuleHandle, pName);
}

// Purpose: Returns a module handle by its name.
// Input : pModuleName - module name
// Output : the module handle or NULL in case of an error
CSysModule *Sys_GetModuleHandle(const char *pModuleName)
{
return reinterpret_cast<CSysModule *>(GetModuleHandle(pModuleName));
}

// Purpose: Loads a DLL/component from disk and returns a handle to it
// Input : *pModuleName - filename of the component
// Output : opaque handle to the module (hides system dependency)
Expand Down
2 changes: 2 additions & 0 deletions metamod/extra/example/include/hlsdk/public/interface.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ extern CreateInterfaceFn Sys_GetFactory(const char *pModuleName);
// load/unload components
class CSysModule;

extern CSysModule *Sys_GetModuleHandle(const char *pModuleName);

// Load & Unload should be called in exactly one place for each module
// The factory for that module should be passed on to dependent components for
// proper versioning.
Expand Down

0 comments on commit 0c99300

Please sign in to comment.