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
FGPropertyValue.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3Header: FGPropertyValue.h
4Author: Jon Berndt
5Date started: December 10 2004
6
7 ------------- Copyright (C) 2001 Jon S. Berndt (jon@jsbsim.org) -------------
8 ------ Copyright (C) 2010 - 2011 Anders Gidenstam (anders(at)gidenstam.org) -
9
10 This program is free software; you can redistribute it and/or modify it under
11 the terms of the GNU Lesser General Public License as published by the Free
12 Software Foundation; either version 2 of the License, or (at your option) any
13 later version.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18 details.
19
20 You should have received a copy of the GNU Lesser General Public License along
21 with this program; if not, write to the Free Software Foundation, Inc., 59
22 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 Further information about the GNU Lesser General Public License can also be
25 found on the world wide web at http://www.gnu.org.
26
27%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
28SENTRY
29%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
30
31#ifndef FGPROPERTYVALUE_H
32#define FGPROPERTYVALUE_H
33
34/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35INCLUDES
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
37
38#include <memory>
39
40#include "FGParameter.h"
41#include "input_output/FGPropertyManager.h"
42#include "input_output/FGXMLElement.h"
43
44/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
45FORWARD DECLARATIONS
46%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
47
48namespace JSBSim {
49
50/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
51CLASS DOCUMENTATION
52%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
53
58/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
59DECLARATION: FGPropertyValue
60%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
61
62class JSBSIM_API FGPropertyValue : public FGParameter
63{
64public:
65
66 explicit FGPropertyValue(FGPropertyNode* propNode)
67 : PropertyManager(nullptr), PropertyNode(propNode), Sign(1.0) {}
68 FGPropertyValue(const std::string& propName,
69 std::shared_ptr<FGPropertyManager> propertyManager, Element* el);
70
71 double GetValue(void) const override;
72 bool IsConstant(void) const override {
73 return PropertyNode && (!PropertyNode->isTied()
74 && !PropertyNode->getAttribute(SGPropertyNode::WRITE));
75 }
76 void SetNode(FGPropertyNode* node) {PropertyNode = node;}
77 void SetValue(double value);
78 bool IsLateBound(void) const { return PropertyNode == nullptr; }
79
80 std::string GetName(void) const override;
81 virtual std::string GetNameWithSign(void) const;
82 virtual std::string GetFullyQualifiedName(void) const;
83 virtual std::string GetPrintableName(void) const;
84
85protected:
86 FGPropertyNode* GetNode(void) const;
87
88private:
89 std::shared_ptr<FGPropertyManager> PropertyManager; // Property root used to do late binding.
90 mutable FGPropertyNode_ptr PropertyNode;
91 mutable Element_ptr XML_def;
92 std::string PropertyName;
93 double Sign;
94};
95
96typedef SGSharedPtr<FGPropertyValue> FGPropertyValue_ptr;
97
98} // namespace JSBSim
99
100#endif
Represents various types of parameters.
Definition FGParameter.h:61
Class wrapper for property handling.
Represents a property value which can use late binding.