42#include "FGDistributor.h"
43#include "models/FGFCS.h"
56 auto PropertyManager = fcs->GetPropertyManager();
58 bind(element, PropertyManager.get());
62 if (type_string ==
"inclusive") Type = eInclusive;
63 else if (type_string ==
"exclusive") Type = eExclusive;
65 throw BaseException(
"Not a known Distributor type, "+type_string);
69 while (case_element) {
70 auto current_case = make_unique<Case>();
73 if (test_element) current_case->SetTest(test_element, PropertyManager);
80 while (prop_val_element) {
82 string property_string = prop_val_element->
GetDataLine();
83 current_case->AddPropValPair(property_string, value_string, PropertyManager,
87 Cases.push_back(std::move(current_case));
98 bool completed =
false;
99 for (
auto& Case: Cases) {
100 if (Case->HasTest()) {
101 if (Case->GetTestResult() && !((Type == eExclusive) && completed)) {
102 Case->SetPropValPairs();
106 Case->SetPropValPairs();
132void FGDistributor::Debug(
int from)
134 if (debug_lvl <= 0)
return;
139 for (
const auto& Case: Cases) {
140 std::cout <<
" Case: " << ctr << endl;
141 if (Case->HasTest()) {
142 Case->GetTest().PrintCondition(
" ");
144 std::cout <<
" Set these properties by default: " << std::endl;
146 std::cout << std::endl;
147 for (
const auto& propVal: *Case) {
148 std::cout <<
" Set property " << propVal->GetPropName();
149 if (propVal->GetLateBoundProp()) std::cout <<
" (late bound)";
150 std::cout <<
" to " << propVal->GetValString();
151 if (propVal->GetLateBoundValue()) std::cout <<
" (late bound)";
152 std::cout << std::endl;
158 if (debug_lvl & 2 ) {
159 if (from == 0) cout <<
"Instantiated: FGDistributor" << endl;
160 if (from == 1) cout <<
"Destroyed: FGDistributor" << endl;
162 if (debug_lvl & 4 ) {
164 if (debug_lvl & 8 ) {
166 if (debug_lvl & 16) {
168 if (debug_lvl & 64) {
Element * FindElement(const std::string &el="")
Searches for a specified element.
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
std::string GetDataLine(unsigned int i=0)
Gets a line of data belonging to an element.
std::string ReadFrom(void) const
Return a string that contains a description of the location where the current XML element was read fr...
Element * FindNextElement(const std::string &el="")
Searches for the next element as specified.
FGDistributor(FGFCS *fcs, Element *element)
Constructor.
bool Run(void) override
Executes the distributor logic.
Base class for JSBSim Flight Control System Components.
Encapsulates the Flight Control System (FCS) functionality.
static char fgred[6]
red text
static char reset[5]
resets text properties