136 bool Run(
void)
override;
140 enum eType {eInclusive=0, eExclusive} Type;
141 template<
typename T>
using vector_of_unique_ptr = std::vector<std::unique_ptr<T>>;
145 PropValPair(
const std::string& prop,
const std::string& val,
146 std::shared_ptr<FGPropertyManager> propMan,
Element* el)
150 void SetPropToValue() {
152 Prop->SetValue(Val->GetValue());
155 throw BaseException(Prop->GetName()+
" in distributor component is not known");
159 std::string GetPropName()
const {
return Prop->GetName(); }
160 std::string GetValString()
const {
return Val->GetName(); }
161 bool GetLateBoundProp()
const {
return Prop->IsLateBound(); }
162 bool GetLateBoundValue()
const {
return Val->IsLateBound(); }
164 FGPropertyValue_ptr Prop;
165 FGParameterValue_ptr Val;
170 Case() : Test(
nullptr) {}
172 void SetTest(
Element* test_element, std::shared_ptr<FGPropertyManager> propMan) {
173 Test = std::make_unique<FGCondition>(test_element, propMan);
175 const FGCondition& GetTest(
void)
const noexcept {
return *Test; }
176 void AddPropValPair(
const std::string& property,
const std::string& value,
177 std::shared_ptr<FGPropertyManager> propManager,
Element* prop_val_el) {
178 PropValPairs.push_back(std::make_unique<PropValPair>(property, value, propManager, prop_val_el));
180 void SetPropValPairs() {
181 for (
auto& pair: PropValPairs) pair->SetPropToValue();
183 vector_of_unique_ptr<PropValPair>::const_iterator begin(
void)
const
184 {
return PropValPairs.cbegin(); }
185 vector_of_unique_ptr<PropValPair>::const_iterator end(
void)
const
186 {
return PropValPairs.cend(); }
187 bool HasTest()
const noexcept {
return Test !=
nullptr; }
188 bool GetTestResult()
const {
return Test->Evaluate(); }
191 std::unique_ptr<FGCondition> Test;
192 vector_of_unique_ptr<PropValPair> PropValPairs;
195 vector_of_unique_ptr<Case> Cases;
197 void Debug(
int from)
override;