// genobj.hxx -- Generate the flight gear "obj" file format from the // triangle output // // Written by Curtis Olson, started March 1999. // // Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // // $Id$ #ifndef _GENOBJ_HXX #define _GENOBJ_HXX #ifndef __cplusplus # error This library requires C++ #endif #include #include STL_STRING #include #include #include #include #include
#include
#include FG_USING_STD(string); FG_USING_STD(vector); class FGGenOutput { private: // node list in geodetic coordinates point_list geod_nodes; // triangles (by index into point list) triele_list tri_elements; // fan list fan_list fans[FG_MAX_AREA_TYPES]; // global bounding sphere Point3D gbs_center; double gbs_radius; // calculate the global bounding sphere. Center is the average of // the points. void calc_gbs( FGConstruct& c ); // caclulate the bounding sphere for a list of triangle faces void calc_group_bounding_sphere( FGConstruct& c, const fan_list& fans, Point3D *center, double *radius ); // caclulate the bounding sphere for the specified triangle face void calc_bounding_sphere( FGConstruct& c, const FGTriEle& t, Point3D *center, double *radius ); public: // Constructor && Destructor inline FGGenOutput() { } inline ~FGGenOutput() { } // build the necessary output structures based on the // triangulation data int build( FGConstruct& c ); // write out the fgfs scenery file int write( FGConstruct &c ); }; #endif // _GENOBJ_HXX