]> git.mxchange.org Git - flightgear.git/blob - src/Objects/obj.hxx
Moved some of the low level scene graph construction code over to simgear.
[flightgear.git] / src / Objects / 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 _OBJ_HXX
26 #define _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/bucket/newbucket.hxx>
41 #include <simgear/math/sg_types.hxx>
42 #include <simgear/scene/material/matlib.hxx>
43
44 SG_USING_STD(string);
45
46
47 // duplicated from the TerraGear tools
48 #define FG_MAX_NODES 4000
49
50
51 // Load a Binary obj file
52 bool fgBinObjLoad( const string& path, const bool is_base,
53                    Point3D *center,
54                    double *bounding_radius,
55                    SGMaterialLib *matlib,
56                    ssgBranch* geometry,
57                    ssgBranch* rwy_lights,
58                    ssgBranch* taxi_lights,
59                    ssgVertexArray *ground_lights );
60
61 // Generate an ocean tile
62 bool fgGenTile( const string& path, SGBucket b,
63                 Point3D *center, double *bounding_radius,
64                 SGMaterialLib *matlib, ssgBranch* geometry );
65
66
67 #endif // _OBJ_HXX