]> git.mxchange.org Git - simgear.git/blob - simgear/sky/cloud.hxx
Initial revision.
[simgear.git] / simgear / sky / cloud.hxx
1 // cloud.hxx -- model a single cloud layer
2 //
3 // Written by Curtis Olson, started June 2000.
4 //
5 // Copyright (C) 2000  Curtis L. Olson  - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // 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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifndef _SG_CLOUD_HXX_
25 #define _SG_CLOUD_HXX_
26
27
28 #include <plib/ssg.h>
29
30 #include <simgear/misc/fgpath.hxx>
31
32
33 class SGCloudLayer {
34
35     ssgTransform *layer_transform;
36     ssgSimpleState *layer_state;
37
38     ssgColourArray *cl; 
39     ssgVertexArray *vl;
40     ssgTexCoordArray *tl;
41
42     float layer_asl;            // height above sea level (meters)
43
44 public:
45
46     // Constructor
47     SGCloudLayer( void );
48
49     // Destructor
50     ~SGCloudLayer( void );
51
52     // build the cloud object
53     ssgBranch *build( FGPath path, double size, double asl );
54
55     // repaint the cloud colors based on current value of sun_angle,
56     // sky, and fog colors.  This updates the color arrays for
57     // ssgVtxTable.
58     // sun angle in degrees relative to verticle
59     // 0 degrees = high noon
60     // 90 degrees = sun rise/set
61     // 180 degrees = darkest midnight
62     bool repaint( sgVec3 fog_color );
63
64     // reposition the cloud layer at the specified origin and
65     // orientation
66     // lon specifies a rotation about the Z axis
67     // lat specifies a rotation about the new Y axis
68     // spin specifies a rotation about the new Z axis (and orients the
69     // sunrise/set effects
70     bool reposition( sgVec3 p, sgVec3 up, double lon, double lat );
71 };
72
73
74 #endif // _SG_CLOUD_HXX_