Ref T357, function to copy FSX terrain probe, also in context for remote UI

This commit is contained in:
Klaus Basan
2018-09-17 02:53:49 +02:00
parent 73c4af4c6d
commit 57178c75f9
8 changed files with 93 additions and 4 deletions

View File

@@ -248,10 +248,10 @@ namespace BlackCore
//! Request weather grid. Argument identifier is past in the signal to identify the requestor
virtual void requestWeatherGrid(const BlackMisc::Weather::CWeatherGrid &weatherGrid, const BlackMisc::CIdentifier &identifier) = 0;
//! Repeat all mappings
//! Repeat all matchings
virtual int doMatchingsAgain() = 0;
//! Repeat the mapping
//! Repeat the matching
virtual bool doMatchingAgain(const BlackMisc::Aviation::CCallsign &callsign) = 0;
//! Current matching statistics
@@ -263,6 +263,9 @@ namespace BlackCore
//! Get matching setup
virtual BlackMisc::Simulation::CAircraftMatcherSetup getMatchingSetup() const = 0;
//! Copy the terrain probe
virtual BlackMisc::CStatusMessageList copyFsxTerrainProbe(const BlackMisc::Simulation::CSimulatorInfo &simulator) = 0;
protected:
//! Constructor
IContextSimulator(CCoreFacadeConfig::ContextMode mode, CCoreFacade *runtime) : CContext(mode, runtime) {}