mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
191 lines
5.6 KiB
C++
191 lines
5.6 KiB
C++
//=============================================================================//
|
|
//
|
|
// Purpose: plugin system that manages plugins!
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
//
|
|
//=============================================================================//
|
|
|
|
#include "core/stdafx.h"
|
|
#include "pluginsystem.h"
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: initialize the plugin system
|
|
// Input :
|
|
//-----------------------------------------------------------------------------
|
|
void CPluginSystem::PluginSystem_Init()
|
|
{
|
|
CreateDirectories("bin\\x64_retail\\plugins");
|
|
|
|
for (auto& it : fs::directory_iterator("bin\\x64_retail\\plugins"))
|
|
{
|
|
if (!fs::is_regular_file(it))
|
|
continue;
|
|
|
|
if (auto path = it.path(); path.has_filename() && path.has_extension() && path.extension().compare(".dll") == 0)
|
|
{
|
|
bool addInstance = true;
|
|
for (auto& inst : pluginInstances)
|
|
{
|
|
if (inst.m_svPluginFullPath.compare(path.u8string()) == 0)
|
|
addInstance = false;
|
|
}
|
|
|
|
if (addInstance)
|
|
pluginInstances.push_back(PluginInstance_t(path.filename().u8string(), path.u8string()));
|
|
}
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: load a plugin instance
|
|
// Input : pluginInst* -
|
|
// Output : bool
|
|
//-----------------------------------------------------------------------------
|
|
bool CPluginSystem::LoadPluginInstance(PluginInstance_t& pluginInst)
|
|
{
|
|
if (pluginInst.m_bIsLoaded)
|
|
return false;
|
|
|
|
HMODULE loadedPlugin = LoadLibraryA(pluginInst.m_svPluginFullPath.c_str());
|
|
if (loadedPlugin == INVALID_HANDLE_VALUE || loadedPlugin == 0)
|
|
return false;
|
|
|
|
CModule pluginModule = CModule(pluginInst.m_svPluginName);
|
|
|
|
// Pass selfModule here on load function, we have to do this because local listen/dedi/client dll's are called different, refer to a comment on the pluginsdk.
|
|
auto onLoadFn = pluginModule.GetExportedFunction("PluginInstance_OnLoad").RCast<PluginInstance_t::OnLoad>();
|
|
Assert(onLoadFn);
|
|
|
|
if (!onLoadFn(pluginInst.m_svPluginName.c_str()))
|
|
{
|
|
FreeLibrary(loadedPlugin);
|
|
return false;
|
|
}
|
|
|
|
pluginInst.m_hModule = pluginModule;
|
|
|
|
return pluginInst.m_bIsLoaded = true;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: unload a plugin instance
|
|
// Input : pluginInst* -
|
|
// Output : bool
|
|
//-----------------------------------------------------------------------------
|
|
bool CPluginSystem::UnloadPluginInstance(PluginInstance_t& pluginInst)
|
|
{
|
|
if (!pluginInst.m_bIsLoaded)
|
|
return false;
|
|
|
|
auto onUnloadFn = pluginInst.m_hModule.GetExportedFunction("PluginInstance_OnUnload").RCast<PluginInstance_t::OnUnload>();
|
|
Assert(onUnloadFn);
|
|
|
|
if (onUnloadFn)
|
|
onUnloadFn();
|
|
|
|
bool unloadOk = FreeLibrary((HMODULE)pluginInst.m_hModule.GetModuleBase());
|
|
Assert(unloadOk);
|
|
|
|
pluginInst.m_bIsLoaded = false;
|
|
|
|
return unloadOk;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: reload a plugin instance
|
|
// Input : pluginInst* -
|
|
// Output : bool
|
|
//-----------------------------------------------------------------------------
|
|
bool CPluginSystem::ReloadPluginInstance(PluginInstance_t& pluginInst)
|
|
{
|
|
return UnloadPluginInstance(pluginInst) ? LoadPluginInstance(pluginInst) : false;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: get all plugin instances
|
|
// Input :
|
|
// Output : vector<CPluginSystem::PluginInstance>&
|
|
//-----------------------------------------------------------------------------
|
|
vector<CPluginSystem::PluginInstance_t>& CPluginSystem::GetPluginInstances()
|
|
{
|
|
return pluginInstances;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: add plugin callback for function
|
|
// Input : *help
|
|
// Output : void
|
|
//-----------------------------------------------------------------------------
|
|
void CPluginSystem::AddPluginCallback(PluginHelpWithAnything_t* help)
|
|
{
|
|
#define ADD_PLUGIN_CALLBACK(fn, callback, function) callback += reinterpret_cast<fn>(function)
|
|
|
|
switch (help->m_nCallbackID)
|
|
{
|
|
case PluginHelpWithAnything_t::ePluginCallback::CModAppSystemGroup_Create:
|
|
{
|
|
ADD_PLUGIN_CALLBACK(CreateFn, GetCreateCallbacks(), help->m_pFunction);
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
|
|
#undef ADD_PLUGIN_CALLBACK
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: remove plugin callback for function
|
|
// Input : *help
|
|
// Output : void
|
|
//-----------------------------------------------------------------------------
|
|
void CPluginSystem::RemovePluginCallback(PluginHelpWithAnything_t* help)
|
|
{
|
|
#define REMOVE_PLUGIN_CALLBACK(fn, callback, function) callback -= reinterpret_cast<fn>(function)
|
|
|
|
switch (help->m_nCallbackID)
|
|
{
|
|
case PluginHelpWithAnything_t::ePluginCallback::CModAppSystemGroup_Create:
|
|
{
|
|
REMOVE_PLUGIN_CALLBACK(CreateFn, GetCreateCallbacks(), help->m_pFunction);
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
|
|
#undef REMOVE_PLUGIN_CALLBACK
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Purpose: help plugins with anything
|
|
// Input : *help
|
|
// Output : void*
|
|
//-----------------------------------------------------------------------------
|
|
void* CPluginSystem::HelpWithAnything(PluginHelpWithAnything_t* help)
|
|
{
|
|
switch (help->m_nHelpID)
|
|
{
|
|
case PluginHelpWithAnything_t::ePluginHelp::PLUGIN_GET_FUNCTION:
|
|
{
|
|
break;
|
|
}
|
|
case PluginHelpWithAnything_t::ePluginHelp::PLUGIN_REGISTER_CALLBACK:
|
|
{
|
|
AddPluginCallback(help);
|
|
break;
|
|
}
|
|
case PluginHelpWithAnything_t::ePluginHelp::PLUGIN_UNREGISTER_CALLBACK:
|
|
{
|
|
RemovePluginCallback(help);
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
CPluginSystem* g_pPluginSystem = new CPluginSystem(); |