FlightGear next
TankProperties.hxx
Go to the documentation of this file.
1// TankProperties.hxx -- expose (fuel)-tank properties
2//
3// Written by Torsten Dreyer, started January 2011.
4//
5// Copyright (C) 2011 Torsten Dreyer - Torsten (at) t3r _dot_ de
6//
7// This program is free software; you can redistribute it and/or
8// modify it under the terms of the GNU General Public License as
9// published by the Free Software Foundation; either version 2 of the
10// License, or (at your option) any later version.
11//
12// This program is distributed in the hope that it will be useful, but
13// WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15// General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License
18// along with this program; if not, write to the Free Software
19// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20//
21
22#ifndef __TANK_PROPERTIES_HXX
23#define __TANK_PROPERTIES_HXX
24
25#include <simgear/props/props.hxx>
26#include <simgear/props/tiedpropertylist.hxx>
27
28class TankProperties : public SGReferenced
29{
30public:
31 TankProperties(SGPropertyNode_ptr rootNode );
32 virtual ~TankProperties();
33
36
37 void bind();
38 void unbind();
39
40 double getContent_kg() const;
41 void setContent_kg( double value );
42
43 double getDensity_kgpm3() const;
44 void setDensity_kgpm3( double value );
45
46 double getDensity_ppg() const;
47 void setDensity_ppg( double value );
48
49 double getContent_lbs() const;
50 void setContent_lbs( double value );
51
52 double getContent_m3() const;
53 void setContent_m3( double value );
54
55 double getContent_gal_us() const;
56 void setContent_gal_us( double value );
57
58 double getContent_gal_imp() const;
59 void setContent_gal_imp( double value );
60
61 double getCapacity_m3() const;
62 void setCapacity_m3( double value );
63
64 double getCapacity_gal_us() const;
65 void setCapacity_gal_us( double value );
66
67 double getCapacity_gal_imp() const;
68 void setCapacity_gal_imp( double value );
69
70 double getUnusable_m3() const;
71 void setUnusable_m3( double value );
72
73 double getUnusable_gal_us() const;
74 void setUnusable_gal_us( double value );
75
76 double getUnusable_gal_imp() const;
77 void setUnusable_gal_imp( double value );
78
79 double getContent_norm() const;
80 void setContent_norm( double value );
81
82 bool getEmpty() const;
83
84protected:
85 simgear::TiedPropertyList _tiedProperties;
86
91};
92
93class TankPropertiesList : std::vector<SGSharedPtr<TankProperties> > {
94public:
95 TankPropertiesList( SGPropertyNode_ptr rootNode );
96
97 void bind();
98 void unbind();
99
100 double getTotalContent_lbs() const;
101 double getTotalContent_kg() const;
102 double getTotalContent_gal_us() const;
103 double getTotalContent_gal_imp() const;
104 double getTotalContent_m3() const;
105 double getTotalContent_norm() const;
106
107private:
108 simgear::TiedPropertyList _tiedProperties;
109};
110
111#endif // __TANK_PROPERTIES_HXX
double getTotalContent_gal_imp() const
double getTotalContent_lbs() const
double getTotalContent_m3() const
TankPropertiesList(SGPropertyNode_ptr rootNode)
double getTotalContent_gal_us() const
double getTotalContent_norm() const
double getTotalContent_kg() const
void setUnusable_gal_us(double value)
double getDensity_kgpm3() const
virtual ~TankProperties()
void setContent_kg(double value)
double getUnusable_m3() const
TankProperties(SGPropertyNode_ptr rootNode)
void setDensity_ppg(double value)
void setUnusable_m3(double value)
double getContent_gal_us() const
void setContent_gal_us(double value)
double getContent_kg() const
double getContent_norm() const
double getContent_lbs() const
double getContent_gal_imp() const
void setCapacity_gal_imp(double value)
TankProperties(const TankProperties &)
void setContent_norm(double value)
double getCapacity_gal_imp() const
const TankProperties & operator=(const TankProperties &)
void setCapacity_m3(double value)
void setCapacity_gal_us(double value)
double getCapacity_gal_us() const
double getUnusable_gal_us() const
double getDensity_ppg() const
void setDensity_kgpm3(double value)
double getContent_m3() const
void setContent_m3(double value)
double getUnusable_gal_imp() const
simgear::TiedPropertyList _tiedProperties
void setContent_gal_imp(double value)
void setUnusable_gal_imp(double value)
bool getEmpty() const
void setContent_lbs(double value)
double getCapacity_m3() const