]> git.mxchange.org Git - simgear.git/blob - simgear/scene/sky/oursun.hxx
Merge branch 'topic/nasal' into next
[simgear.git] / simgear / scene / sky / oursun.hxx
1 // oursun.hxx -- model earth's sun
2 //
3 // Written by Durk Talsma. Originally started October 1997, for distribution  
4 // with the FlightGear project. Version 2 was written in August and 
5 // September 1998. This code is based upon algorithms and data kindly 
6 // provided by Mr. Paul Schlyter. (pausch@saaf.se). 
7 //
8 // Separated out rendering pieces and converted to ssg by Curt Olson,
9 // March 2000
10 //
11 // This library is free software; you can redistribute it and/or
12 // modify it under the terms of the GNU Library General Public
13 // License as published by the Free Software Foundation; either
14 // version 2 of the License, or (at your option) any later version.
15 //
16 // This library is distributed in the hope that it will be useful,
17 // but WITHOUT ANY WARRANTY; without even the implied warranty of
18 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 // Library General Public License for more details.
20 //
21 // You should have received a copy of the GNU General Public License
22 // along with this program; if not, write to the Free Software
23 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24 //
25 // $Id$
26
27
28 #ifndef _SG_SUN_HXX_
29 #define _SG_SUN_HXX_
30
31 #include <osg/Array>
32 #include <osg/Node>
33 #include <osg/MatrixTransform>
34
35 #include <simgear/structure/SGReferenced.hxx>
36
37 #include <simgear/misc/sg_path.hxx>
38 #include <simgear/props/props.hxx>
39
40 class SGSun : public SGReferenced {
41
42     osg::ref_ptr<osg::MatrixTransform> sun_transform;
43
44     osg::ref_ptr<osg::Vec4Array> sun_cl;
45     osg::ref_ptr<osg::Vec4Array> ihalo_cl;
46     osg::ref_ptr<osg::Vec4Array> ohalo_cl;
47
48     double visibility;
49     double prev_sun_angle;
50     // distance of light traveling through the atmosphere
51     double path_distance;
52     double sun_exp2_punch_through;
53
54     SGPropertyNode_ptr env_node;
55
56 public:
57
58     // Constructor
59     SGSun( void );
60
61     // Destructor
62     ~SGSun( void );
63
64     // return the sun object
65     osg::Node* build( SGPath path, double sun_size, SGPropertyNode *property_tree_Node );
66
67     // repaint the sun colors based on current value of sun_anglein
68     // degrees relative to verticle
69     // 0 degrees = high noon
70     // 90 degrees = sun rise/set
71     // 180 degrees = darkest midnight
72     bool repaint( double sun_angle, double new_visibility );
73
74     // reposition the sun at the specified right ascension and
75     // declination, offset by our current position (p) so that it
76     // appears fixed at a great distance from the viewer.  Also add in
77     // an optional rotation (i.e. for the current time of day.)
78     bool reposition( const SGVec3f& p, double angle,
79                      double rightAscension, double declination,
80                      double sun_dist, double lat, double alt_asl, double sun_angle );
81
82     // retrun the current color of the sun
83     SGVec4f get_color();
84 };
85
86
87 #endif // _SG_SUN_HXX_