2023-12-15 22:40:11 +01:00
|
|
|
#include <solanaceae/plugin/solana_plugin_v1.h>
|
|
|
|
|
|
|
|
#include "../src/bridge.hpp"
|
|
|
|
|
2024-01-18 18:22:33 +01:00
|
|
|
#include <solanaceae/util/config_model.hpp>
|
2024-01-31 21:32:09 +01:00
|
|
|
#include <solanaceae/message3/message_command_dispatcher.hpp>
|
2024-01-18 18:22:33 +01:00
|
|
|
|
2023-12-15 22:40:11 +01:00
|
|
|
#include <memory>
|
2024-01-07 16:56:39 +01:00
|
|
|
#include <limits>
|
2023-12-15 22:40:11 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
static std::unique_ptr<Bridge> g_bridge = nullptr;
|
|
|
|
|
2024-01-18 18:22:33 +01:00
|
|
|
constexpr const char* plugin_name = "Bridge";
|
|
|
|
|
2023-12-15 22:40:11 +01:00
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
SOLANA_PLUGIN_EXPORT const char* solana_plugin_get_name(void) {
|
2024-01-18 18:22:33 +01:00
|
|
|
return plugin_name;
|
2023-12-15 22:40:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_get_version(void) {
|
|
|
|
return SOLANA_PLUGIN_VERSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_start(struct SolanaAPI* solana_api) {
|
2024-01-18 18:22:33 +01:00
|
|
|
std::cout << "PLUGIN " << plugin_name << " START()\n";
|
2023-12-15 22:40:11 +01:00
|
|
|
|
|
|
|
if (solana_api == nullptr) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-01-18 18:22:33 +01:00
|
|
|
try {
|
|
|
|
auto* cr = PLUG_RESOLVE_INSTANCE_VERSIONED(Contact3Registry, "1");
|
2024-10-06 11:32:19 +02:00
|
|
|
auto* rmm = PLUG_RESOLVE_INSTANCE(RegistryMessageModelI);
|
2024-01-18 18:22:33 +01:00
|
|
|
auto* conf = PLUG_RESOLVE_INSTANCE(ConfigModelI);
|
|
|
|
|
|
|
|
// optional dep
|
|
|
|
auto* mcd = PLUG_RESOLVE_INSTANCE_OPT(MessageCommandDispatcher);
|
2023-12-15 22:40:11 +01:00
|
|
|
|
2024-01-18 18:22:33 +01:00
|
|
|
// static store, could be anywhere tho
|
|
|
|
// construct with fetched dependencies
|
|
|
|
g_bridge = std::make_unique<Bridge>(*cr, *rmm, *conf, mcd);
|
2023-12-15 22:40:11 +01:00
|
|
|
|
2024-01-18 18:22:33 +01:00
|
|
|
// register types
|
|
|
|
PLUG_PROVIDE_INSTANCE(Bridge, plugin_name, g_bridge.get());
|
|
|
|
} catch (const ResolveException& e) {
|
|
|
|
std::cerr << "PLUGIN " << plugin_name << " " << e.what << "\n";
|
|
|
|
return 2;
|
|
|
|
}
|
2023-12-15 22:40:11 +01:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void) {
|
2024-01-18 18:22:33 +01:00
|
|
|
std::cout << "PLUGIN " << plugin_name << " STOP()\n";
|
2023-12-15 22:40:11 +01:00
|
|
|
|
|
|
|
g_bridge.reset();
|
|
|
|
}
|
|
|
|
|
2024-01-18 18:22:33 +01:00
|
|
|
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float time_delta) {
|
|
|
|
g_bridge->iterate(time_delta);
|
2024-01-07 16:56:39 +01:00
|
|
|
|
|
|
|
return std::numeric_limits<float>::max();
|
2023-12-15 22:40:11 +01:00
|
|
|
}
|
|
|
|
|
2024-01-07 16:56:39 +01:00
|
|
|
// no render
|
|
|
|
|
2023-12-15 22:40:11 +01:00
|
|
|
} // extern C
|
|
|
|
|