]> git.mxchange.org Git - flightgear.git/blobdiff - src/Objects/obj.hxx
Moved random ground cover object management code (userdata.[ch]xx) over
[flightgear.git] / src / Objects / obj.hxx
index fe87427e71f21c5d07daa7f848d5fb92b1bd90af..cfd99232d3cd9706ee62badef6a1b5d831f2ea0d 100644 (file)
@@ -1,4 +1,5 @@
-// obj.hxx -- routines to handle WaveFront .obj-ish format files.
+// obj.hxx -- routines to handle loading scenery and building the plib
+//            scene graph.
 //
 // Written by Curtis Olson, started October 1997.
 //
 #endif                                   
 
 
-#ifdef HAVE_CONFIG_H
-#  include <config.h>
-#endif
-
 #include <simgear/compiler.h>
 
-// #ifdef HAVE_WINDOWS_H
-// #  include <windows.h>
-// #endif
-
-// #include <GL/glut.h>
-
 #include STL_STRING
 
-#include <plib/ssg.h>          // plib include
+#include <plib/ssg.h>           // plib include
 
-#include <Scenery/tileentry.hxx>
+#include <simgear/math/point3d.hxx>
 
 SG_USING_STD(string);
 
+class SGBucket;
+class SGMaterialLib;
 
-// duplicated from the TerraGear tools
-#define FG_MAX_NODES 4000
-
-
-// Load a binary object file
-ssgBranch *fgBinObjLoad(const string& path, FGTileEntry *tile,
-                       ssgVertexArray *lights, const bool is_base);
 
-// Load an ascii object file
-ssgBranch *fgAsciiObjLoad(const string& path, FGTileEntry *tile,
-                         ssgVertexArray *lights, const bool is_base);
+// Load a Binary obj file
+bool fgBinObjLoad( const string& path, const bool is_base,
+                   Point3D *center,
+                   double *bounding_radius,
+                   SGMaterialLib *matlib,
+                   bool use_random_objects,
+                   ssgBranch* geometry,
+                   ssgBranch* rwy_lights,
+                   ssgBranch* taxi_lights,
+                   ssgVertexArray *ground_lights );
 
 // Generate an ocean tile
-ssgBranch *fgGenTile( const string& path, FGTileEntry *t);
+bool fgGenTile( const string& path, SGBucket b,
+                Point3D *center, double *bounding_radius,
+                SGMaterialLib *matlib, ssgBranch* geometry );
 
 
 #endif // _OBJ_HXX