[Plib-cvs] plib/src/ssg ssgLoadASC.cxx,NONE,1.1 Makefile.am,1.46,1.47
Brought to you by:
sjbaker
From: Wolfram K. <wol...@us...> - 2004-10-04 08:03:53
|
Update of /cvsroot/plib/plib/src/ssg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25947 Modified Files: Makefile.am Added Files: ssgLoadASC.cxx Log Message: adding ssgLoadASC, very first version --- NEW FILE: ssgLoadASC.cxx --- /* PLIB - A Suite of Portable Game Libraries Copyright (C) 1998,2002 Steve Baker This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA For further information visit http://plib.sourceforge.net [...971 lines suppressed...] untexturedState.ref(); currentState = &untexturedState; top_branch = new ssgBranch ; curr_branch_ = top_branch; if ( !parser.openFile( fname, &parser_spec )) { delete top_branch ; return 0; } if ( !parse() ) { delete top_branch ; top_branch = 0 ; } // parse_free(); parser.closeFile(); return top_branch ; } Index: Makefile.am =================================================================== RCS file: /cvsroot/plib/plib/src/ssg/Makefile.am,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- Makefile.am 26 Sep 2004 09:38:52 -0000 1.46 +++ Makefile.am 4 Oct 2004 08:03:36 -0000 1.47 @@ -25,7 +25,7 @@ ssgSaveVRML1.cxx ssgLoaderWriterStuff.h ssgMSFSPalette.h ssg3ds.h \ ssgLoadMDL.h ssgSave3ds.cxx ssgAxisTransform.cxx ssgLoadATG.cxx \ ssgSaveFLT.cxx ssgSaveATG.cxx ssgLoadIV.cxx ssgLoad.cxx ssgLoadVRML.h \ - ssgLoadMDL_BGLTexture.cxx ssgLoadXPlaneObj.cxx ssgSaveASC.cxx \ + ssgLoadMDL_BGLTexture.cxx ssgLoadXPlaneObj.cxx ssgLoadASC.cxx ssgSaveASC.cxx \ ssgSaveIV.cxx \ ssgVertSplitter.h ssgVertSplitter.cxx ssgStatistics.cxx |