1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
/******************************************************************************
**
** makegfx.cpp
**
** Thu May 17 15:25:42 2001
** Linux 2.4.4 (#1 SMP Sam Apr 28 13:21:30 CEST 2001) i686
** martin@linux. (Martin Bickel)
**
** Definition of command line parser class
**
** Automatically created by genparse v0.5.2
**
** See http://genparse.sourceforge.net/ for details and updates
**
******************************************************************************/
#include <getopt.h>
#include <stdlib.h>
#include "makegfx.h"
/*----------------------------------------------------------------------------
**
** Cmdline::Cmdline()
**
** Constructor method.
**
**--------------------------------------------------------------------------*/
Cmdline::Cmdline(int argc, char *argv[]) throw (string)
{
extern char *optarg;
extern int optind;
int option_index = 0;
int c;
static struct option long_options[] =
{
{"configfile", 1, 0, 'c'},
{"help", 0, 0, 'h'},
{"version", 0, 0, 'v'},
{0, 0, 0, 0}
};
_executable += argv[0];
/* default values */
_h = false;
_v = false;
while ((c = getopt_long(argc, argv, "c:hv", long_options, &option_index)) != EOF)
{
switch(c)
{
case 'c':
_c = optarg;
break;
case 'h':
_h = true;
this->usage();
break;
case 'v':
_v = true;
break;
default:
this->usage();
}
} /* while */
_optind = optind;
}
/*----------------------------------------------------------------------------
**
** Cmdline::usage()
**
** Usage function.
**
**--------------------------------------------------------------------------*/
void Cmdline::usage()
{
cout << "builds a ASC graphicset from single PCX files " << endl;
cout << "usage: " << _executable << " [ -chv ] GRAPHICSET.GFX IMAGES.PCX [...]" << endl;
cout << " [ -c ] ";
cout << "[ --configfile ] ";
cout << "(";
cout << "type=";
cout << "STRING";
cout << ")\n";
cout << " Use given configuration file\n";
cout << " [ -h ] ";
cout << "[ --help ] ";
cout << "(";
cout << "type=";
cout << "FLAG";
cout << ")\n";
cout << " Display help information.\n";
cout << " [ -v ] ";
cout << "[ --version ] ";
cout << "(";
cout << "type=";
cout << "FLAG";
cout << ")\n";
cout << " Output version.\n";
exit(0);
}
|