[BACK]Return to ivfix.c++ CVS log [TXT][DIR] Up to [Development] / inventor / apps / tools / ivfix

File: [Development] / inventor / apps / tools / ivfix / ivfix.c++ (download)

Revision 1.3, Sun Oct 29 15:04:17 2000 UTC (16 years, 11 months ago) by jlim
Branch: MAIN
CVS Tags: release-2_1_5-9, release-2_1_5-8, release-2_1_5-10, HEAD
Changes since 1.2: +0 -1 lines

Eliminated or reduced compiler errors and warnings, as tested with
egcs-2.91.66 (on Red Hat 6.0) and gcc 2.96 (on Red Hat 6.2).

/*
 *
 *  Copyright (C) 2000 Silicon Graphics, Inc.  All Rights Reserved. 
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 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
 *  Lesser General Public License for more details.
 *
 *  Further, this software is distributed without any warranty that it is
 *  free of the rightful claim of any third person regarding infringement
 *  or the like.  Any license provided herein, whether implied or
 *  otherwise, applies only to this software file.  Patent licenses, if
 *  any, provided herein do not apply to combinations of this program with
 *  other software, or any other product whatsoever.
 * 
 *  You should have received a copy of the GNU Lesser 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
 *
 *  Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
 *  Mountain View, CA  94043, or:
 * 
 *  http://www.sgi.com 
 * 
 *  For further information regarding this notice, see: 
 * 
 *  http://oss.sgi.com/projects/GenInfo/NoticeExplan/
 *
 */

#include <string.h>
#include <unistd.h>
#include <stdlib.h>

#include <Inventor/SoDB.h>
#include <Inventor/SoInput.h>
#include <Inventor/SoInteraction.h>
#include <Inventor/actions/SoWriteAction.h>
#include <Inventor/nodes/SoSeparator.h>

#include "IfFixer.h"
#include "IfReporter.h"

/////////////////////////////////////////////////////////////////////////////
//
// This structure is used to store and pass around command-line options.
//
/////////////////////////////////////////////////////////////////////////////

typedef struct {
    IfFixer::ReportLevel	reportLevel;
    SbBool			writeAscii;
    SbBool			doAnyNormals;
    SbBool			doAnyTexCoords;
    SbBool			writeStrips;
    SbBool			writeVertexProperty;
    SoInput			inFile;
    SoOutput			outFile;
} OptionInfo;

/////////////////////////////////////////////////////////////////////////////
//
// Forward references.
//
/////////////////////////////////////////////////////////////////////////////

static void	printUsage(const char *progname);
static void	parseArgs(int argc, char **argv, OptionInfo &options);
static void	initOptions(OptionInfo &options);

/////////////////////////////////////////////////////////////////////////////
//
// Mainline.
//
/////////////////////////////////////////////////////////////////////////////

main(int argc, char **argv)
{
    OptionInfo options;

    initOptions(options);

    SoInteraction::init();

    // Parse arguments
    parseArgs(argc, argv, options);

    IfFixer fixer;
    fixer.setReportLevel(options.reportLevel, stderr);
    fixer.setStripFlag(options.writeStrips);
    fixer.setNormalFlag(options.doAnyNormals);
    fixer.setTextureCoordFlag(options.doAnyTexCoords);
    fixer.setVertexPropertyFlag(options.writeVertexProperty);

    // Read stuff:
    IfReporter::startReport("Reading file");
    SoSeparator *root = SoDB::readAll(&options.inFile);
    if (root == NULL) {
	fprintf(stderr, "\n%s: Problem reading data from file\n", argv[0]);
	printUsage(argv[0]);
    }
    IfReporter::finishReport();

    // We don't need to ref the root since we want the IfFixer to get
    // rid of the scene graph when it's done with it
    SoNode *resultRoot = fixer.fix(root);
    if (resultRoot == NULL) {
	fprintf(stderr, "%s: No shapes found in data\n", argv[0]);
	return 1;
    }

    resultRoot->ref();

    // Write out the results
    IfReporter::startReport("Writing result");
    SoWriteAction wa(&options.outFile);
    if (! options.writeAscii)
	wa.getOutput()->setBinary(TRUE);
    wa.apply(resultRoot);
    IfReporter::finishReport();

    // Clean up
    resultRoot->unref();

    return 0;
}

