hs2 plug, rizzler still non functional
This commit is contained in:
@ -19,3 +19,15 @@ target_link_libraries(plugin_ngcft1 PUBLIC
|
||||
|
||||
########################################
|
||||
|
||||
add_library(plugin_ngchs2 MODULE
|
||||
./plugin_ngchs2.cpp
|
||||
)
|
||||
target_compile_features(plugin_ngchs2 PUBLIC cxx_std_17)
|
||||
set_target_properties(plugin_ngchs2 PROPERTIES
|
||||
C_VISIBILITY_PRESET hidden
|
||||
)
|
||||
target_compile_definitions(plugin_ngchs2 PUBLIC ENTT_API_IMPORT)
|
||||
target_link_libraries(plugin_ngchs2 PUBLIC
|
||||
solanaceae_plugin
|
||||
solanaceae_ngchs2
|
||||
)
|
||||
|
77
plugins/plugin_ngchs2.cpp
Normal file
77
plugins/plugin_ngchs2.cpp
Normal file
@ -0,0 +1,77 @@
|
||||
#include <solanaceae/plugin/solana_plugin_v1.h>
|
||||
|
||||
#include <solanaceae/tox_contacts/tox_contact_model2.hpp>
|
||||
|
||||
#include <solanaceae/ngc_ft1/ngcft1.hpp>
|
||||
#include <solanaceae/ngc_hs2/ngc_hs2_sigma.hpp>
|
||||
#include <solanaceae/ngc_hs2/ngc_hs2_rizzler.hpp>
|
||||
|
||||
#include <entt/entt.hpp>
|
||||
#include <entt/fwd.hpp>
|
||||
|
||||
#include <memory>
|
||||
#include <iostream>
|
||||
|
||||
// https://youtu.be/OwT83dN82pc
|
||||
|
||||
static std::unique_ptr<NGCHS2Sigma> g_ngchs2s = nullptr;
|
||||
static std::unique_ptr<NGCHS2Rizzler> g_ngchs2r = nullptr;
|
||||
|
||||
constexpr const char* plugin_name = "NGCHS2";
|
||||
|
||||
extern "C" {
|
||||
|
||||
SOLANA_PLUGIN_EXPORT const char* solana_plugin_get_name(void) {
|
||||
return plugin_name;
|
||||
}
|
||||
|
||||
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) {
|
||||
std::cout << "PLUGIN " << plugin_name << " START()\n";
|
||||
|
||||
if (solana_api == nullptr) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
try {
|
||||
//auto* tox_i = PLUG_RESOLVE_INSTANCE(ToxI);
|
||||
auto* tox_event_provider_i = PLUG_RESOLVE_INSTANCE(ToxEventProviderI);
|
||||
auto* cr = PLUG_RESOLVE_INSTANCE_VERSIONED(Contact3Registry, "1");
|
||||
auto* rmm = PLUG_RESOLVE_INSTANCE(RegistryMessageModelI);
|
||||
auto* tcm = PLUG_RESOLVE_INSTANCE(ToxContactModel2);
|
||||
auto* ngcft1 = PLUG_RESOLVE_INSTANCE(NGCFT1);
|
||||
|
||||
// static store, could be anywhere tho
|
||||
// construct with fetched dependencies
|
||||
g_ngchs2s = std::make_unique<NGCHS2Sigma>(*cr, *rmm, *tcm, *ngcft1);
|
||||
g_ngchs2r = std::make_unique<NGCHS2Rizzler>(*cr, *rmm, *tcm, *ngcft1, *tox_event_provider_i);
|
||||
|
||||
// register types
|
||||
PLUG_PROVIDE_INSTANCE(NGCHS2Sigma, plugin_name, g_ngchs2s.get());
|
||||
PLUG_PROVIDE_INSTANCE(NGCHS2Rizzler, plugin_name, g_ngchs2r.get());
|
||||
} catch (const ResolveException& e) {
|
||||
std::cerr << "PLUGIN " << plugin_name << " " << e.what << "\n";
|
||||
return 2;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void) {
|
||||
std::cout << "PLUGIN " << plugin_name << " STOP()\n";
|
||||
|
||||
g_ngchs2r.reset();
|
||||
g_ngchs2s.reset();
|
||||
}
|
||||
|
||||
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
|
||||
const float sigma_interval = g_ngchs2s->iterate(delta);
|
||||
const float rizzler_interval = g_ngchs2r->iterate(delta);
|
||||
return std::min<float>(sigma_interval, rizzler_interval);
|
||||
}
|
||||
|
||||
} // extern C
|
||||
|
Reference in New Issue
Block a user