]> git.mxchange.org Git - flightgear.git/blobdiff - src/Objects/obj.hxx
- adjusted for no-value constructor for FGPanel
[flightgear.git] / src / Objects / obj.hxx
index b2df767c9d9b4208b13c9b7edb0b02305b44473a..5ad0804e00cdd6d5bd3df967213ad5a9f96deff9 100644 (file)
@@ -34,7 +34,7 @@
 #  include <config.h>
 #endif
 
-#include <Include/compiler.h>
+#include <simgear/compiler.h>
 
 // #ifdef HAVE_WINDOWS_H
 // #  include <windows.h>
 
 #include STL_STRING
 
-#include <ssg.h>               // plib include
+#include <plib/ssg.h>          // plib include
 
 #include <Scenery/tileentry.hxx>
 
-FG_USING_STD(string);
+SG_USING_STD(string);
 
 
-// Load a .obj file and build the fragment list
-ssgBranch *fgObjLoad(const string& path, FGTileEntry *tile, const bool is_base);
+// duplicated from the TerraGear tools
+#define FG_MAX_NODES 4000
 
 
-#endif // _OBJ_HXX
+// 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);
+
+// Generate an ocean tile
+ssgBranch *fgGenTile( const string& path, FGTileEntry *t);
+
 
+// Generate a taxi sign
+ssgBranch *gen_taxi_sign( const string path, const string content );
 
+
+// Generate a runway sign
+ssgBranch *gen_runway_sign( const string path, const string name );
+
+
+#endif // _OBJ_HXX