2020-05-03 10:21:05 +02:00
|
|
|
#pragma once
|
|
|
|
|
2022-02-04 16:25:44 +01:00
|
|
|
#include "plugin/PluginContainer.h"
|
2022-10-05 20:08:49 +02:00
|
|
|
#include <coreinit/dynload.h>
|
|
|
|
#include <map>
|
2022-02-04 16:25:44 +01:00
|
|
|
#include <memory>
|
2023-11-04 15:32:45 +01:00
|
|
|
#include <set>
|
2022-05-14 14:00:20 +02:00
|
|
|
#include <wums/defines/relocation_defines.h>
|
2020-05-03 10:21:05 +02:00
|
|
|
|
|
|
|
class PluginManagement {
|
|
|
|
public:
|
2023-11-04 15:32:45 +01:00
|
|
|
static std::vector<std::unique_ptr<PluginContainer>> loadPlugins(
|
|
|
|
const std::set<std::shared_ptr<PluginData>> &pluginDataList,
|
|
|
|
std::vector<relocation_trampoline_entry_t> &trampolineData);
|
2020-05-03 12:30:15 +02:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
static void callInitHooks(const std::vector<std::unique_ptr<PluginContainer>> &plugins);
|
2020-05-03 10:21:05 +02:00
|
|
|
|
2022-10-05 20:08:49 +02:00
|
|
|
static bool doRelocations(const std::vector<std::unique_ptr<PluginContainer>> &plugins,
|
2023-11-04 15:32:45 +01:00
|
|
|
std::vector<relocation_trampoline_entry_t> &trampData,
|
2022-10-05 20:08:49 +02:00
|
|
|
std::map<std::string, OSDynLoad_Module> &usedRPls);
|
2020-05-03 10:21:05 +02:00
|
|
|
|
2022-10-05 20:08:49 +02:00
|
|
|
static bool doRelocation(const std::vector<std::unique_ptr<RelocationData>> &relocData,
|
2023-11-04 15:32:45 +01:00
|
|
|
std::vector<relocation_trampoline_entry_t> &trampData,
|
2022-10-05 20:08:49 +02:00
|
|
|
uint32_t trampolineID,
|
|
|
|
std::map<std::string, OSDynLoad_Module> &usedRPls);
|
2020-05-03 10:21:05 +02:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
static bool DoFunctionPatches(const std::vector<std::unique_ptr<PluginContainer>> &plugins);
|
2020-05-03 14:16:11 +02:00
|
|
|
|
2022-05-14 14:00:20 +02:00
|
|
|
static bool RestoreFunctionPatches(const std::vector<std::unique_ptr<PluginContainer>> &plugins);
|
2020-05-03 10:21:05 +02:00
|
|
|
};
|