inital commit
This commit is contained in:
44
solanaceae/plugin/plugin_manager.hpp
Normal file
44
solanaceae/plugin/plugin_manager.hpp
Normal file
@@ -0,0 +1,44 @@
|
||||
#pragma once
|
||||
|
||||
#define SOLANA_PLUGIN_HOST
|
||||
#include <solanaceae/plugin/solana_plugin_v1.h>
|
||||
|
||||
#include <solanaceae/plugin/plugin.hpp>
|
||||
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
// TODO: save plug name to instance
|
||||
extern std::map<std::string, void*> g_instance_map;
|
||||
|
||||
extern "C" {
|
||||
|
||||
void* g_resolveInstance__internal(const char* id);
|
||||
|
||||
void g_provideInstance__internal(const char* id, const char* plugin_name, void* instance);
|
||||
|
||||
} // extern C
|
||||
|
||||
// templated helper, use or make sure vtable is right
|
||||
template<typename T>
|
||||
void g_provideInstance(const char* id, const char* plugin_name, T* instance) {
|
||||
g_provideInstance__internal(id, plugin_name, instance);
|
||||
}
|
||||
|
||||
// only on host!
|
||||
struct PluginManager {
|
||||
SolanaAPI _sapi {
|
||||
&g_resolveInstance__internal,
|
||||
&g_provideInstance__internal,
|
||||
};
|
||||
|
||||
std::vector<Plugin> _plugins;
|
||||
|
||||
~PluginManager(void);
|
||||
|
||||
bool add(const std::string& plug_path);
|
||||
|
||||
void tick(float delta);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user