JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGDistributor.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGDistributor.cpp
4 Author: Jon S. Berndt
5 Date started: 9/2013
6
7 ------------- Copyright (C) 2013 -------------
8
9 This program is free software; you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option) any
12 later version.
13
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
17 details.
18
19 You should have received a copy of the GNU Lesser General Public License along
20 with this program; if not, write to the Free Software Foundation, Inc., 59
21 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22
23 Further information about the GNU Lesser General Public License can also be
24 found on the world wide web at http://www.gnu.org.
25
26FUNCTIONAL DESCRIPTION
27--------------------------------------------------------------------------------
28
29HISTORY
30--------------------------------------------------------------------------------
31
32%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
33COMMENTS, REFERENCES, and NOTES
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35
36Also, see the header file (FGDistributor.h) for further details.
37
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39INCLUDES
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
41
42#include "FGDistributor.h"
43#include "models/FGFCS.h"
44
45using namespace std;
46
47namespace JSBSim {
48
49/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50CLASS IMPLEMENTATION
51%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
52
54 : FGFCSComponent(fcs, element)
55{
56 auto PropertyManager = fcs->GetPropertyManager();
57
58 bind(element, PropertyManager.get()); // Bind() this component here in case it is used in its own
59 // definition for a sample-and-hold
60
61 string type_string = element->GetAttributeValue("type");
62 if (type_string == "inclusive") Type = eInclusive;
63 else if (type_string == "exclusive") Type = eExclusive;
64 else {
65 throw BaseException("Not a known Distributor type, "+type_string);
66 }
67
68 Element* case_element = element->FindElement("case");
69 while (case_element) {
70 auto current_case = make_unique<Case>();
71 Element* test_element = case_element->FindElement("test");
72 try {
73 if (test_element) current_case->SetTest(test_element, PropertyManager);
74 } catch (BaseException& e) {
75 cerr << test_element->ReadFrom()
76 << fgred << e.what() << reset << endl;
77 throw;
78 }
79 Element* prop_val_element = case_element->FindElement("property");
80 while (prop_val_element) {
81 string value_string = prop_val_element->GetAttributeValue("value");
82 string property_string = prop_val_element->GetDataLine();
83 current_case->AddPropValPair(property_string, value_string, PropertyManager,
84 prop_val_element);
85 prop_val_element = case_element->FindNextElement("property");
86 }
87 Cases.push_back(std::move(current_case));
88 case_element = element->FindNextElement("case");
89 }
90
91 Debug(0);
92}
93
94//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
95
97{
98 bool completed = false;
99 for (auto& Case: Cases) { // Loop through all Cases
100 if (Case->HasTest()) {
101 if (Case->GetTestResult() && !((Type == eExclusive) && completed)) {
102 Case->SetPropValPairs();
103 completed = true;
104 }
105 } else { // If no test present, execute always
106 Case->SetPropValPairs();
107 }
108 }
109
110 return true;
111}
112
113//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
114// The bitmasked value choices are as follows:
115// unset: In this case (the default) JSBSim would only print
116// out the normally expected messages, essentially echoing
117// the config files as they are read. If the environment
118// variable is not set, debug_lvl is set to 1 internally
119// 0: This requests JSBSim not to output any messages
120// whatsoever.
121// 1: This value explicity requests the normal JSBSim
122// startup messages
123// 2: This value asks for a message to be printed out when
124// a class is instantiated
125// 4: When this value is set, a message is displayed when a
126// FGModel object executes its Run() method
127// 8: When this value is set, various runtime state variables
128// are printed out periodically
129// 16: When set various parameters are sanity checked and
130// a message is printed out when they go out of bounds
131
132void FGDistributor::Debug(int from)
133{
134 if (debug_lvl <= 0) return;
135
136 if (debug_lvl & 1) { // Standard console startup message output
137 if (from == 0) { // Constructor
138 unsigned int ctr=0;
139 for (const auto& Case: Cases) {
140 std::cout << " Case: " << ctr << endl;
141 if (Case->HasTest()) {
142 Case->GetTest().PrintCondition(" ");
143 } else {
144 std::cout << " Set these properties by default: " << std::endl;
145 }
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;
153 }
154 ctr++;
155 }
156 }
157 }
158 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
159 if (from == 0) cout << "Instantiated: FGDistributor" << endl;
160 if (from == 1) cout << "Destroyed: FGDistributor" << endl;
161 }
162 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
163 }
164 if (debug_lvl & 8 ) { // Runtime state variables
165 }
166 if (debug_lvl & 16) { // Sanity checking
167 }
168 if (debug_lvl & 64) {
169 if (from == 0) { // Constructor
170 }
171 }
172}
173
174} //namespace JSBSim
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.
Definition FGFCS.h:189
static char fgred[6]
red text
Definition FGJSBBase.h:166
static char reset[5]
resets text properties
Definition FGJSBBase.h:156