]> git.mxchange.org Git - simgear.git/blob - simgear/scene/sky/cloud.hxx
- Tweaks to doxygen main page.
[simgear.git] / simgear / scene / sky / cloud.hxx
1 /**
2  * \file cloud.hxx
3  * Provides a class to model a single cloud layer
4  */
5
6 // Written by Curtis Olson, started June 2000.
7 //
8 // Copyright (C) 2000  Curtis L. Olson  - curt@flightgear.org
9 //
10 // This library is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU Library General Public
12 // License as published by the Free Software Foundation; either
13 // version 2 of the License, or (at your option) any later version.
14 //
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 // Library General Public License for more details.
19 //
20 // You should have received a copy of the GNU Library General Public
21 // License along with this library; if not, write to the
22 // Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 // Boston, MA  02111-1307, USA.
24 //
25 // $Id$
26
27
28 #ifndef _SG_CLOUD_HXX_
29 #define _SG_CLOUD_HXX_
30
31 #include <simgear/compiler.h>
32
33 #include <plib/ssg.h>
34
35 #include STL_STRING
36 SG_USING_STD(string);
37
38
39 /**
40  * A class layer to model a single cloud layer
41  */
42 class SGCloudLayer {
43 public:
44
45     /**
46      * This is the list of available cloud coverages/textures
47      */
48     enum Coverage {
49         SG_CLOUD_OVERCAST = 0,
50         SG_CLOUD_BROKEN,
51         SG_CLOUD_SCATTERED,
52         SG_CLOUD_FEW,
53         SG_CLOUD_CIRRUS,
54         SG_CLOUD_CLEAR,
55         SG_MAX_CLOUD_COVERAGES
56     };
57
58     /**
59      * Constructor
60      * @param tex_path the path to the set of cloud textures
61      */
62     SGCloudLayer( const string &tex_path );
63
64     /**
65      * Destructor
66      */
67     ~SGCloudLayer( void );
68
69     /** get the cloud span (in meters) */
70     float getSpan_m () const;
71     /**
72      * set the cloud span
73      * @param span_m the cloud span in meters
74      */
75     void setSpan_m (float span_m);
76
77     /** get the layer elevation (in meters) */
78     float getElevation_m () const;
79     /**
80      * set the layer elevation.  Note that this specifies the bottom
81      * of the cloud layer.  The elevation of the top of the layer is
82      * elevation_m + thickness_m.
83      * @param elevation_m the layer elevation in meters
84      */
85     void setElevation_m (float elevation_m);
86
87     /** get the layer thickness */
88     float getThickness_m () const;
89     /**
90      * set the layer thickness.
91      * @param thickness_m the layer thickness in meters.
92      */
93     void setThickness_m (float thickness_m);
94
95     /**
96      * get the transition/boundary layer depth in meters.  This
97      * allows gradual entry/exit from the cloud layer via adjusting
98      * visibility.
99      */
100     float getTransition_m () const;
101     /**
102      * set the transition layer size in meters
103      * @param transition_m the transition layer size in meters
104      */
105     void setTransition_m (float transition_m);
106
107     /** get coverage type */
108     Coverage getCoverage () const;
109     /**
110      * set coverage type
111      * @param coverage the coverage type
112      */
113     void setCoverage (Coverage coverage);
114
115     /** build the cloud object */
116     void rebuild();
117
118     /**
119      * repaint the cloud colors based on the specified fog_color
120      * @param fog_color the fog color
121      */
122     bool repaint( sgVec3 fog_color );
123
124     /**
125      * reposition the cloud layer at the specified origin and
126      * orientation.
127      * @param p position vector
128      * @param up the local up vector
129      * @param lon specifies a rotation about the Z axis
130      * @param lat specifies a rotation about the new Y axis
131      * @param spin specifies a rotation about the new Z axis
132      *        (and orients the sunrise/set effects)
133      */
134     bool reposition( sgVec3 p, sgVec3 up, double lon, double lat, double alt );
135
136     /** draw the cloud layer */
137     void draw();
138
139 private:
140
141     ssgRoot *layer_root;
142     ssgTransform *layer_transform;
143     ssgLeaf *layer[4];
144
145     ssgColourArray *cl[4]; 
146     ssgVertexArray *vl[4];
147     ssgTexCoordArray *tl[4];
148
149     // height above sea level (meters)
150     SGPath texture_path;
151     float layer_span;
152     float layer_asl;
153     float layer_thickness;
154     float layer_transition;
155     Coverage layer_coverage;
156     float scale;
157
158     // for handling texture coordinates to simulate cloud movement
159     // from winds, and to simulate the clouds being tied to ground
160     // position, not view position
161     // double xoff, yoff;
162     double last_lon, last_lat;
163
164 };
165
166
167 // make an ssgSimpleState for a cloud layer given the named texture
168 ssgSimpleState *sgCloudMakeState( const string &path );
169
170
171 #endif // _SG_CLOUD_HXX_