]> git.mxchange.org Git - simgear.git/blob - simgear/ephemeris/stardata.cxx
Linux test_HTTP fixes.
[simgear.git] / simgear / ephemeris / stardata.cxx
1 // stardata.cxx -- manage star data
2 //
3 // Written by Curtis Olson, started March 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - http://www.flightgear.org/~curt
6 //
7 // This library is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU Library General Public
9 // License as published by the Free Software Foundation; either
10 // version 2 of the License, or (at your option) any later version.
11 //
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // Library 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 // $Id$
22
23 #ifdef HAVE_CONFIG_H
24 #  include <simgear_config.h>
25 #endif
26
27 #include <simgear/debug/logstream.hxx>
28 #include <simgear/misc/sg_path.hxx>
29 #include <simgear/misc/sgstream.hxx>
30
31 #include "stardata.hxx"
32
33 #if defined (_MSC_VER)
34   using std::getline;
35 #endif
36
37 using std::string;
38
39 // Constructor
40 SGStarData::SGStarData( const SGPath& path )
41 {
42     load(path);
43 }
44
45
46 // Destructor
47 SGStarData::~SGStarData() {
48 }
49
50
51 bool SGStarData::load( const SGPath& path ) {
52
53     _stars.clear();
54
55     // build the full path name to the stars data base file
56     SGPath tmp = path;
57     tmp.append( "stars" );
58     SG_LOG( SG_ASTRO, SG_INFO, "  Loading stars from " << tmp.str() );
59
60     sg_gzifstream in( tmp.str() );
61     if ( ! in.is_open() ) {
62         SG_LOG( SG_ASTRO, SG_ALERT, "Cannot open star file: "
63                 << tmp.str() );
64         return false;
65     }
66
67     double ra, dec, mag;
68     char c;
69     string name;
70
71     // read in each line of the file
72     while ( ! in.eof() ) {
73         in >> skipcomment;
74
75         getline( in, name, ',' );
76         // cout << "  data = " << name << endl;
77
78         // read name and first comma
79         while ( in.get(c) ) {
80             if ( (c != ' ') && (c != ',') ) {
81                 // push back on the stream
82                 in.putback(c);
83                 break;
84             }
85         }
86
87         in >> ra;
88
89         // read past optional comma
90         while ( in.get(c) ) {
91             if ( (c != ' ') && (c != ',') ) {
92                 // push back on the stream
93                 in.putback(c);
94                 break;
95             }
96         }
97
98         in >> dec;
99
100         // read past optional comma
101         while ( in.get(c) ) {
102             if ( (c != ' ') && (c != ',') ) {
103                 // push back on the stream
104                 in.putback(c);
105                 break;
106             }
107         }
108
109         in >> mag;
110
111         // cout << " star data = " << ra << " " << dec << " " << mag << endl;
112         _stars.push_back(SGVec3d(ra, dec, mag));
113     }
114
115     SG_LOG( SG_ASTRO, SG_INFO, "  Loaded " << _stars.size() << " stars" );
116
117     return true;
118 }