]> git.mxchange.org Git - flightgear.git/blob - src/FDM/TankProperties.hxx
Fix stray back-button in Qt launcher
[flightgear.git] / src / FDM / TankProperties.hxx
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
28 class TankProperties : public SGReferenced
29 {
30 public:
31   TankProperties(SGPropertyNode_ptr rootNode );
32   virtual ~TankProperties();
33
34   TankProperties( const TankProperties & );
35   const TankProperties & operator = ( const TankProperties & );
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
84 protected:
85   simgear::TiedPropertyList _tiedProperties;
86
87   double _content_kg;
88   double _density_kgpm3;
89   double _capacity_m3;
90   double _unusable_m3;
91 };
92
93 class TankPropertiesList : std::vector<SGSharedPtr<TankProperties> > {
94 public:
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   
107 private:
108   simgear::TiedPropertyList _tiedProperties;
109 };
110
111 #endif // __TANK_PROPERTIES_HXX