move in plugins, external still missing
This commit is contained in:
parent
6a48ace06f
commit
d948897c3e
@ -1,22 +1,72 @@
|
|||||||
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
|
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
|
||||||
|
|
||||||
project(solanaceae)
|
# cmake setup begin
|
||||||
|
project(solanaceae_zox)
|
||||||
|
|
||||||
add_library(solanaceae_zox
|
if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR)
|
||||||
./solanaceae/zox/ngc.hpp
|
set(SOLANACEAE_ZOX_STANDALONE ON)
|
||||||
./solanaceae/zox/ngc.cpp
|
else()
|
||||||
|
set(SOLANACEAE_ZOX_STANDALONE OFF)
|
||||||
|
endif()
|
||||||
|
message("II SOLANACEAE_ZOX_STANDALONE " ${SOLANACEAE_ZOX_STANDALONE})
|
||||||
|
|
||||||
./solanaceae/zox/ngc_hs.hpp
|
option(SOLANACEAE_ZOX_BUILD_PLUGINS "Build the zox plugins" ${SOLANACEAE_ZOX_STANDALONE})
|
||||||
./solanaceae/zox/ngc_hs.cpp
|
|
||||||
)
|
|
||||||
|
|
||||||
target_include_directories(solanaceae_zox PUBLIC .)
|
if (SOLANACEAE_ZOX_STANDALONE)
|
||||||
target_compile_features(solanaceae_zox PUBLIC cxx_std_17)
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
||||||
target_link_libraries(solanaceae_zox PUBLIC
|
|
||||||
solanaceae_util
|
# defaulting to debug mode, if not specified
|
||||||
solanaceae_message3
|
if(NOT CMAKE_BUILD_TYPE)
|
||||||
solanaceae_toxcore
|
set(CMAKE_BUILD_TYPE "Debug")
|
||||||
solanaceae_tox_contacts
|
endif()
|
||||||
solanaceae_tox_messages
|
|
||||||
)
|
# setup my vim ycm :D
|
||||||
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||||
|
|
||||||
|
# more paths
|
||||||
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib")
|
||||||
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
|
||||||
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# external libs
|
||||||
|
#add_subdirectory(./external EXCLUDE_FROM_ALL) # before increasing warn levels, sad :(
|
||||||
|
|
||||||
|
if (SOLANACEAE_ZOX_STANDALONE)
|
||||||
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
||||||
|
|
||||||
|
# bump up warning levels appropriately for clang, gcc & msvc
|
||||||
|
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang")
|
||||||
|
add_compile_options(
|
||||||
|
-Wall -Wextra # Reasonable and standard
|
||||||
|
-Wpedantic # Warn if non-standard C++ is used
|
||||||
|
-Wunused # Warn on anything being unused
|
||||||
|
#-Wconversion # Warn on type conversions that may lose data
|
||||||
|
#-Wsign-conversion # Warn on sign conversions
|
||||||
|
-Wshadow # Warn if a variable declaration shadows one from a parent context
|
||||||
|
)
|
||||||
|
|
||||||
|
if (NOT WIN32)
|
||||||
|
#link_libraries(-fsanitize=address)
|
||||||
|
#link_libraries(-fsanitize=address,undefined)
|
||||||
|
#link_libraries(-fsanitize-address-use-after-scope)
|
||||||
|
#link_libraries(-fsanitize=undefined)
|
||||||
|
endif()
|
||||||
|
elseif (${CMAKE_CXX_COMPILER_ID} STREQUAL "MSVC")
|
||||||
|
if (CMAKE_CXX_FLAGS MATCHES "/W[0-4]")
|
||||||
|
string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
|
||||||
|
else()
|
||||||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# cmake setup end
|
||||||
|
|
||||||
|
add_subdirectory(./src)
|
||||||
|
|
||||||
|
if (SOLANACEAE_ZOX_BUILD_PLUGINS)
|
||||||
|
add_subdirectory(./plugins)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
23
plugins/CMakeLists.txt
Normal file
23
plugins/CMakeLists.txt
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.14...3.24 FATAL_ERROR)
|
||||||
|
|
||||||
|
add_library(plugin_zox_ngc SHARED
|
||||||
|
./plugin_zox_ngc.cpp
|
||||||
|
)
|
||||||
|
set_property(TARGET plugin_zox_ngc PROPERTY C_VISIBILITY_PRESET hidden)
|
||||||
|
|
||||||
|
target_link_libraries(plugin_zox_ngc PUBLIC
|
||||||
|
solanaceae_plugin
|
||||||
|
solanaceae_zox
|
||||||
|
)
|
||||||
|
|
||||||
|
########################################
|
||||||
|
|
||||||
|
add_library(plugin_zox_ngc_hs SHARED
|
||||||
|
./plugin_zox_ngc_hs.cpp
|
||||||
|
)
|
||||||
|
set_property(TARGET plugin_zox_ngc_hs PROPERTY C_VISIBILITY_PRESET hidden)
|
||||||
|
|
||||||
|
target_link_libraries(plugin_zox_ngc_hs PUBLIC
|
||||||
|
solanaceae_plugin
|
||||||
|
solanaceae_zox
|
||||||
|
)
|
59
plugins/plugin_zox_ngc.cpp
Normal file
59
plugins/plugin_zox_ngc.cpp
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
#include <solanaceae/plugin/solana_plugin_v1.h>
|
||||||
|
|
||||||
|
#include <solanaceae/zox/ngc.hpp>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <limits>
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
static std::unique_ptr<ZoxNGCEventProvider> g_zngc = nullptr;
|
||||||
|
|
||||||
|
constexpr const char* plugin_name = "ZoxNGC";
|
||||||
|
|
||||||
|
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_event_provider_i = PLUG_RESOLVE_INSTANCE(ToxEventProviderI);
|
||||||
|
|
||||||
|
// static store, could be anywhere tho
|
||||||
|
// construct with fetched dependencies
|
||||||
|
g_zngc = std::make_unique<ZoxNGCEventProvider>(*tox_event_provider_i);
|
||||||
|
|
||||||
|
// register types
|
||||||
|
PLUG_PROVIDE_INSTANCE(ZoxNGCEventProviderI, plugin_name, g_zngc.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_zngc.reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
|
||||||
|
(void)delta;
|
||||||
|
return std::numeric_limits<float>::max();
|
||||||
|
}
|
||||||
|
|
||||||
|
} // extern C
|
||||||
|
|
65
plugins/plugin_zox_ngc_hs.cpp
Normal file
65
plugins/plugin_zox_ngc_hs.cpp
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#include <solanaceae/plugin/solana_plugin_v1.h>
|
||||||
|
|
||||||
|
#include <solanaceae/zox/ngc.hpp>
|
||||||
|
#include <solanaceae/zox/ngc_hs.hpp>
|
||||||
|
#include <solanaceae/toxcore/tox_interface.hpp>
|
||||||
|
#include <solanaceae/tox_contacts/tox_contact_model2.hpp>
|
||||||
|
|
||||||
|
#include <memory>
|
||||||
|
#include <iostream>
|
||||||
|
|
||||||
|
static std::unique_ptr<ZoxNGCHistorySync> g_zngchs = nullptr;
|
||||||
|
|
||||||
|
constexpr const char* plugin_name = "ZoxNGCHistorySync";
|
||||||
|
|
||||||
|
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* zox_ngc_event_provider_i = PLUG_RESOLVE_INSTANCE(ZoxNGCEventProviderI);
|
||||||
|
auto* cr = PLUG_RESOLVE_INSTANCE_VERSIONED(Contact3Registry, "1");
|
||||||
|
auto* tcm = PLUG_RESOLVE_INSTANCE(ToxContactModel2);
|
||||||
|
auto* rmm = PLUG_RESOLVE_INSTANCE(RegistryMessageModel);
|
||||||
|
|
||||||
|
// static store, could be anywhere tho
|
||||||
|
// construct with fetched dependencies
|
||||||
|
g_zngchs = std::make_unique<ZoxNGCHistorySync>(*tox_event_provider_i, *zox_ngc_event_provider_i, *tox_i, *cr, *tcm, *rmm);
|
||||||
|
|
||||||
|
// register types
|
||||||
|
PLUG_PROVIDE_INSTANCE(ZoxNGCHistorySync, plugin_name, g_zngchs.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_zngchs.reset();
|
||||||
|
}
|
||||||
|
|
||||||
|
SOLANA_PLUGIN_EXPORT float solana_plugin_tick(float delta) {
|
||||||
|
return g_zngchs->tick(delta);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // extern C
|
||||||
|
|
19
src/CMakeLists.txt
Normal file
19
src/CMakeLists.txt
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
add_library(solanaceae_zox
|
||||||
|
./solanaceae/zox/ngc.hpp
|
||||||
|
./solanaceae/zox/ngc.cpp
|
||||||
|
|
||||||
|
# TODO: seperate out
|
||||||
|
./solanaceae/zox/ngc_hs.hpp
|
||||||
|
./solanaceae/zox/ngc_hs.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
target_include_directories(solanaceae_zox PUBLIC .)
|
||||||
|
target_compile_features(solanaceae_zox PUBLIC cxx_std_17)
|
||||||
|
target_link_libraries(solanaceae_zox PUBLIC
|
||||||
|
solanaceae_util
|
||||||
|
solanaceae_message3
|
||||||
|
solanaceae_toxcore
|
||||||
|
solanaceae_tox_contacts
|
||||||
|
solanaceae_tox_messages
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user