]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/FGConfigFile.h
Synced to latest version of JSBSim which [hopefully] includes all of Erik's
[flightgear.git] / src / FDM / JSBSim / FGConfigFile.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3  Header:       FGConfigFile.h
4  Author:       Jon Berndt
5  Date started: 03/29/00
6
7  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
8
9  This program is free software; you can redistribute it and/or modify it under
10  the terms of the GNU General Public License as published by the Free Software
11  Foundation; either version 2 of the License, or (at your option) any later
12  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 General Public License for more
17  details.
18
19  You should have received a copy of the GNU General Public License along with
20  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21  Place - Suite 330, Boston, MA  02111-1307, USA.
22
23  Further information about the GNU General Public License can also be found on
24  the world wide web at http://www.gnu.org.
25
26 HISTORY
27 --------------------------------------------------------------------------------
28 03/29/00   JSB   Created
29
30 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
31 SENTRY
32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
33
34 #ifndef FGCONFIGFILE_H
35 #define FGCONFIGFILE_H
36
37 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
38 INCLUDES
39 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
40
41 #ifdef FGFS
42 #  include <simgear/compiler.h>
43 #  include STL_STRING
44 #  include STL_FSTREAM
45 #  include STL_IOSTREAM
46    SG_USING_STD(string);
47 #  if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
48      SG_USING_STD(ostream);
49      SG_USING_STD(istream);
50      SG_USING_STD(ifstream);
51      SG_USING_STD(cerr);
52      SG_USING_STD(endl);
53      SG_USING_STD(ios);
54      SG_USING_STD(cout);
55 #  endif
56 #else
57 #  include <fstream>
58 #  include <iostream>
59 #  include <string>
60    using std::string;
61    using std::ostream;
62    using std::istream;
63    using std::ifstream;
64    using std::ios;
65    using std::cerr;
66    using std::endl;
67    using std::cout;
68 #endif
69
70 #include "FGDefs.h"
71
72 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
73 DEFINITIONS
74 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
75
76 #define ID_CONFIGFILE "$Id$"
77
78 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
79 FORWARD DECLARATIONS
80 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
81
82 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
83 COMMENTS, REFERENCES, and NOTES [use "class documentation" below for API docs]
84 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
85
86 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
87 CLASS DOCUMENTATION
88 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
89
90 /** Encapsulates reading a JSBSim config file.
91     JSBSim config files are in XML format.
92     @author Jon S. Berndt
93     @version $Id$
94     @see -
95 */
96
97 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
98 CLASS DECLARATION
99 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
100
101 class FGConfigFile
102 {
103 public:
104   /** Constructor
105       @param Filename the name of the config file to be read. */
106   FGConfigFile(string Filename);
107   /// Destructor
108   ~FGConfigFile();
109
110   string GetLine(void);
111   string GetNextConfigLine(void);
112   string GetValue(string);
113   string GetValue(void);
114   bool IsCommentLine(void);
115   bool IsOpen(void) {return Opened;}
116   FGConfigFile& operator>>(double&);
117   FGConfigFile& operator>>(float&);
118   FGConfigFile& operator>>(int&);
119   FGConfigFile& operator>>(string&);
120   FGConfigFile& operator>>(eParam&);
121   void ResetLineIndexToZero(void);
122
123 private:
124   ifstream cfgfile;
125   string   CurrentLine;
126   bool     CommentsOn;
127   bool     Opened;
128   unsigned int      CurrentIndex;
129   void Debug(void);
130 };
131
132 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
133 #endif
134