2023-11-02 00:14:34 +01:00
|
|
|
#include <solanaceae/plugin/solana_plugin_v1.h>
|
|
|
|
|
|
|
|
#include <solanaceae/crdtnotes_imgui/crdtnotes_imgui.hpp>
|
|
|
|
#include <imgui.h>
|
|
|
|
|
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>
|
2024-01-07 17:04:49 +01:00
|
|
|
#include <limits>
|
2023-11-02 00:14:34 +01:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
static std::unique_ptr<CRDTNotesImGui> g_crdtn_imgui = nullptr;
|
|
|
|
|
2024-01-18 18:24:52 +01:00
|
|
|
constexpr const char* plugin_name = "CRDTNotesImGui";
|
|
|
|
|
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* crdtns = PLUG_RESOLVE_INSTANCE(CRDTNotesSync);
|
|
|
|
auto* cr = PLUG_RESOLVE_INSTANCE_VERSIONED(Contact3Registry, "1");
|
|
|
|
auto* imguic = PLUG_RESOLVE_INSTANCE_VERSIONED(ImGuiContext, ImGui::GetVersion());
|
2024-05-22 16:06:11 +02:00
|
|
|
auto* imguimemaf = PLUG_RESOLVE_INSTANCE_VERSIONED(ImGuiMemAllocFunc, ImGui::GetVersion());
|
|
|
|
auto* imguimemff = PLUG_RESOLVE_INSTANCE_VERSIONED(ImGuiMemFreeFunc, ImGui::GetVersion());
|
|
|
|
// meh
|
|
|
|
auto* imguimemud = plug_resolveInstanceOptional<void*>(solana_api, "ImGuiMemUserData", ImGui::GetVersion());
|
2023-11-02 00:14:34 +01:00
|
|
|
|
2024-01-18 18:24:52 +01:00
|
|
|
ImGui::SetCurrentContext(imguic);
|
2024-05-22 16:06:11 +02:00
|
|
|
ImGui::SetAllocatorFunctions(imguimemaf, imguimemff, imguimemud);
|
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_imgui = std::make_unique<CRDTNotesImGui>(*crdtns, *cr);
|
2023-11-02 00:14:34 +01:00
|
|
|
|
2024-01-18 18:24:52 +01:00
|
|
|
// register types
|
|
|
|
PLUG_PROVIDE_INSTANCE(CRDTNotesImGui, plugin_name, g_crdtn_imgui.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_imgui.reset();
|
|
|
|
}
|
|
|
|
|
2024-01-07 17:04:49 +01:00
|
|
|
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
|
|
|
|
return std::numeric_limits<float>::max();
|
|
|
|
}
|
|
|
|
|
|
|
|
SOLANA_PLUGIN_EXPORT float solana_plugin_render(float delta) {
|
|
|
|
return g_crdtn_imgui->render();
|
2023-11-02 00:14:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // extern C
|
|
|
|
|