]> git.mxchange.org Git - simgear.git/blob - simgear/ephemeris/stardata.cxx
0be378654c6dce1964614c76ed70ff97fa1b1591
[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   SG_USING_STD(getline);
35 #endif
36
37 // Constructor
38 SGStarData::SGStarData( const SGPath& path )
39 {
40     load(path);
41 }
42
43
44 // Destructor
45 SGStarData::~SGStarData() {
46 }
47
48
49 bool SGStarData::load( const SGPath& path ) {
50
51     _stars.clear();
52
53     // build the full path name to the stars data base file
54     path.append( "stars" );
55     SG_LOG( SG_ASTRO, SG_INFO, "  Loading stars from " << path.str() );
56
57     sg_gzifstream in( path.str() );
58     if ( ! in.is_open() ) {
59         SG_LOG( SG_ASTRO, SG_ALERT, "Cannot open star file: "
60                 << path.str() );
61         return false;
62     }
63
64     double ra, dec, mag;
65     char c;
66     string name;
67
68     // read in each line of the file
69     while ( ! in.eof() ) {
70         in >> skipcomment;
71
72         getline( in, name, ',' );
73         // cout << "  data = " << name << endl;
74
75         // read name and first comma
76         while ( in.get(c) ) {
77             if ( (c != ' ') && (c != ',') ) {
78                 // push back on the stream
79                 in.putback(c);
80                 break;
81             }
82         }
83
84         in >> ra;
85
86         // read past optional comma
87         while ( in.get(c) ) {
88             if ( (c != ' ') && (c != ',') ) {
89                 // push back on the stream
90                 in.putback(c);
91                 break;
92             }
93         }
94
95         in >> dec;
96
97         // read past optional comma
98         while ( in.get(c) ) {
99             if ( (c != ' ') && (c != ',') ) {
100                 // push back on the stream
101                 in.putback(c);
102                 break;
103             }
104         }
105
106         in >> mag;
107
108         // cout << " star data = " << ra << " " << dec << " " << mag << endl;
109         _stars.push_back(SGVec3d(ra, dec, mag));
110     }
111
112     SG_LOG( SG_ASTRO, SG_INFO, "  Loaded " << _stars.size() << " stars" );
113
114     return true;
115 }