]> git.mxchange.org Git - flightgear.git/blob - JSBsim/FGTank.cpp
f92a3f620287122110d0b8e50d442bf0d1835d0f
[flightgear.git] / JSBsim / FGTank.cpp
1 /*******************************************************************************
2
3  Module:       FGTank.cpp
4  Author:       Jon Berndt
5  Date started: 01/21/99
6  Called by:    FGAircraft
7
8  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
9
10  This program is free software; you can redistribute it and/or modify it under
11  the terms of the GNU General Public License as published by the Free Software
12  Foundation; either version 2 of the License, or (at your option) any later
13  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 General Public License for more
18  details.
19
20  You should have received a copy of the GNU General Public License along with
21  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
22  Place - Suite 330, Boston, MA  02111-1307, USA.
23
24  Further information about the GNU General Public License can also be found on
25  the world wide web at http://www.gnu.org.
26
27 FUNCTIONAL DESCRIPTION
28 --------------------------------------------------------------------------------
29 See header file.
30
31 ARGUMENTS
32 --------------------------------------------------------------------------------
33
34
35 HISTORY
36 --------------------------------------------------------------------------------
37
38 01/21/99   JSB   Created
39
40 ********************************************************************************
41 INCLUDES
42 *******************************************************************************/
43
44 #include "FGTank.h"
45 #include <fstream.h>
46 #include <string.h>
47
48 /*******************************************************************************
49 ************************************ CODE **************************************
50 *******************************************************************************/
51
52
53 FGTank::FGTank(ifstream& acfile)
54 {
55   char type[20];
56   
57   acfile >> type;
58   if (strstr(type,"FUEL")) Type = 0;
59   else if (strstr(type,"OXIDIZER")) Type = 1;
60   else Type = -1;
61   acfile >> X;
62   acfile >> Y;
63   acfile >> Z;
64   acfile >> Radius;
65   acfile >> Capacity;
66   acfile >> Contents;
67   Selected = true;
68   PctFull = 100.0*Contents/Capacity;
69 }
70
71
72 FGTank::~FGTank(void)
73 {
74 }
75
76
77 float FGTank::Reduce(float used)
78 {
79   float shortage;
80
81   if (used < Contents) {
82     Contents -= used;
83     PctFull = 100.0*Contents/Capacity;
84     return Contents;
85   } else {
86     shortage = Contents - used;
87     Contents = 0.0;
88     PctFull = 0.0;
89     Selected = false;
90     return shortage;
91   }
92 }
93