]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/userdata.hxx
7001e9954eb396e8d7dca83227632eafd481b909
[simgear.git] / simgear / scene / tgdb / userdata.hxx
1 // userdata.hxx -- two classes for populating ssg user data slots in association
2 //                 with our implimenation of random surface objects.
3 //
4 // Written by David Megginson, started December 2001.
5 //
6 // Copyright (C) 2001 - 2003  Curtis L. Olson  - http://www.flightgear.org/~curt
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 //
22 // $Id$
23
24
25 #ifndef _SG_USERDATA_HXX
26 #define _SG_USERDATA_HXX
27
28 #include <simgear/compiler.h>
29
30 #include STL_STRING
31
32 #include <plib/sg.h>
33
34 #include <osg/Referenced>
35 #include <osg/Geometry>
36 #include <osg/Group>
37
38 SG_USING_STD(string);
39
40 class SGMaterial;
41 class SGMatModel;
42 class SGMatModelGroup;
43 class SGModelLib;
44 class SGPropertyNode;
45
46
47 /**
48  * the application must call sgUserDataInit() and specify the
49  * following values (needed by the model loader callback at draw time)
50  * before drawing any scenery.
51  */
52 void sgUserDataInit( SGModelLib *m, const string &r,
53                      SGPropertyNode *p, double t );
54
55
56 /**
57  * User data for populating leaves when they come in range.
58  */
59 class SGLeafUserData : public osg::Referenced
60 {
61 public:
62     bool is_filled_in;
63     osg::Geometry *leaf;
64     SGMaterial *mat;
65     osg::Group *branch;
66     float sin_lat;
67     float cos_lat;
68     float sin_lon;
69     float cos_lon;
70
71     void setup_triangle( int i );
72 };
73
74
75 /**
76  * User data for populating triangles when they come in range.
77  */
78 class SGTriUserData : public osg::Referenced
79 {
80 public:
81     bool is_filled_in;
82     float * p1;
83     float * p2;
84     float * p3;
85     osg::Vec3 center;
86     double area;
87     SGMatModelGroup * object_group;
88     osg::Group * branch;
89     SGLeafUserData * leafData;
90     unsigned int seed;
91
92     void fill_in_triangle();
93     void add_object_to_triangle(SGMatModel * object);
94     void makeWorldMatrix (sgMat4 ROT, double hdg_deg );
95 };
96
97 #endif // _SG_USERDATA_HXX