2023-11-02 00:14:34 +01:00
|
|
|
#include <solanaceae/plugin/solana_plugin_v1.h>
|
|
|
|
|
|
|
|
#include <solanaceae/crdtnotes/crdtnotes.hpp>
|
2023-12-30 18:52:50 +01:00
|
|
|
#include <solanaceae/crdtnotes/crdtnotes_sync.hpp>
|
2023-11-02 00:14:34 +01:00
|
|
|
|
2024-05-19 11:40:54 +02:00
|
|
|
#include <entt/entt.hpp>
|
|
|
|
#include <entt/fwd.hpp>
|
|
|
|
|
2023-11-02 00:14:34 +01:00
|
|
|
#include <memory>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
static std::unique_ptr<CRDTNotes> g_crdtn = nullptr;
|
2023-12-30 18:52:50 +01:00
|
|
|
static std::unique_ptr<CRDTNotesSync> g_crdtns = nullptr;
|
2023-11-02 00:14:34 +01:00
|
|
|
|
2024-01-18 18:24:52 +01:00
|
|
|
constexpr const char* plugin_name = "CRDTNotes";
|
|
|
|
|
2023-11-02 00:14:34 +01:00
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
SOLANA_PLUGIN_EXPORT const char* solana_plugin_get_name(void) {
|
2024-01-18 18:24:52 +01:00
|
|
|
return plugin_name;
|
2023-11-02 00:14:34 +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:24:52 +01:00
|
|
|
std::cout << "PLUGIN " << plugin_name << " START()\n";
|
2023-11-02 00:14:34 +01:00
|
|
|
|
|
|
|
if (solana_api == nullptr) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-01-18 18:24:52 +01:00
|
|
|
try {
|
|
|
|
auto* cr = PLUG_RESOLVE_INSTANCE_VERSIONED(Contact3Registry, "1");
|
2023-11-02 00:14:34 +01:00
|
|
|
|
2024-01-18 18:24:52 +01:00
|
|
|
// static store, could be anywhere tho
|
|
|
|
// construct with fetched dependencies
|
|
|
|
g_crdtn = std::make_unique<CRDTNotes>();
|
|
|
|
g_crdtns = std::make_unique<CRDTNotesSync>(*g_crdtn, *cr);
|
2023-12-31 14:25:56 +01:00
|
|
|
|
2024-01-18 18:24:52 +01:00
|
|
|
// register types
|
|
|
|
PLUG_PROVIDE_INSTANCE(CRDTNotesSync, plugin_name, g_crdtns.get());
|
|
|
|
PLUG_PROVIDE_INSTANCE(CRDTNotesEventI, plugin_name, g_crdtns.get());
|
|
|
|
} catch (const ResolveException& e) {
|
|
|
|
std::cerr << "PLUGIN " << plugin_name << " " << e.what << "\n";
|
|
|
|
return 2;
|
2023-11-02 00:14:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void) {
|
2024-01-18 18:24:52 +01:00
|
|
|
std::cout << "PLUGIN " << plugin_name << " STOP()\n";
|
2023-11-02 00:14:34 +01:00
|
|
|
|
|
|
|
g_crdtn.reset();
|
2023-12-31 14:25:56 +01:00
|
|
|
g_crdtns.reset();
|
2023-11-02 00:14:34 +01:00
|
|
|
}
|
|
|
|
|
2024-01-07 17:04:49 +01:00
|
|
|
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
|
|
|
|
return g_crdtns->iterate(delta);
|
2023-11-02 00:14:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // extern C
|
|
|
|
|