/////////////////////////////////////////////////////////////////////////////
//
// Prints usage message and exits.
//
/////////////////////////////////////////////////////////////////////////////

static void
printUsage(const char *progname)
{
    fprintf(stderr, "Usage: %s [options] [infile] [outfile]\n", progname);
    fprintf(stderr,
	    "\t-a     : Write out an ascii file.  Default is binary\n"
	    "\t-d dir : Add 'dir' to the list of directories to search\n"
	    "\t-f     : Produce independent faces rather than tri strips\n"
	    "\t-h     : Print this message (help)\n"
	    "\t-n     : Do not generate any normals\n"
	    "\t-p     : Do not produce SoVertexProperty nodes for properties\n"
	    "\t-t     : Do not generate any texture coordinates\n"
	    "\t-v     : (Verbose) Display status info during processing\n"
	    "\t-V     : (Very verbose) Display more detailed status info\n"
	    );

    exit(99);
}

/////////////////////////////////////////////////////////////////////////////
//
// Parses input options, filling in OptionInfo structure.
//
/////////////////////////////////////////////////////////////////////////////

static void
parseArgs(int argc, char **argv, OptionInfo &options)
{
    SbBool uhoh = FALSE;
    int c;
    
    while ((c = getopt(argc, argv, "ad:fhnptvV")) != -1) {
	switch(c) {
	  case 'a':
	    options.writeAscii = TRUE;
	    break;
	  case 'd':
	    options.inFile.addDirectoryLast(optarg);
	    break;
	  case 'f':
	    options.writeStrips = FALSE;
	    break;
	  case 'n':
	    options.doAnyNormals = FALSE;
	    break;
	  case 'p':
	    options.writeVertexProperty = FALSE;
	    break;
	  case 't':
	    options.doAnyTexCoords = FALSE;
	    break;
	  case 'v':
	    options.reportLevel = IfFixer::LOW;
	    break;
	  case 'V':
	    options.reportLevel = IfFixer::HIGH;
	    break;
	  case 'h':	// Help
	  default:
	    uhoh = TRUE;
	    break;
	}
    }

    // Handle optional input file name
    if (optind < argc) {
	char *inFileName = argv[optind++];
	if (! options.inFile.openFile(inFileName)) {
	    fprintf(stderr, "%s: Could not open file %s", argv[0], inFileName);
	    printUsage(argv[0]);
	}

        // If the filename includes a directory path, add the directory name
        // to the list of directories where to look for input files
        const char *slashPtr;
        char *searchPath = NULL;
        if ((slashPtr = strrchr(inFileName, '/')) != NULL) {
            searchPath = strdup(inFileName);
            searchPath[slashPtr - inFileName] = '\0';
            SoInput::addDirectoryFirst(searchPath);
	    free(searchPath);
        }
    }

    // Trying to read stdin from a tty is a no-no
    else if (isatty(fileno(stdin)))
	uhoh = TRUE;

    // Handle optional output file name
    if (optind < argc) {
	char *outFileName = argv[optind++];
	if (! options.outFile.openFile(outFileName)) {
	    fprintf(stderr, "%s: Could not open file %s", argv[0],outFileName);
	    printUsage(argv[0]);
	}
    }

    // Too many arguments?
    if (optind < argc)
	uhoh = TRUE;

    if (uhoh)
	printUsage(argv[0]);
}

/////////////////////////////////////////////////////////////////////////////
//
// Initializes an OptionInfo structure.
//
/////////////////////////////////////////////////////////////////////////////

static void
initOptions(OptionInfo &options)
{
    options.reportLevel		= IfFixer::NONE;
    options.writeAscii		= FALSE;
    options.doAnyNormals	= TRUE;
    options.doAnyTexCoords	= TRUE;
    options.writeStrips		= TRUE;
    options.writeVertexProperty	= TRUE;
}