2024-11-15 10:19:51 -05:00
|
|
|
#include "core/config.h"
|
2025-05-01 18:50:49 +02:00
|
|
|
#include "core/plugin.h"
|
2022-02-21 23:32:11 +01:00
|
|
|
|
2025-05-01 18:50:49 +02:00
|
|
|
#include "goes/grb/module_goes_grb_cadu_extractor.h"
|
|
|
|
|
#include "goes/grb/module_goes_grb_data_decoder.h"
|
2022-02-21 23:32:11 +01:00
|
|
|
#include "goes/gvar/module_gvar_decoder.h"
|
|
|
|
|
#include "goes/gvar/module_gvar_image_decoder.h"
|
|
|
|
|
#include "goes/hrit/module_goes_lrit_data_decoder.h"
|
2022-08-20 20:22:46 +02:00
|
|
|
#include "goes/mdl/module_goes_mdl_decoder.h"
|
2025-05-01 18:50:49 +02:00
|
|
|
#include "goes/raw/module_goesr_instruments.h"
|
2023-03-08 19:43:11 +01:00
|
|
|
#include "goes/sd/module_goesn_sd_decoder.h"
|
2023-03-09 02:48:06 +01:00
|
|
|
#include "goes/sd/module_sd_image_decoder.h"
|
2024-04-22 12:17:41 +02:00
|
|
|
|
2024-11-15 10:19:51 -05:00
|
|
|
#include "goes/hrit/dcs/dcs_settings.h"
|
|
|
|
|
|
2025-05-23 12:30:42 +02:00
|
|
|
#include "goes/gvar/gvar_calibrator.h"
|
|
|
|
|
|
2022-02-21 23:32:11 +01:00
|
|
|
class GOESSupport : public satdump::Plugin
|
|
|
|
|
{
|
|
|
|
|
public:
|
2025-05-01 18:50:49 +02:00
|
|
|
std::string getID() { return "goes_support"; }
|
2022-02-21 23:32:11 +01:00
|
|
|
|
|
|
|
|
void init()
|
|
|
|
|
{
|
2025-05-31 20:26:47 +02:00
|
|
|
satdump::eventBus->register_handler<satdump::pipeline::RegisterModulesEvent>(registerPluginsHandler);
|
2024-11-15 10:19:51 -05:00
|
|
|
satdump::eventBus->register_handler<satdump::config::RegisterPluginConfigHandlersEvent>(registerConfigHandler);
|
2025-05-23 12:30:42 +02:00
|
|
|
satdump::eventBus->register_handler<satdump::products::RequestImageCalibratorEvent>(provideImageCalibratorHandler);
|
2025-01-03 14:33:53 -05:00
|
|
|
satdump::eventBus->register_handler<goes::hrit::GOESLRITDataDecoderModule::DCPUpdateEvent>(goes::hrit::GOESLRITDataDecoderModule::updateDCPs);
|
2024-11-15 10:19:51 -05:00
|
|
|
goes::hrit::initDcsConfig();
|
2022-02-21 23:32:11 +01:00
|
|
|
}
|
|
|
|
|
|
2025-05-31 20:26:47 +02:00
|
|
|
static void registerPluginsHandler(const satdump::pipeline::RegisterModulesEvent &evt)
|
2022-02-21 23:32:11 +01:00
|
|
|
{
|
|
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::gvar::GVARDecoderModule);
|
|
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::gvar::GVARImageDecoderModule);
|
|
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::hrit::GOESLRITDataDecoderModule);
|
|
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::grb::GOESGRBCADUextractor);
|
|
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::grb::GOESGRBDataDecoderModule);
|
2022-08-20 20:22:46 +02:00
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::mdl::GOESMDLDecoderModule);
|
2023-03-08 19:43:11 +01:00
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::sd::GOESNSDDecoderModule);
|
2023-03-09 02:48:06 +01:00
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::sd::SDImageDecoderModule);
|
2023-08-18 16:38:39 +02:00
|
|
|
REGISTER_MODULE_EXTERNAL(evt.modules_registry, goes::instruments::GOESRInstrumentsDecoderModule);
|
2022-02-21 23:32:11 +01:00
|
|
|
}
|
2024-04-19 12:02:16 +02:00
|
|
|
|
2025-05-23 12:30:42 +02:00
|
|
|
static void provideImageCalibratorHandler(const satdump::products::RequestImageCalibratorEvent &evt)
|
|
|
|
|
{
|
|
|
|
|
if (evt.id == "gvar_imager")
|
|
|
|
|
evt.calibrators.push_back(std::make_shared<goes::gvar::GvarCalibrator>(evt.products, evt.calib));
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-15 10:19:51 -05:00
|
|
|
static void registerConfigHandler(const satdump::config::RegisterPluginConfigHandlersEvent &evt)
|
|
|
|
|
{
|
2025-03-14 11:12:18 +01:00
|
|
|
evt.plugin_config_handlers.push_back({"GOES HRIT DCS Parser", goes::hrit::renderDcsConfig, goes::hrit::saveDcsConfig});
|
2024-11-15 10:19:51 -05:00
|
|
|
}
|
2022-02-21 23:32:11 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
PLUGIN_LOADER(GOESSupport)
|