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
FGParameterValue.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Header: FGParameterValue.h
4 Author: Bertrand Coconnier
5 Date started: December 09 2018
6
7 --------- Copyright (C) 2018 B. Coconnier (bcoconni@users.sf.net) -----------
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
26 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
27 SENTRY
28 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
29
30#ifndef FGPARAMETERVALUE_H
31#define FGPARAMETERVALUE_H
32
33/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
34 INCLUDES
35 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
36
37#include "math/FGRealValue.h"
38#include "math/FGPropertyValue.h"
39#include "input_output/FGXMLElement.h"
40#include "input_output/string_utilities.h"
41
42/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
43 FORWARD DECLARATIONS
44 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
45
46namespace JSBSim {
47
48class FGPropertyManager;
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51 CLASS DOCUMENTATION
52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
58/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59 DECLARATION: FGParameterValue
60 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
61
62class JSBSIM_API FGParameterValue : public FGParameter
63{
64public:
65 FGParameterValue(Element* el, std::shared_ptr<FGPropertyManager> pm)
66 : FGParameterValue(el->GetDataLine(), pm, el)
67 {
68 std::string value = el->GetDataLine();
69
70 if (el->GetNumDataLines() != 1 || value.empty()) {
71 std::cerr << el->ReadFrom()
72 << "The element <" << el->GetName()
73 << "> must either contain a value number or a property name."
74 << std::endl;
75 throw BaseException("FGParameterValue: Illegal argument defining: " + el->GetName());
76 }
77 }
78
79 FGParameterValue(const std::string& value, std::shared_ptr<FGPropertyManager> pm,
80 Element* el) {
81 try {
82 param = new FGRealValue(atof_locale_c(value.c_str()));
83 } catch (InvalidNumber&) {
84 // "value" must be a property if execution passes to here.
85 param = new FGPropertyValue(value, pm, el);
86 }
87 }
88
89 double GetValue(void) const override { return param->GetValue(); }
90 bool IsConstant(void) const override { return param->IsConstant(); }
91
92 std::string GetName(void) const override {
93 FGPropertyValue* v = dynamic_cast<FGPropertyValue*>(param.ptr());
94 if (v)
95 return v->GetNameWithSign();
96 else
97 return param->GetName();
98 }
99
100 bool IsLateBound(void) const {
101 FGPropertyValue* v = dynamic_cast<FGPropertyValue*>(param.ptr());
102 return v != nullptr && v->IsLateBound();
103 }
104private:
105 FGParameter_ptr param;
106};
107
108typedef SGSharedPtr<FGParameterValue> FGParameterValue_ptr;
109
110} // namespace JSBSim
111
112#endif
const std::string & GetName(void) const
Retrieves the element name.
std::string GetDataLine(unsigned int i=0)
Gets a line of data belonging to an element.
unsigned int GetNumDataLines(void)
Returns the number of lines of data stored.
std::string ReadFrom(void) const
Return a string that contains a description of the location where the current XML element was read fr...
Represents a either a real value or a property value.
Represents various types of parameters.
Definition FGParameter.h:61
Represents a property value which can use late binding.
Represents a real value.
Definition FGRealValue.h:58