update to versioned plugin api
This commit is contained in:
parent
cd0506c955
commit
df2e1d6d42
2
external/CMakeLists.txt
vendored
2
external/CMakeLists.txt
vendored
@ -6,7 +6,7 @@ if (NOT TARGET imgui)
|
|||||||
message("II using FetchContent imgui")
|
message("II using FetchContent imgui")
|
||||||
FetchContent_Declare(imgui
|
FetchContent_Declare(imgui
|
||||||
GIT_REPOSITORY https://github.com/ocornut/imgui.git
|
GIT_REPOSITORY https://github.com/ocornut/imgui.git
|
||||||
GIT_TAG d4ddc46e7
|
GIT_TAG d6cb3c9 # v1.90.1
|
||||||
EXCLUDE_FROM_ALL
|
EXCLUDE_FROM_ALL
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -1,21 +1,20 @@
|
|||||||
#include <solanaceae/plugin/solana_plugin_v1.h>
|
#include <solanaceae/plugin/solana_plugin_v1.h>
|
||||||
|
|
||||||
//#include <solanaceae/util/config_model.hpp>
|
|
||||||
#include <solanaceae/toxic_games/toxic_games.hpp>
|
#include <solanaceae/toxic_games/toxic_games.hpp>
|
||||||
|
#include <solanaceae/toxcore/tox_interface.hpp>
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#define RESOLVE_INSTANCE(x) static_cast<x*>(solana_api->resolveInstance(#x))
|
|
||||||
#define PROVIDE_INSTANCE(x, p, v) solana_api->provideInstance(#x, p, static_cast<x*>(v))
|
|
||||||
|
|
||||||
static std::unique_ptr<ToxicGames> g_tg = nullptr;
|
static std::unique_ptr<ToxicGames> g_tg = nullptr;
|
||||||
|
|
||||||
|
constexpr const char* plugin_name = "ToxicGames";
|
||||||
|
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
||||||
SOLANA_PLUGIN_EXPORT const char* solana_plugin_get_name(void) {
|
SOLANA_PLUGIN_EXPORT const char* solana_plugin_get_name(void) {
|
||||||
return "ToxicGames";
|
return plugin_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_get_version(void) {
|
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_get_version(void) {
|
||||||
@ -23,67 +22,40 @@ SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_get_version(void) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_start(struct SolanaAPI* solana_api) {
|
SOLANA_PLUGIN_EXPORT uint32_t solana_plugin_start(struct SolanaAPI* solana_api) {
|
||||||
std::cout << "PLUGIN TG START()\n";
|
std::cout << "PLUGIN " << plugin_name << " START()\n";
|
||||||
|
|
||||||
if (solana_api == nullptr) {
|
if (solana_api == nullptr) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
//RegistryMessageModel* rmm = nullptr;
|
try {
|
||||||
//ConfigModelI* conf = nullptr;
|
auto* cr = PLUG_RESOLVE_INSTANCE_VERSIONED(Contact3Registry, "1");
|
||||||
Contact3Registry* cr;
|
auto* t = PLUG_RESOLVE_INSTANCE(ToxI);
|
||||||
ToxI* t;
|
auto* tep = PLUG_RESOLVE_INSTANCE(ToxEventProviderI);
|
||||||
ToxEventProviderI* tep;
|
auto* tcm = PLUG_RESOLVE_INSTANCE(ToxContactModel2);
|
||||||
ToxContactModel2* tcm;
|
|
||||||
|
|
||||||
{ // make sure required types are loaded
|
// static store, could be anywhere tho
|
||||||
//rmm = RESOLVE_INSTANCE(RegistryMessageModel);
|
// construct with fetched dependencies
|
||||||
//conf = RESOLVE_INSTANCE(ConfigModelI);
|
g_tg = std::make_unique<ToxicGames>(*cr, *t, *tep, *tcm);
|
||||||
cr = RESOLVE_INSTANCE(Contact3Registry);
|
|
||||||
t = RESOLVE_INSTANCE(ToxI);
|
|
||||||
tep = RESOLVE_INSTANCE(ToxEventProviderI);
|
|
||||||
tcm = RESOLVE_INSTANCE(ToxContactModel2);
|
|
||||||
|
|
||||||
if (cr == nullptr) {
|
// register types
|
||||||
std::cerr << "PLUGIN TG missing Contact3Registry\n";
|
PLUG_PROVIDE_INSTANCE(ToxicGames, plugin_name, g_tg.get());
|
||||||
return 2;
|
} catch (const ResolveException& e) {
|
||||||
}
|
std::cerr << "PLUGIN " << plugin_name << " " << e.what << "\n";
|
||||||
|
return 2;
|
||||||
if (t == nullptr) {
|
|
||||||
std::cerr << "PLUGIN TG missing ToxI\n";
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tep == nullptr) {
|
|
||||||
std::cerr << "PLUGIN TG missing ToxEventProviderI\n";
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tcm == nullptr) {
|
|
||||||
std::cerr << "PLUGIN TG missing ToxContactModel2\n";
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// static store, could be anywhere tho
|
|
||||||
// construct with fetched dependencies
|
|
||||||
g_tg = std::make_unique<ToxicGames>(*cr, *t, *tep, *tcm);
|
|
||||||
|
|
||||||
// register types
|
|
||||||
PROVIDE_INSTANCE(ToxicGames, "ToxicGames", g_tg.get());
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void) {
|
SOLANA_PLUGIN_EXPORT void solana_plugin_stop(void) {
|
||||||
std::cout << "PLUGIN TG STOP()\n";
|
std::cout << "PLUGIN " << plugin_name << " STOP()\n";
|
||||||
|
|
||||||
g_tg.reset();
|
g_tg.reset();
|
||||||
}
|
}
|
||||||
|
|
||||||
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
|
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
|
||||||
(void)delta;
|
(void)delta;
|
||||||
//std::cout << "PLUGIN TG TICK()\n";
|
|
||||||
//g_tg->iterate();
|
//g_tg->iterate();
|
||||||
return std::numeric_limits<float>::max();
|
return std::numeric_limits<float>::max();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user