mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-07 19:35:32 +08:00
refs #366, passing Simulator plugin info to drivers
Add. some finetuning
This commit is contained in:
@@ -32,8 +32,8 @@ using namespace BlackMisc::Simulation::Settings;
|
||||
namespace BlackCore
|
||||
{
|
||||
CContextSimulator::CContextSimulator(CRuntimeConfig::ContextMode mode, CRuntime *runtime) :
|
||||
IContextSimulator(mode, runtime),
|
||||
m_mapper(new QSignalMapper(this))
|
||||
IContextSimulator(mode, runtime),
|
||||
m_mapper(new QSignalMapper(this))
|
||||
{
|
||||
findSimulatorPlugins();
|
||||
// Maps listener instance
|
||||
@@ -45,13 +45,12 @@ namespace BlackCore
|
||||
disconnectFromSimulator();
|
||||
unloadSimulatorPlugin();
|
||||
}
|
||||
|
||||
|
||||
ISimulatorFactory *CContextSimulator::getSimulatorFactory(const CSimulatorPluginInfo &simulator)
|
||||
{
|
||||
PluginData *plugin = findPlugin(simulator);
|
||||
if (!plugin)
|
||||
return nullptr;
|
||||
|
||||
if (!plugin) { return nullptr; }
|
||||
|
||||
if (!plugin->factory)
|
||||
{
|
||||
QPluginLoader loader(plugin->fileName);
|
||||
@@ -62,14 +61,16 @@ namespace BlackCore
|
||||
if (factory)
|
||||
{
|
||||
plugin->factory = factory;
|
||||
CLogMessage(this).debug() << "Loaded plugin: " << plugin->info.toQString();
|
||||
CLogMessage(this).info("Loaded driver: %1") << plugin->info.toQString();
|
||||
}
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
QString errorMsg = loader.errorString().append(" ").append("Also check if required dll/libs of plugin exists");
|
||||
CLogMessage(this).error(errorMsg);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return plugin->factory;
|
||||
}
|
||||
|
||||
@@ -77,11 +78,11 @@ namespace BlackCore
|
||||
{
|
||||
CSimulatorPluginInfoList list;
|
||||
|
||||
std::for_each(m_simulatorPlugins.begin(), m_simulatorPlugins.end(), [&list](const PluginData &driver)
|
||||
std::for_each(m_simulatorPlugins.begin(), m_simulatorPlugins.end(), [&list](const PluginData & driver)
|
||||
{
|
||||
list.push_back(driver.info);
|
||||
});
|
||||
|
||||
|
||||
return list;
|
||||
}
|
||||
|
||||
@@ -349,7 +350,7 @@ namespace BlackCore
|
||||
Q_ASSERT(!simulatorInfo.isUnspecified());
|
||||
|
||||
// warning if we do not have any plugins
|
||||
if (m_simulatorPlugins.isEmpty())
|
||||
if (m_simulatorPlugins.isEmpty() || simulatorInfo.isUnspecified())
|
||||
{
|
||||
CLogMessage(this).error("No simulator plugins");
|
||||
return false;
|
||||
@@ -364,12 +365,12 @@ namespace BlackCore
|
||||
Q_ASSERT(this->getIContextNetwork()->isUsingImplementingObject());
|
||||
IOwnAircraftProvider *ownAircraftProvider = this->getRuntime()->getCContextOwnAircraft();
|
||||
IRemoteAircraftProvider *renderedAircraftProvider = this->getRuntime()->getCContextNetwork();
|
||||
ISimulator *newSimulator = factory->create(ownAircraftProvider, renderedAircraftProvider, this);
|
||||
ISimulator *newSimulator = factory->create(simulatorInfo, ownAircraftProvider, renderedAircraftProvider, this);
|
||||
Q_ASSERT(newSimulator);
|
||||
|
||||
unloadSimulatorPlugin(); // old plugin unloaded
|
||||
|
||||
PluginData* plugin = findPlugin(simulatorInfo);
|
||||
PluginData *plugin = findPlugin(simulatorInfo);
|
||||
plugin->simulator = newSimulator;
|
||||
m_simulator = plugin;
|
||||
|
||||
@@ -381,7 +382,7 @@ namespace BlackCore
|
||||
|
||||
// log from context to simulator
|
||||
connect(CLogHandler::instance(), &CLogHandler::localMessageLogged, m_simulator->simulator, &ISimulator::displayStatusMessage);
|
||||
connect(CLogHandler::instance(), &CLogHandler::remoteMessageLogged,m_simulator->simulator, &ISimulator::displayStatusMessage);
|
||||
connect(CLogHandler::instance(), &CLogHandler::remoteMessageLogged, m_simulator->simulator, &ISimulator::displayStatusMessage);
|
||||
|
||||
// connect with network
|
||||
IContextNetwork *networkContext = this->getIContextNetwork();
|
||||
@@ -433,7 +434,7 @@ namespace BlackCore
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void CContextSimulator::listenForSimulator(const CSimulatorPluginInfo &simulatorInfo)
|
||||
{
|
||||
Q_ASSERT(this->getIContextApplication());
|
||||
@@ -441,8 +442,9 @@ namespace BlackCore
|
||||
Q_ASSERT(!simulatorInfo.isUnspecified());
|
||||
|
||||
if (this->m_simulator)
|
||||
{ // already loaded
|
||||
qWarning("Cannot listen for simulator while the driver is still loaded");
|
||||
{
|
||||
// already loaded
|
||||
CLogMessage(this).warning("Cannot listen for simulator while the driver %1 is still loaded") << m_simulator->info.toQString();
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -453,7 +455,7 @@ namespace BlackCore
|
||||
return;
|
||||
}
|
||||
|
||||
PluginData* plugin = findPlugin(simulatorInfo);
|
||||
PluginData *plugin = findPlugin(simulatorInfo);
|
||||
if (!plugin)
|
||||
{
|
||||
CLogMessage(this).error("Driver not found for '%1'") << simulatorInfo.toQString();
|
||||
@@ -462,11 +464,17 @@ namespace BlackCore
|
||||
|
||||
if (!plugin->listener)
|
||||
{
|
||||
ISimulatorFactory* factory = getSimulatorFactory(simulatorInfo);
|
||||
ISimulatorFactory *factory = getSimulatorFactory(simulatorInfo);
|
||||
Q_ASSERT(factory);
|
||||
|
||||
plugin->listener = factory->createListener();
|
||||
connect(plugin->listener, SIGNAL(simulatorStarted()), m_mapper, SLOT(map()));
|
||||
bool c = connect(plugin->listener, &ISimulatorListener::simulatorStarted,
|
||||
m_mapper, static_cast<void (QSignalMapper::*)()> (&QSignalMapper::map));
|
||||
if (!c)
|
||||
{
|
||||
CLogMessage(this).error("Unable to use '%1'") << simulatorInfo.toQString();
|
||||
return;
|
||||
}
|
||||
m_mapper->setMapping(plugin->listener, plugin->listener);
|
||||
plugin->listener->moveToThread(&m_listenersThread);
|
||||
}
|
||||
@@ -480,16 +488,18 @@ namespace BlackCore
|
||||
}
|
||||
|
||||
QMetaObject::invokeMethod(listener, "start");
|
||||
CLogMessage(this).debug() << "Listening for simulator:" << simulatorInfo.toQString(true);
|
||||
CLogMessage(this).debug() << "Listening for simulator: " << simulatorInfo.toQString(true);
|
||||
}
|
||||
|
||||
|
||||
void CContextSimulator::listenForAllSimulators()
|
||||
{
|
||||
auto plugins = getAvailableSimulatorPlugins();
|
||||
for (const auto &p: plugins)
|
||||
for (const auto &p : plugins)
|
||||
{
|
||||
listenForSimulator(p);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void CContextSimulator::listenForSimulatorFromSettings()
|
||||
{
|
||||
Q_ASSERT(this->getIContextSettings());
|
||||
@@ -515,7 +525,7 @@ namespace BlackCore
|
||||
Q_ASSERT(networkContext->isLocalObject());
|
||||
Q_UNUSED(networkContext);
|
||||
Q_ASSERT(m_simulator->simulator);
|
||||
|
||||
|
||||
m_simulator->simulator->disconnect();
|
||||
CLogHandler::instance()->disconnect(m_simulator->simulator);
|
||||
this->disconnect(m_simulator->simulator);
|
||||
@@ -534,7 +544,7 @@ namespace BlackCore
|
||||
// todo:
|
||||
// This was previously an assert and it should be one again in the future.
|
||||
// This slot should not even be called when no simulator is available.
|
||||
if(!m_simulator)
|
||||
if (!m_simulator)
|
||||
{
|
||||
// Do something if no simulator is running
|
||||
return;
|
||||
@@ -551,7 +561,7 @@ namespace BlackCore
|
||||
// todo:
|
||||
// This was previously an assert and it should be one again in the future.
|
||||
// This slot should not even be called when no simulator is available.
|
||||
if(!m_simulator)
|
||||
if (!m_simulator)
|
||||
{
|
||||
// Do something if no simulator is running
|
||||
return;
|
||||
@@ -580,7 +590,7 @@ namespace BlackCore
|
||||
// todo:
|
||||
// This was previously an assert and it should be one again in the future.
|
||||
// This slot should not even be called when no simulator is available.
|
||||
if(!m_simulator)
|
||||
if (!m_simulator)
|
||||
{
|
||||
// Do something if no simulator is running
|
||||
return;
|
||||
@@ -617,7 +627,7 @@ namespace BlackCore
|
||||
// todo:
|
||||
// This was previously an assert and it should be one again in the future.
|
||||
// This slot should not even be called when no simulator is available.
|
||||
if(!m_simulator)
|
||||
if (!m_simulator)
|
||||
{
|
||||
// Do something if no simulator is running
|
||||
return;
|
||||
@@ -641,7 +651,7 @@ namespace BlackCore
|
||||
// plugin
|
||||
CSettingsSimulator settingsSim = this->getIContextSettings()->getSimulatorSettings();
|
||||
CSimulatorPluginInfo plugin = getIContextSettings()->getSimulatorSettings().getSelectedPlugin();
|
||||
|
||||
|
||||
// no simulator loaded yet, listen
|
||||
if (!m_simulator)
|
||||
{
|
||||
@@ -713,18 +723,18 @@ namespace BlackCore
|
||||
Q_ASSERT(m_simulator->simulator);
|
||||
return m_simulator->simulator->isSimulating();
|
||||
}
|
||||
|
||||
|
||||
void CContextSimulator::ps_simulatorStarted(QObject *listener)
|
||||
{
|
||||
Q_ASSERT(listener);
|
||||
Q_ASSERT(listener->inherits("BlackCore::ISimulatorListener"));
|
||||
|
||||
/* Find caller */
|
||||
PluginData *plugin = [this](QObject *listener)
|
||||
PluginData *plugin = [this](QObject * listener)
|
||||
{
|
||||
auto it = std::find_if(m_simulatorPlugins.begin(), m_simulatorPlugins.end(), [listener](const PluginData &plugin)
|
||||
auto it = std::find_if(m_simulatorPlugins.begin(), m_simulatorPlugins.end(), [listener](const PluginData & plugin)
|
||||
{
|
||||
return plugin.listener == listener;
|
||||
return plugin.listener == listener;
|
||||
});
|
||||
return &(*it);
|
||||
}(listener);
|
||||
@@ -747,7 +757,7 @@ namespace BlackCore
|
||||
|
||||
QStringList fileNames = m_pluginsDir.entryList(QDir::Files);
|
||||
fileNames.sort(Qt::CaseInsensitive); // give a certain order, rather than random file order
|
||||
for (const auto& fileName: fileNames)
|
||||
for (const auto &fileName : fileNames)
|
||||
{
|
||||
if (!QLibrary::isLibrary(fileName))
|
||||
{
|
||||
@@ -762,7 +772,7 @@ namespace BlackCore
|
||||
simulatorPluginInfo.convertFromJson(json);
|
||||
if (simulatorPluginInfo.isValid())
|
||||
{
|
||||
m_simulatorPlugins << PluginData{ simulatorPluginInfo, nullptr, nullptr, nullptr, pluginPath};
|
||||
m_simulatorPlugins << PluginData { simulatorPluginInfo, nullptr, nullptr, nullptr, pluginPath};
|
||||
CLogMessage(this).debug() << "Found simulator driver: " << simulatorPluginInfo.toQString();
|
||||
}
|
||||
else
|
||||
@@ -771,10 +781,10 @@ namespace BlackCore
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void CContextSimulator::stopSimulatorListeners()
|
||||
{
|
||||
std::for_each(m_simulatorPlugins.begin(), m_simulatorPlugins.end(), [](PluginData& plugin)
|
||||
std::for_each(m_simulatorPlugins.begin(), m_simulatorPlugins.end(), [](PluginData & plugin)
|
||||
{
|
||||
if (plugin.listener)
|
||||
QMetaObject::invokeMethod(plugin.listener, "stop");
|
||||
@@ -783,7 +793,7 @@ namespace BlackCore
|
||||
|
||||
CContextSimulator::PluginData *CContextSimulator::findPlugin(const CSimulatorPluginInfo &info)
|
||||
{
|
||||
auto it = std::find_if(m_simulatorPlugins.begin(), m_simulatorPlugins.end(), [&info](PluginData& plugin)
|
||||
auto it = std::find_if(m_simulatorPlugins.begin(), m_simulatorPlugins.end(), [&info](PluginData & plugin)
|
||||
{
|
||||
return plugin.info == info;
|
||||
});
|
||||
|
||||
@@ -9,6 +9,7 @@
|
||||
|
||||
#include "simulator.h"
|
||||
#include "interpolator.h"
|
||||
#include "blackmisc/logmessage.h"
|
||||
#include "blackmisc/collection.h"
|
||||
|
||||
using namespace BlackMisc;
|
||||
@@ -23,26 +24,30 @@ namespace BlackCore
|
||||
{
|
||||
int status =
|
||||
(isConnected() ? Connected : static_cast<ISimulator::SimulatorStatus>(0))
|
||||
| (isSimulating() ? Running : static_cast<ISimulator::SimulatorStatus>(0))
|
||||
| (isPaused() ? Paused : static_cast<ISimulator::SimulatorStatus>(0))
|
||||
;
|
||||
| (isSimulating() ? Running : static_cast<ISimulator::SimulatorStatus>(0))
|
||||
| (isPaused() ? Paused : static_cast<ISimulator::SimulatorStatus>(0))
|
||||
;
|
||||
emit simulatorStatusChanged(status);
|
||||
}
|
||||
|
||||
ISimulatorListener::ISimulatorListener(QObject* parent) : QObject(parent)
|
||||
{
|
||||
}
|
||||
|
||||
CSimulatorCommon::CSimulatorCommon(BlackMisc::Simulation::IOwnAircraftProvider *ownAircraftProvider,
|
||||
ISimulatorListener::ISimulatorListener(QObject *parent) : QObject(parent)
|
||||
{ }
|
||||
|
||||
CSimulatorCommon::CSimulatorCommon(const CSimulatorPluginInfo &info,
|
||||
BlackMisc::Simulation::IOwnAircraftProvider *ownAircraftProvider,
|
||||
BlackMisc::Simulation::IRemoteAircraftProvider *remoteAircraftProvider,
|
||||
QObject *parent)
|
||||
: ISimulator(parent),
|
||||
m_simulatorPluginInfo(info),
|
||||
COwnAircraftAware(ownAircraftProvider),
|
||||
CRemoteAircraftAware(remoteAircraftProvider)
|
||||
{
|
||||
this->setObjectName("CSimulatorCommon");
|
||||
m_oneSecondTimer = new QTimer(this);
|
||||
m_oneSecondTimer->setObjectName(this->objectName().append(":OneSecondTimer"));
|
||||
connect(this->m_oneSecondTimer, &QTimer::timeout, this, &CSimulatorCommon::ps_oneSecondTimer);
|
||||
m_oneSecondTimer->start(1000);
|
||||
CLogMessage(this).info("Initialized simulator driver %1") << m_simulatorPluginInfo.toQString();
|
||||
}
|
||||
|
||||
void CSimulatorCommon::blinkHighlightedAircraft()
|
||||
@@ -197,12 +202,12 @@ namespace BlackCore
|
||||
{
|
||||
return !m_maxRenderedDistance.isNull();
|
||||
}
|
||||
|
||||
|
||||
void CSimulatorCommon::enableDebugMessages(bool driver, bool interpolator)
|
||||
{
|
||||
this->m_debugMessages = driver;
|
||||
Q_UNUSED(interpolator);
|
||||
|
||||
|
||||
}
|
||||
|
||||
int CSimulatorCommon::getInstalledModelsCount() const
|
||||
@@ -235,6 +240,11 @@ namespace BlackCore
|
||||
return this->isMaxDistanceRestricted() || this->isMaxAircraftRestricted();
|
||||
}
|
||||
|
||||
const CSimulatorPluginInfo &CSimulatorCommon::getSimulatorPluginInfo() const
|
||||
{
|
||||
return m_simulatorPluginInfo;
|
||||
}
|
||||
|
||||
void CSimulatorCommon::deleteAllRenderingRestrictions()
|
||||
{
|
||||
if (!isRenderingEnabled()) { return; }
|
||||
|
||||
@@ -62,6 +62,9 @@ namespace BlackCore
|
||||
//! Simulator running?
|
||||
virtual bool isSimulating() const = 0;
|
||||
|
||||
//! Get the simulator info
|
||||
virtual const BlackMisc::Simulation::CSimulatorPluginInfo &getSimulatorPluginInfo() const = 0;
|
||||
|
||||
//! Originator
|
||||
const QString &simulatorOriginator()
|
||||
{
|
||||
@@ -196,39 +199,39 @@ namespace BlackCore
|
||||
void emitSimulatorCombinedStatus();
|
||||
|
||||
};
|
||||
|
||||
|
||||
/*!
|
||||
* Interface to a simulator listener.
|
||||
*
|
||||
*
|
||||
* The simulator listener is responsible for letting the core know when
|
||||
* the corresponding simulator is started.
|
||||
*/
|
||||
class ISimulatorListener : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
||||
public:
|
||||
|
||||
|
||||
//! Constructor
|
||||
//! \sa ISimulatorFactory::createListener().
|
||||
//! \note msvc2015: use inherited constructor
|
||||
ISimulatorListener(QObject* parent);
|
||||
|
||||
ISimulatorListener(QObject *parent);
|
||||
|
||||
//! Destructor
|
||||
virtual ~ISimulatorListener() = default;
|
||||
|
||||
public slots:
|
||||
//! Start listening for the simulator to start.
|
||||
virtual void start() = 0;
|
||||
|
||||
|
||||
//! Stops listening.
|
||||
virtual void stop() = 0;
|
||||
|
||||
|
||||
signals:
|
||||
|
||||
|
||||
//! Emitted when the listener discovers the simulator running.
|
||||
void simulatorStarted();
|
||||
|
||||
|
||||
};
|
||||
|
||||
//! Factory pattern class to create instances of ISimulator
|
||||
@@ -241,19 +244,21 @@ namespace BlackCore
|
||||
|
||||
//!
|
||||
//! Create a new instance of a driver
|
||||
//! \param info metadata about simulator
|
||||
//! \param ownAircraftProvider in memory access to own aircraft data
|
||||
//! \param renderedAircraftProvider in memory access to rendered aircraft data such as situation history and aircraft itself
|
||||
//! \param parent QObject
|
||||
//! \return driver instance
|
||||
//!
|
||||
virtual ISimulator *create(
|
||||
const BlackMisc::Simulation::CSimulatorPluginInfo &info,
|
||||
BlackMisc::Simulation::IOwnAircraftProvider *ownAircraftProvider,
|
||||
BlackMisc::Simulation::IRemoteAircraftProvider *renderedAircraftProvider,
|
||||
QObject *parent = nullptr) = 0;
|
||||
|
||||
|
||||
//! Simulator listener instance
|
||||
virtual ISimulatorListener *createListener(QObject *parent = nullptr) = 0;
|
||||
|
||||
|
||||
};
|
||||
|
||||
//! Common base class with providers, interface and some base functionality
|
||||
@@ -302,6 +307,9 @@ namespace BlackCore
|
||||
//! \copydoc IContextSimulator::isRenderingRestricted
|
||||
virtual bool isRenderingRestricted() const override;
|
||||
|
||||
//! \copydoc IContextSimulator::getSimulatorPluginInfo
|
||||
virtual const BlackMisc::Simulation::CSimulatorPluginInfo &getSimulatorPluginInfo() const override;
|
||||
|
||||
//! \copydoc IContextSimulator::deleteAllRenderingRestrictions
|
||||
virtual void deleteAllRenderingRestrictions();
|
||||
|
||||
@@ -311,10 +319,10 @@ namespace BlackCore
|
||||
|
||||
protected:
|
||||
//! Constructor
|
||||
CSimulatorCommon(
|
||||
BlackMisc::Simulation::IOwnAircraftProvider *ownAircraftProvider,
|
||||
BlackMisc::Simulation::IRemoteAircraftProvider *remoteAircraftProvider,
|
||||
QObject *parent = nullptr);
|
||||
CSimulatorCommon(const BlackMisc::Simulation::CSimulatorPluginInfo &info,
|
||||
BlackMisc::Simulation::IOwnAircraftProvider *ownAircraftProvider,
|
||||
BlackMisc::Simulation::IRemoteAircraftProvider *remoteAircraftProvider,
|
||||
QObject *parent = nullptr);
|
||||
|
||||
//! Blink the highlighted aircraft
|
||||
void blinkHighlightedAircraft();
|
||||
@@ -334,8 +342,9 @@ namespace BlackCore
|
||||
qint64 m_highlightEndTimeMsEpoch = 0; //!< end highlighting
|
||||
int m_timerCounter = 0; //!< allows to calculate n seconds
|
||||
QTimer *m_oneSecondTimer = nullptr; //!< timer
|
||||
BlackMisc::Simulation::CSimulatorPluginInfo m_simulatorPluginInfo; //!< info object
|
||||
BlackMisc::Simulation::CSimulatedAircraftList m_highlightedAircraft; //!< all other aircraft are to be ignored
|
||||
BlackMisc::Aviation::CCallsignSet m_callsignsToBeRendered; //!< callsigns which will be rendered
|
||||
BlackMisc::Aviation::CCallsignSet m_callsignsToBeRendered; //!< callsigns which will be rendered
|
||||
int m_maxRenderedAircraft = MaxAircraftInfinite; //!< max.rendered aircraft
|
||||
BlackMisc::PhysicalQuantities::CLength m_maxRenderedDistance { 0.0, BlackMisc::PhysicalQuantities::CLengthUnit::nullUnit()}; //!< max.distance for rendering
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user