]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/obj.hxx
Fix a problem where the compiler would mix up two function declarations because the...
[simgear.git] / simgear / scene / tgdb / obj.hxx
1 // obj.hxx -- routines to handle loading scenery and building the plib
2 //            scene graph.
3 //
4 // Written by Curtis Olson, started October 1997.
5 //
6 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
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., 675 Mass Ave, Cambridge, MA 02139, USA.
21 //
22 // $Id$
23
24
25 #ifndef _SG_OBJ_HXX
26 #define _SG_OBJ_HXX
27
28
29 #ifndef __cplusplus                                                          
30 # error This library requires C++
31 #endif                                   
32
33
34 #include <simgear/compiler.h>
35
36 #include STL_STRING
37
38 #include <plib/ssg.h>           // plib include
39
40 #include <simgear/math/point3d.hxx>
41
42 SG_USING_STD(string);
43
44 class SGBucket;
45 class SGMaterialLib;
46
47
48 // Load a Binary obj file
49 bool sgBinObjLoad( const string& path, const bool is_base,
50                    Point3D *center,
51                    double *bounding_radius,
52                    SGMaterialLib *matlib,
53                    bool use_random_objects,
54                    ssgBranch* geometry,
55                    ssgBranch* rwy_lights,
56                    ssgBranch* taxi_lights,
57                    ssgVertexArray *ground_lights );
58
59 // Generate an ocean tile
60 bool sgGenTile( const string& path, SGBucket b,
61                 Point3D *center, double *bounding_radius,
62                 SGMaterialLib *matlib, ssgBranch* geometry );
63
64
65 #endif // _SG_OBJ_HXX