]> git.mxchange.org Git - flightgear.git/blobdiff - src/Objects/obj.hxx
I'm attaching diffs to add a new FGInput module to FlightGear
[flightgear.git] / src / Objects / obj.hxx
index 13c5fef10094750e8d1a6b95b656fc31cfe0a502..5ad0804e00cdd6d5bd3df967213ad5a9f96deff9 100644 (file)
@@ -55,11 +55,24 @@ SG_USING_STD(string);
 #define FG_MAX_NODES 4000
 
 
-// Load a .obj file
-ssgBranch *fgObjLoad(const string& path, FGTileEntry *tile,
-                    ssgVertexArray *lights, const bool is_base);
+// 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);
 
-#endif // _OBJ_HXX
+// 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