satdump/plugins/eos_support/main.cpp

39 lines
1.2 KiB
C++
Raw Permalink Normal View History

#include "core/plugin.h"
2022-02-21 23:32:11 +01:00
#include "logger.h"
#include "core/module.h"
2022-02-21 23:32:11 +01:00
#include "terra/module_terra_db_demod.h"
#include "aqua/module_aqua_db_decoder.h"
2022-02-28 12:51:55 +01:00
#include "eos/module_eos_instruments.h"
2022-02-21 23:32:11 +01:00
2023-11-21 20:04:39 +01:00
#include "eos/instruments/modis/calibrator/modis_calibrator.h"
2023-11-21 11:28:01 +01:00
2022-02-21 23:32:11 +01:00
class EOSSupport : public satdump::Plugin
{
public:
std::string getID()
{
return "eos_support";
}
void init()
{
satdump::eventBus->register_handler<RegisterModulesEvent>(registerPluginsHandler);
2023-11-21 11:28:01 +01:00
satdump::eventBus->register_handler<satdump::ImageProducts::RequestCalibratorEvent>(provideImageCalibratorHandler);
2022-02-21 23:32:11 +01:00
}
static void registerPluginsHandler(const RegisterModulesEvent &evt)
{
REGISTER_MODULE_EXTERNAL(evt.modules_registry, aqua::AquaDBDecoderModule);
REGISTER_MODULE_EXTERNAL(evt.modules_registry, terra::TerraDBDemodModule);
2022-02-28 12:51:55 +01:00
REGISTER_MODULE_EXTERNAL(evt.modules_registry, eos::instruments::EOSInstrumentsDecoderModule);
2022-02-21 23:32:11 +01:00
}
2023-11-21 11:28:01 +01:00
static void provideImageCalibratorHandler(const satdump::ImageProducts::RequestCalibratorEvent &evt)
{
if (evt.id == "eos_modis")
evt.calibrators.push_back(std::make_shared<eos::modis::EosMODISCalibrator>(evt.calib, evt.products));
}
2022-02-21 23:32:11 +01:00
};
PLUGIN_LOADER(EOSSupport)