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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
/******************************************************************************
**
** weaponguide.cpp
**
** Sat Aug 14 10:57:18 2004
** Linux 2.4.21-198-default (#1 Thu Mar 11 17:43:56 UTC 2004) 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 "weaponguide.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'},
{"verbose", 1, 0, 'r'},
{"directory", 1, 0, 'd'},
{"linkdir", 1, 0, 'l'},
{"set", 1, 0, 's'},
{"image", 0, 0, 'i'},
{"imgsize", 1, 0, 'z'},
{"framename", 1, 0, 'f'},
{"style", 1, 0, 't'},
{"menustyle", 1, 0, 'm'},
{"allbuildings", 0, 0, 'b'},
{"roottech", 1, 0, 256},
{"writeall", 0, 0, 257},
{"help", 0, 0, 'h'},
{"version", 0, 0, 'v'},
{0, 0, 0, 0}
};
_executable += argv[0];
/* default values */
_r = 0;
_s = 0;
_i = false;
_z = 48;
_f = "main";
_t = "asc.css";
_m = "asc.css";
_b = false;
_writeall = false;
_h = false;
_v = false;
while ((c = getopt_long(argc, argv, "c:r:d:l:s:iz:f:t:m:bhv", long_options, &option_index)) != EOF)
{
switch(c)
{
case 'c':
_c = optarg;
break;
case 'r':
_r = atoi(optarg);
if (_r < 0)
{
string s;
s += "parameter range error: r must be >= 0";
throw(s);
}
if (_r > 10)
{
string s;
s += "parameter range error: r must be <= 10";
throw(s);
}
break;
case 'd':
_d = optarg;
break;
case 'l':
_l = optarg;
break;
case 's':
_s = atoi(optarg);
if (_s < 0)
{
string s;
s += "parameter range error: s must be >= 0";
throw(s);
}
break;
case 'i':
_i = true;
break;
case 'z':
_z = atoi(optarg);
if (_z < 0)
{
string s;
s += "parameter range error: z must be >= 0";
throw(s);
}
break;
case 'f':
_f = optarg;
break;
case 't':
_t = optarg;
break;
case 'm':
_m = optarg;
break;
case 'b':
_b = true;
break;
case 256:
_roottech = optarg;
break;
case 257:
_writeall = true;
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 << "generates html files that document ASCs units and buildings " << endl;
cout << "usage: " << _executable << " [ -crdlsizftmbhv ] vehicleFiles" << endl;
cout << " [ -c ] ";
cout << "[ --configfile ] ";
cout << "(";
cout << "type=";
cout << "STRING";
cout << ")\n";
cout << " Use given configuration file\n";
cout << " [ -r ] ";
cout << "[ --verbose ] ";
cout << "(";
cout << "type=";
cout << "INTEGER,";
cout << " range=0...10,";
cout << " default=0";
cout << ")\n";
cout << " Set verbosity level to x (0..10)\n";
cout << " [ -d ] ";
cout << "[ --directory ] ";
cout << "(";
cout << "type=";
cout << "STRING";
cout << ")\n";
cout << " place all output files in different directory\n";
cout << " [ -l ] ";
cout << "[ --linkdir ] ";
cout << "(";
cout << "type=";
cout << "STRING";
cout << ")\n";
cout << " relative directory for the menu links\n";
cout << " [ -s ] ";
cout << "[ --set ] ";
cout << "(";
cout << "type=";
cout << "INTEGER,";
cout << " range=0...,";
cout << " default=0";
cout << ")\n";
cout << " only use unitset with given ID\n";
cout << " [ -i ] ";
cout << "[ --image ] ";
cout << "(";
cout << "type=";
cout << "FLAG";
cout << ")\n";
cout << " generate images for units (Linux only)\n";
cout << " [ -z ] ";
cout << "[ --imgsize ] ";
cout << "(";
cout << "type=";
cout << "INTEGER,";
cout << " range=0...,";
cout << " default=48";
cout << ")\n";
cout << " size of unit images\n";
cout << " [ -f ] ";
cout << "[ --framename ] ";
cout << "(";
cout << "type=";
cout << "STRING,";
cout << " default=main";
cout << ")\n";
cout << " name of the main frame\n";
cout << " [ -t ] ";
cout << "[ --style ] ";
cout << "(";
cout << "type=";
cout << "STRING,";
cout << " default=asc.css";
cout << ")\n";
cout << " name of the main pages' stylesheet\n";
cout << " [ -m ] ";
cout << "[ --menustyle ] ";
cout << "(";
cout << "type=";
cout << "STRING,";
cout << " default=asc.css";
cout << ")\n";
cout << " name of the menu stylesheet\n";
cout << " [ -b ] ";
cout << "[ --allbuildings ] ";
cout << "(";
cout << "type=";
cout << "FLAG";
cout << ")\n";
cout << " generate doc for all buildings instead of uniquely named ones\n";
cout << " [ --roottech ] ";
cout << "(";
cout << "type=";
cout << "STRING";
cout << ")\n";
cout << " specify root technologies for tech dependency\n";
cout << " [ --writeall ] ";
cout << "(";
cout << "type=";
cout << "FLAG";
cout << ")\n";
cout << " skip the check for changed files, which speeds up operation, but touches all files\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);
}
|