]> git.mxchange.org Git - simgear.git/blob - simgear/ephemeris/stardata.hxx
Clamp pitch values rather than just dumping an error message.
[simgear.git] / simgear / ephemeris / stardata.hxx
1 // stardata.hxx -- manage star data
2 //
3 // Written by Curtis Olson, started March 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson - curt@flightgear.org
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 Library General Public
18 // License along with this library; if not, write to the
19 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 // Boston, MA  02111-1307, USA.
21 //
22 // $Id$
23
24
25 #ifndef _SG_STARDATA_HXX
26 #define _SG_STARDATA_HXX
27
28
29 #include <plib/sg.h>
30
31 #include <simgear/misc/sg_path.hxx>
32
33
34 #define SG_MAX_STARS 850
35
36
37 class SGStarData {
38
39     int nstars;
40     sgdVec3 *stars;
41     
42     SGPath data_path;
43
44 public:
45
46     // Constructor
47     SGStarData();
48     SGStarData( SGPath path );
49
50     // Destructor
51     ~SGStarData();
52
53     // load the stars database
54     bool load();
55
56     // stars
57     inline int getNumStars() const { return nstars; }
58     inline sgdVec3 *getStars() { return stars; }
59 };
60
61
62 #endif // _SG_STARDATA_HXX