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.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGDistributor.h
4 Author: Jon S. Berndt
5 Date started: 09/27/2013
6
7 ------------- Copyright (C) 2013 jon@jsbsim.org -------------
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
26HISTORY
27--------------------------------------------------------------------------------
28
29%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30SENTRY
31%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
32
33#ifndef FGDISTRIBUTOR_H
34#define FGDISTRIBUTOR_H
35
36/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37INCLUDES
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40#include "FGFCSComponent.h"
41#include "math/FGCondition.h"
42#include "math/FGParameterValue.h"
43
44/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
45FORWARD DECLARATIONS
46%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
47
48namespace JSBSim {
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51CLASS DOCUMENTATION
52%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
121/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
122CLASS DECLARATION
123%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
124
126{
127public:
132 FGDistributor(FGFCS* fcs, Element* element);
133
136 bool Run(void) override;
137
138private:
139
140 enum eType {eInclusive=0, eExclusive} Type;
141 template<typename T> using vector_of_unique_ptr = std::vector<std::unique_ptr<T>>;
142
143 class PropValPair {
144 public:
145 PropValPair(const std::string& prop, const std::string& val,
146 std::shared_ptr<FGPropertyManager> propMan, Element* el)
147 : Prop(new FGPropertyValue(prop, propMan, el)),
148 Val(new FGParameterValue(val, propMan, el)) {}
149
150 void SetPropToValue() {
151 try {
152 Prop->SetValue(Val->GetValue());
153 }
154 catch(...) {
155 throw BaseException(Prop->GetName()+" in distributor component is not known");
156 }
157 }
158
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(); }
163 private:
164 FGPropertyValue_ptr Prop;
165 FGParameterValue_ptr Val;
166 };
167
168 class Case {
169 public:
170 Case() : Test(nullptr) {}
171
172 void SetTest(Element* test_element, std::shared_ptr<FGPropertyManager> propMan) {
173 Test = std::make_unique<FGCondition>(test_element, propMan);
174 }
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));
179 }
180 void SetPropValPairs() {
181 for (auto& pair: PropValPairs) pair->SetPropToValue();
182 }
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(); }
189
190 private:
191 std::unique_ptr<FGCondition> Test;
192 vector_of_unique_ptr<PropValPair> PropValPairs;
193 };
194
195 vector_of_unique_ptr<Case> Cases;
196
197 void Debug(int from) override;
198};
199}
200#endif
Encapsulates a condition, which is used in parts of JSBSim including switches.
Definition FGCondition.h:65
Encapsulates a distributor for the flight control system.
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
Represents a either a real value or a property value.
Represents a property value which can use late binding.