mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
Ref T658, matching script return value
This commit is contained in:
committed by
Mat Sutcliffe
parent
6f6a3d8314
commit
0250e5a7ad
54
src/blackmisc/simulation/matchingscriptmisc.h
Normal file
54
src/blackmisc/simulation/matchingscriptmisc.h
Normal file
@@ -0,0 +1,54 @@
|
||||
/* Copyright (C) 2019
|
||||
* swift project Community / Contributors
|
||||
*
|
||||
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
||||
* directory of this distribution. No part of swift project, including this file, may be copied, modified, propagated,
|
||||
* or distributed except according to the terms contained in the LICENSE file.
|
||||
*/
|
||||
|
||||
//! \file
|
||||
|
||||
#ifndef BLACKMISC_SIMULATION_MATCHINGSCRIPTMISC_H
|
||||
#define BLACKMISC_SIMULATION_MATCHINGSCRIPTMISC_H
|
||||
|
||||
#include "blackmisc/simulation/aircraftmodel.h"
|
||||
#include "blackmisc/blackmiscexport.h"
|
||||
|
||||
namespace BlackMisc
|
||||
{
|
||||
namespace Simulation
|
||||
{
|
||||
//! Matching script type
|
||||
enum MatchingScript
|
||||
{
|
||||
ReverseLookup,
|
||||
MatchingStage
|
||||
};
|
||||
|
||||
//! Enum as string
|
||||
BLACKMISC_EXPORT const QString &msToString(MatchingScript ms);
|
||||
|
||||
//! Return values
|
||||
struct MSReturnValues
|
||||
{
|
||||
//! Ctor
|
||||
MSReturnValues(const BlackMisc::Simulation::CAircraftModel &model) : model(model) {}
|
||||
|
||||
BlackMisc::Simulation::CAircraftModel model; //!< the model
|
||||
bool modified = false; //!< modified?
|
||||
bool rerun = false; //!< rerun that matching part?
|
||||
bool runScript = false; //!< did we run the script
|
||||
|
||||
//! Did run the script with modified result
|
||||
bool runScriptAndModified() const { return modified && runScript; }
|
||||
|
||||
//! Did run the script and re-run requested
|
||||
bool runScriptAndRerun() const { return rerun && runScript; }
|
||||
|
||||
//! Did run the script, modified value and re-run requested
|
||||
bool runScriptModifiedAndRerun() const { return modified && rerun && runScript; }
|
||||
};
|
||||
} // namespace
|
||||
} // namespace
|
||||
|
||||
#endif // guard
|
||||
Reference in New Issue
Block a user