home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / xloadimg.zip / xloadimage.4.1 / options.c < prev    next >
C/C++ Source or Header  |  1993-10-28  |  25KB  |  903 lines

  1. /* options.c:
  2.  *
  3.  * finds which option in an array an argument matches
  4.  *
  5.  * jim frost 10.03.89
  6.  *
  7.  * Copyright 1989 Jim Frost.
  8.  * See included file "copyright.h" for complete copyright information.
  9.  */
  10.  
  11. #include "copyright.h"
  12. #include <stdio.h>
  13. #include "image.h"
  14. #include "options.h"
  15.  
  16. extern char *ProgramName;
  17. /* options array and definitions.  If you add something to this you also
  18.  * need to add its OptionId in options.h.
  19.  */
  20.  
  21. static OptionArray Options[] = {
  22.  
  23.   /* global options
  24.    */
  25.  
  26.   { "border",     BORDER,     "color", "\
  27. Set the color used for the border around centered or placed images.", },
  28.   { "configuration", CONFIGURATION, NULL, "\
  29. Show the current configuration including any information loaded from\n\
  30. the ~/.xloadimagerc configuration file.", },
  31. #ifdef DEBUG
  32.   { "debug",      DBUG,       NULL, "\
  33. Turn on synchronous mode for debugging.", },
  34. #endif /* DEBUG */
  35.   { "default",    DEFAULT,    NULL, "\
  36. Set the root background to the default pattern and colors.", },
  37.   { "display",    DISPLAY,    NULL, "\
  38. Indicate the X display you would like to use.", },
  39.   { "dump",       DUMP,       "type[,options] filename", "\
  40. Dump loaded image into an image file of the specified type and name.  Use\n\
  41. the -path or -configuration options to determine the possible formats.\n\
  42. Some image types may allow options; these are specified following a comma.\n\
  43. If the image type retains a title, -title can be used to set or change it." },
  44.   { "fit",        FIT,        NULL, "\
  45. Force the image(s) to use the default colormap.", },
  46.   { "fork",       FORK,       NULL, "\
  47. Background automatically.  Turns on -quiet.", },
  48.   { "fullscreen", FULLSCREEN, NULL, "\
  49. Use the whole screen for displaying an image.  If -onroot is also specified,\n\
  50. the image will be zoomed to fit the size of the screen.", },
  51.   { "geometry",   GEOMETRY,   "window_geometry", "\
  52. Specify the size of the display window.  Ignored if -fullscreen is given.\n\
  53. If used in conjunction with -onroot, this defines the size of the base image.", },
  54.   { "help",       HELP,       "[option ...]", "\
  55. Give help on a particular option or series of options.  If no option is\n\
  56. supplied, a list of available options is given.", },
  57.   { "identify",   IDENTIFY,   NULL, "\
  58. Identify images rather than displaying them.", },
  59.   { "install",    INSTALL,    NULL, "\
  60. Force colormap installation.  This option is useful for naive window managers\n\
  61. which do not know how to handle colormap installation, but should be avoided\n\
  62. unless necessary.", },
  63.   { "list",       LIST,       NULL, "\
  64. List the images along the image path.  Use `xloadimage -path' to see the\n\
  65. current image path.", },
  66.   { "onroot",     ONROOT,     NULL, "\
  67. Place the image on the root window.  If used in conjunction with -fullscreen,\n\
  68. the image will be zoomed to fit.  -border, -at, and -center also affect the\n\
  69. results.", },
  70.   { "path",       PATH,       NULL, "\
  71. Display the image path and default extensions that are loaded from the\n\
  72. .xloadimagerc file.  This option is identical to the -configuration option\n\
  73. and is provided for backwards compatibility.", },
  74.   { "pixmap",     PIXMAP,     NULL, "\
  75. Force the use of a pixmap as backing store.  This may improve performance but\n\
  76. may not work on memory-limited servers.", },
  77.   { "private",    PRIVATE,    NULL, "\
  78. Force the use of a private colormap.  This happens automatically if a visual\n\
  79. other than the default is used.  This is the opposite of -fit.", },
  80.   { "quiet",      QUIET,      NULL, "\
  81. Turn off verbose mode.  This is the default if using -onroot or -windowid.", },
  82.   { "shrink",      SHRINKTOFIT, NULL, "\
  83. Shrink a images larger than screen to fit.  This is particularly useful with\n\
  84. DEC servers that don't allow creation of windows larger than the screen.", },
  85.   { "slideshow",  OPT_IGNORE, NULL, "\
  86. Compatibility switch for older versions of xloadimage.  Since this is the\n\
  87. the default for versions 3.0 and newer, it does nothing.", },
  88.   { "supported",  SUPPORTED,  NULL, "\
  89. Give a list of the supported image types.", },
  90.   { "verbose",    VERBOSE,    NULL, "\
  91. Turn on verbose mode.  This is the default if using -view.", },
  92.   { "version",    VER_NUM,    NULL, "\
  93. Show the version number of this version of xloadimage.", },
  94.   { "view",       VIEW,       NULL, "\
  95. View an image in a window.  This is the default for all but xsetbg.", },
  96.   { "visual",     VISUAL,     NULL, "\
  97. Force the use of a particular visual to display an image.  Normally xloadimage\n\
  98. will attempt to pick a visual which is reasonable for the supplied image.", },
  99.   { "windowid",   WINDOWID,   "window_id", "\
  100. Set the background of a particular window.  This is similar to -onroot and\n\
  101. is useful for servers which use an untagged virtual root.  The window ID\n\
  102. should be supplied as a hexadecimal number, eg 0x40003.", },
  103.  
  104.   /* image options
  105.    */
  106.  
  107.   { "at",         AT,         NULL, "\
  108. Load the image onto the base image (if using -merge) or the root window (if\n\
  109. using -onroot) at a specific location.  If used in conjunction with -onroot\n\
  110. this forces the -fullscreen flag on.", },
  111.   { "background", BACKGROUND, "color", "\
  112. Set the background pixel color for a monochrome image.  See -foreground and\n\
  113. -invert.", },
  114.   { "brighten",   BRIGHT,     "percentage", "\
  115. Brighten or darken the image by a percentage.  Values greater than 100 will\n\
  116. brighten the image, values smaller than 100 will darken it.", },
  117.   { "center",     CENTER,     NULL, "\
  118. Center the image on the base image (if using -merge) or the root window (if\n\
  119. using -onroot).  If used in conjunction with -onroot this forces the\n\
  120. -fullscreen flag on.", },
  121.   { "clip",       CLIP,       "X,Y,W,H", "\
  122. Clip out the rectangle specified by X,Y,W,H and use that as the image.", },
  123.   { "colors",     COLORS,     "number_of_colors", "\
  124. Specify the maximum number of colors to be used in displaying the image.\n\
  125. Values of 1-32768 are acceptable although low values will not look good.\n\
  126. This is done automatically if the server cannot support the depth of the\n\
  127. image.", },
  128.   { "delay",      DELAY,      "seconds", "\
  129. Set the automatic advance delay.", },
  130.   { "dither",     DITHER,     NULL, "\
  131. Dither the image into monochrome.  This happens automatically if sent to\n\
  132. a monochrome display.", },
  133.   { "foreground", FOREGROUND, "color", "\
  134. Set the foreground pixel color for a monochrome image.  See -background and\n\
  135. -invert.", },
  136.   { "gamma",      GAMMA,      "value", "\
  137. Adjust the image's colors by a gamma value.  1.0 is the default, which does\n\
  138. nothing.  Values under 1.0 darken the image, values higher brighten it.\n\
  139. Typically a dark image needs a value of 2.0 to 2.5.  This option is similar\n\
  140. to -brighten but often works better.", },
  141.   { "global",     GLOBAL,     NULL, "\
  142. Force the next option to apply to all images rather that to the current\n\
  143. image.", },
  144.   { "goto",       GOTO,       "image_name", "\
  145. Start displaying a particlar image.  This is useful for creating image display\newn\
  146. loops.  If two images with the target name exist, the first in the argument list\n\
  147. will be used.", },
  148.   { "gray",       GRAY,       NULL, "\
  149. Convert an image to grayscale.  Will \"undither\" a bitmap image.  Also\n\
  150. called -grey.", },
  151.   { "grey",       GRAY,       NULL, "\
  152. See -gray.", },
  153.   { "halftone",   HALFTONE,   NULL, "\
  154. Dither the image into monochrome using a halftone dither.  This preserves\n\
  155. image detail but blows the image up by sixteen times.", },
  156.   { "idelay",     IDELAY,     NULL, "\
  157. This option is no longer supported due to the addition of -global.  The\n\
  158. same functionality can be had with -delay.", },
  159.   { "invert",     INVERT,     NULL, "\
  160. Invert a monochrome image.  This is the same as specifying `-foreground black'\n\
  161. and `-background white'.", },
  162.   { "merge",      MERGE,      NULL, "\
  163. Merge this image onto the previous image.  When used in conjunction with\n\
  164. -at, -center, and -clip you can generate collages.", },
  165.   { "name",       NAME,       NULL, "\
  166. Specify that the next argument is to be the name of an image.  This is\n\
  167. useful for loading images whose names look to be options.", },
  168.   { "newoptions", NEWOPTIONS, NULL, "\
  169. This option is no longer supported.", },
  170.   { "normalize",  NORMALIZE,  NULL, "\
  171. Normalize the image.  This expands color coverage to fit the colormap as\n\
  172. closely as possible.  It may have good effects on an image which is too\n\
  173. bright or too dark.", },
  174.   { "rotate",     ROTATE,     "degrees", "\
  175. Rotate the image by 90, 180, or 270 degrees.", },
  176.   { "smooth",     SMOOTH,     NULL, "\
  177. Perform a smoothing convolution on the image.  This is useful for making\n\
  178. a zoomed image look less blocky.  Multiple -smooth arguments will run\n\
  179. the smoother multiple times.  This option can be quite slow on large images.", },
  180.   { "tile",       TILE,       NULL, "\
  181. Tile this image (after any merging or processing) to create a full-screen\n\
  182. image.  This is usually used to create a background to merge other images\n\
  183. onto.  -geometry can be used to set the size after tiling, otherwise it\n\
  184. defaults to the size of the display.", },
  185.   { "title",      TITLE,      "image_title", "\
  186. Title for the image (used in title bars and with -dump).", },
  187.   { "type",       TYPE,       "type_name", "\
  188. Specifies the type of image so that run-time determination is unnecessary.\n\
  189. This generally speeds up loading but is usually not necessary.  Use the\n\
  190. -supported option to get a list of image types supported along with their\n\
  191. type_name.", },
  192.   { "xzoom",      XZOOM,      "percentage", "\
  193. Zoom the image along the X axis by a percentage.  See -zoom.", },
  194.   { "yzoom",      YZOOM,      "percentage", "\
  195. Zoom the image along the X axis by a percentage.  See -zoom.", },
  196.   { "zoom",       ZOOM,       NULL, "\
  197. Zoom the image along both axes. Values smaller than 100 will reduce the\n\
  198. size of the image, values greater than 100 will enlarge it.  See also\n\
  199. -xzoom and -yzoom.", },
  200.   { NULL,         OPT_NOTOPT, NULL, NULL }
  201. };
  202.  
  203. static void listOptions()
  204. { int a, width;
  205.  
  206.   printf("\nThe options are:\n\n");
  207.  
  208.   width= 0;
  209.   for (a= 0; Options[a].name; a++) {
  210.     width += strlen(Options[a].name) + 2;
  211.     if (width > 78) {
  212.       printf("\n");
  213.       width= strlen(Options[a].name) + 2;
  214.     }
  215.     printf("%s%s", Options[a].name, (Options[a + 1].name ? ", " : "\n\n"));
  216.   }
  217. }
  218.  
  219. static int helpOnOption(option)
  220.      char *option;
  221. { int a, foundone;
  222.  
  223.   if (*option == '-')
  224.     option++;
  225.   foundone= 0;
  226.   for (a= 0; Options[a].name; a++)
  227.     if (!strncmp(Options[a].name, option, strlen(option))) {
  228.       printf("Option: %s\nUsage: %s -%s %s\nDescription:\n%s\n\n",
  229.          Options[a].name,
  230.          ProgramName,
  231.          Options[a].name, (Options[a].args ? Options[a].args : ""),
  232.          Options[a].description);
  233.       foundone= 1;
  234.     }
  235.   if (!foundone)
  236.     printf("No option `%s'.\n", option);
  237.   return(foundone);
  238. }
  239.  
  240. static void literalMindedUser(s)
  241.      char *s;
  242. {
  243.   printf("The quotes around %s are unnecessary.  You don't have to be so\n\
  244. literal-minded!\n", s);
  245. }
  246.  
  247. void help(option)
  248.      char *option;
  249. { char buf[BUFSIZ];
  250.  
  251.   /* batch help facility
  252.    */
  253.  
  254.   if (option) {
  255.     if (!helpOnOption(option))
  256.       printf("\
  257. Type `xloadimage -help [option ...]' to get help on a particular option or\n\
  258. `xloadimage -help' to enter the interactive help facility.\n\n");
  259.     return;
  260.   }
  261.  
  262.   /* interactive help facility
  263.    */
  264.  
  265.   printf("\nXloadimage Interactive Help Facility\n\n");
  266.   printf("\
  267. Type `?' for a list of options, or `.' or `quit' to leave the interactive\n\
  268. help facility.\n");
  269.   for (;;) {
  270.     printf("help> ");
  271.     buf[BUFSIZ - 1]= '\0';
  272.     if (fgets(buf, BUFSIZ - 1, stdin) == NULL) {
  273.       printf("quit\n");
  274.       exit(0);
  275.     }
  276.     while(buf[0] && buf[strlen(buf) - 1] == '\n')
  277.       buf[strlen(buf) - 1]= '\0';
  278.  
  279.     /* help keywords
  280.      */
  281.  
  282.     if (!strcmp(buf, "")) {
  283.       printf("Type `?' for a list of options\n");
  284.       continue;
  285.     }
  286.     if (!strcmp(buf, "?"))
  287.       ;
  288.     else if (!strcmp(buf, "quit") || !strcmp(buf, "."))
  289.       exit(0);
  290.     else if (!strcmp(buf, "`?'"))
  291.       literalMindedUser("the question mark");
  292.     else if (!strcmp(buf, "`quit'")) {
  293.       literalMindedUser("quit");
  294.       exit(0);
  295.     }
  296.     else if (!strcmp(buf, "`.'")) {
  297.       literalMindedUser("the period");
  298.       exit(0);
  299.     }
  300.     else if (helpOnOption(buf))
  301.       continue;
  302.     listOptions();
  303.     printf("\
  304. You may get this list again by typing `?' at the `help>' prompt, or leave\n\
  305. the interactive help facility with `.' or `quit'.\n");
  306.   }
  307. }
  308.  
  309. OptionSet *newOptionSet()
  310. { OptionSet *optset;
  311.  
  312.   optset= (OptionSet *)lmalloc(sizeof(OptionSet));
  313.   optset->options= NULL;
  314.   optset->next= NULL;
  315.   return(optset);
  316. }
  317.  
  318. Option *newOption(type)
  319.      OptionId type;
  320. { Option *opt;
  321.  
  322.   opt= (Option *)lmalloc(sizeof(Option));
  323.   opt->type= type;
  324.   opt->next= NULL;
  325.   return(opt);
  326. }
  327.  
  328. void addOption(optset, newopt)
  329.      OptionSet *optset;
  330.      Option    *newopt;
  331. { Option *opt;
  332.  
  333.   if (optset->options) {
  334.     for (opt= optset->options; opt->next; opt= opt->next)
  335.       /* EMPTY */
  336.       ;
  337.     opt->next= newopt;
  338.   }
  339.   else
  340.     optset->options= newopt;
  341. }
  342.  
  343. /* return the option structure for a typed option
  344.  */
  345. Option *getOption(optset, type)
  346.      OptionSet *optset;
  347.      OptionId   type;
  348. { Option *opt;
  349.  
  350.   if (optset)
  351.     for (opt= optset->options; opt; opt= opt->next)
  352.       if (type == opt->type)
  353.     return(opt);
  354.   return(NULL);
  355. }
  356.  
  357. /* this kills all options of a particular type in a particular set
  358.  */
  359. void killOption(optset, type)
  360.      OptionSet *optset;
  361.      OptionId   type;
  362. { Option *opt;
  363.  
  364.   if (!optset)
  365.     return;
  366.   for (opt= optset->options; opt; opt= opt->next)
  367.     if (opt->type == type)
  368.       opt->type= OPT_IGNORE;
  369. }
  370.  
  371. OptionId optionNumber(arg)
  372.      char *arg;
  373. { int a, b;
  374.  
  375.   if ((*arg) != '-')
  376.     return(OPT_NOTOPT);
  377.   for (a= 0; Options[a].name; a++) {
  378.     if (!strncmp(arg + 1, Options[a].name, strlen(arg) - 1)) {
  379.       for (b= a + 1; Options[b].name; b++)
  380.     if (!strncmp(arg + 1, Options[b].name, strlen(arg) - 1))
  381.       return(OPT_SHORTOPT);
  382.       return(Options[a].option_id);
  383.     }
  384.   }
  385.   return(OPT_BADOPT);
  386. }
  387.  
  388. static char *optionName(type)
  389.      OptionId type;
  390. { int a;
  391.  
  392.   for (a= 0; Options[a].name; a++)
  393.     if (Options[a].option_id == type)
  394.       return(Options[a].name);
  395.   return("<unknown option>");
  396. }
  397.  
  398. static void optionUsage(type)
  399.      OptionId type;
  400. {
  401.   helpOnOption(optionName(type));
  402.   exit(1);
  403. }
  404.  
  405. static int getInteger(type, s)
  406.      OptionId type;
  407.      char *s;
  408. { unsigned int ret;  
  409.  
  410.   if (strncmp(s, "0x", 2)) {
  411.     if (sscanf(s, "%d", &ret) == 1)
  412.       return(ret);
  413.   }
  414.   else if (sscanf(s + 2, "%x", &ret) == 1)
  415.     return(ret);
  416.   fprintf(stderr, "Bad integer argument for the %s option\n",
  417.       optionName(type));
  418.   usageHelp();
  419.   /* NOTREACHED */
  420. }
  421.  
  422. static float getFloat(type, s)
  423.      char *s;
  424. {
  425.   float ret;
  426.  
  427.   if (sscanf(s, "%f", &ret) != 1) {
  428.     fprintf(stderr, "Bad floating point argument for the %s option\n",
  429.         optionName(type));
  430.     usageHelp();
  431.     /* NOTREACHED */
  432.   }
  433.   return(ret);
  434. }
  435.  
  436. /* process the argument list into an option array.  the first option in
  437.  * the returned list is the set of global options.
  438.  */
  439. void processOptions(argc, argv, rglobal, rimage)
  440.      int argc;
  441.      char *argv[];
  442.      OptionSet **rglobal;
  443.      OptionSet **rimage;
  444. { OptionSet *global_options= newOptionSet();
  445.   OptionSet *image_options, *curset;
  446.   Option *newopt;
  447.   int a, global_opt= 0;
  448.  
  449.   if (!strcmp(tail(argv[0]), "xview")) {
  450.     newopt= newOption(VERBOSE);
  451.     addOption(global_options, newopt);
  452.   }
  453.   else if (!strcmp(tail(argv[0]), "xsetbg")) {
  454.     newopt= newOption(ONROOT);
  455.     addOption(global_options, newopt);
  456.   }
  457.   else {
  458.     newopt= newOption(VERBOSE);
  459.     addOption(global_options, newopt);
  460.   }
  461.  
  462.   image_options= curset= newOptionSet();
  463.   for (a= 1; a < argc; a++) {
  464.     newopt= newOption(optionNumber(argv[a]));
  465.  
  466.     switch (newopt->type) {
  467.     case OPT_BADOPT:
  468.       printf("%s: Bad option\n", argv[a]);
  469.       usageHelp();
  470.       /* NOTREACHED */
  471.  
  472.     case OPT_IGNORE:
  473.       lfree((byte *)newopt);
  474.       continue;
  475.  
  476.     case NAME:
  477.       if (++a >= argc)
  478.     optionUsage(NAME);
  479.       /* FALLTHRU */
  480.  
  481.     case OPT_NOTOPT:
  482.       newopt->type= NAME;
  483.       newopt->info.name= dupString(argv[a]);
  484.       addOption(curset, newopt);
  485.       curset->next= newOptionSet();
  486.       curset= curset->next;
  487.       continue;
  488.  
  489.     case OPT_SHORTOPT:
  490.       printf("%s: Not enough characters to identify option\n", argv[a]);
  491.       usageHelp();
  492.       /* NOTREACHED */
  493.  
  494.     /* process options global to everything
  495.      */
  496.  
  497.     case BORDER:
  498.       if (++a >= argc)
  499.     optionUsage(BORDER);
  500.       newopt->info.border= argv[a];
  501.       global_opt= 1;
  502.       break;
  503.  
  504.     case CONFIGURATION:
  505.       showConfiguration();
  506.       exit(0);
  507.  
  508. #ifdef DEBUG
  509.     case DBUG:
  510.       _Xdebug= 1;
  511.       continue;
  512. #endif /* DEBUG */
  513.  
  514.     case DEFAULT:
  515.       addOption(curset, newopt);
  516.       curset->next= newOptionSet();
  517.       curset= curset->next;
  518.       newopt= newOption(ONROOT); /* assume -onroot */
  519.       addOption(global_options, newopt);
  520.       newopt= newOption(FIT); /* assume -fit */
  521.       global_opt= 1;
  522.       break;
  523.  
  524.     case DISPLAY:
  525.       if (++a >= argc)
  526.     optionUsage(DISPLAY);
  527.       newopt->info.display= argv[a];
  528.       global_opt= 1;
  529.       break;
  530.  
  531.     case DUMP:
  532.       if (a + 2 >= argc)
  533.     optionUsage(DUMP);
  534.       newopt->info.dump.type= argv[++a];
  535.       newopt->info.dump.file= argv[++a];
  536.       global_opt= 1;
  537.       break;
  538.  
  539.     case FIT:
  540.       global_opt= 1;
  541.       break;
  542.  
  543.     case FORK:
  544. #ifdef NO_FORK
  545.       fprintf(stderr, "%s is not supported under this operating system",
  546.           optionName(FORK));
  547.       continue;
  548. #else
  549.       global_opt= 1;
  550.       break;
  551. #endif
  552.  
  553.     case FULLSCREEN:
  554.       global_opt= 1;
  555.       break;
  556.  
  557.     case GEOMETRY:
  558.       if (++a >= argc)
  559.     optionUsage(GEOMETRY);
  560.       if (sscanf(argv[a], "%dx%d",
  561.          &newopt->info.geometry.w, &newopt->info.geometry.h) != 2) {
  562.     optionUsage(GEOMETRY);
  563.       }
  564.       newopt->info.geometry.string= argv[a];
  565.       global_opt= 1;
  566.       break;
  567.  
  568.     case GLOBAL:
  569.       global_opt= 1; /* next option will be put on global argument list */
  570.       continue;
  571.  
  572.     case HELP:
  573.       if (++a >= argc)
  574.     help(NULL);
  575.       else
  576.     do {
  577.       help(argv[a++]);
  578.     } while (a < argc); 
  579.       exit(0);
  580.  
  581.     case IDENTIFY:
  582.       global_opt= 1;
  583.       break;
  584.  
  585.     case LIST:
  586.       listImages();
  587.       exit(0);
  588.  
  589.     case INSTALL:
  590.       global_opt= 1;
  591.       break;
  592.  
  593.     case ONROOT:
  594.       addOption(global_options, newopt);
  595.       newopt= newOption(FIT); /* assume -fit */
  596.       global_opt= 1;
  597.       break;
  598.  
  599.     case PIXMAP:
  600.       global_opt= 1;
  601.       break;
  602.  
  603.     case PRIVATE:
  604.       global_opt= 1;
  605.       break;
  606.  
  607.     case QUIET:
  608.       killOption(global_options, VERBOSE);
  609.       global_opt= 1;
  610.       break;
  611.  
  612.     case SHRINKTOFIT:
  613.       global_opt= 1;
  614.       break;
  615.  
  616.     case SUPPORTED:
  617.       supportedImageTypes();
  618.       exit(0);
  619.  
  620.     case VERBOSE:
  621.       global_opt= 1;
  622.       break;
  623.  
  624.     case VER_NUM:
  625.       version();
  626.       exit(0);
  627.  
  628.     case VIEW:
  629.       killOption(global_options, DUMP);
  630.       killOption(global_options, ONROOT);
  631.       global_opt= 1;
  632.       break;
  633.  
  634.     case VISUAL:
  635.       if (++a >= argc)
  636.     optionUsage(VISUAL);
  637.       newopt->info.visual= visualClassFromName(argv[a]);
  638.       global_opt= 1;
  639.       break;
  640.  
  641.     case WINDOWID:
  642.       if (++a >= argc)
  643.     optionUsage(WINDOWID);
  644.       killOption(global_options, DUMP);
  645.       killOption(global_options, VIEW);
  646.       newopt->info.windowid= getInteger(WINDOWID, argv[a]);
  647.       addOption(global_options, newopt);
  648.       newopt= newOption(ONROOT);
  649.       addOption(global_options, newopt);
  650.       newopt= newOption(FIT);
  651.       global_opt= 1;
  652.       break;
  653.  
  654.     /* process options local to an image
  655.      */
  656.  
  657.     case AT:
  658.       if (!argv[++a])
  659.     break;
  660.       if (sscanf(argv[a], "%d,%d",
  661.          &newopt->info.at.x, &newopt->info.at.y) != 2)
  662.     optionUsage(AT);
  663.       break;
  664.  
  665.     case BACKGROUND:
  666.       if (++a >= argc)
  667.     optionUsage(BACKGROUND);
  668.       newopt->info.background= argv[a];
  669.       break;
  670.  
  671.     case BRIGHT:
  672.       if (++a >= argc)
  673.     optionUsage(BRIGHT);
  674.       newopt->info.bright= getInteger(BRIGHT, argv[a]);
  675.       break;
  676.  
  677.     case CENTER:
  678.       break;
  679.  
  680.     case CLIP:
  681.       if (++a >= argc)
  682.     optionUsage(CLIP);
  683.       if (sscanf(argv[a], "%d,%d,%d,%d",
  684.          &newopt->info.clip.x, &newopt->info.clip.y,
  685.          &newopt->info.clip.w, &newopt->info.clip.h) != 4)
  686.     optionUsage(CLIP);
  687.       break;
  688.  
  689.     case COLORS:
  690.       if (++a >= argc)
  691.     optionUsage(COLORS);
  692.       newopt->info.colors= getInteger(COLORS, argv[a]);
  693.       if (newopt->info.colors < 2) {
  694.     printf("Argument to %s is too low (ignored)\n", optionName(COLORS));
  695.     newopt->type= OPT_IGNORE;
  696.       }
  697.       else if (newopt->info.colors > 65536) {
  698.     printf("Argument to %s is too high (ignored)\n", optionName(COLORS));
  699.     newopt->type= OPT_IGNORE;
  700.       }
  701.       break;
  702.  
  703.     case IDELAY:
  704.       fprintf(stderr, "%s has been superceded by %s (translating)\n",
  705.           optionName(IDELAY), optionName(DELAY));
  706.       /* FALLTHRU */
  707.  
  708.     case DELAY:
  709.       if (++a >= argc)
  710.     optionUsage(DELAY);
  711. #ifdef NO_DELAY
  712.       fprintf(stderr, "%s is not supported on this operating system (ignored)\n",
  713.           optionName(DELAY));
  714.       
  715.       continue;
  716. #else /* !NO_DELAY */
  717.       newopt->info.delay= getInteger(DELAY, argv[a]);
  718.       break;
  719. #endif /* !NO_DELAY */
  720.  
  721.     case DITHER:
  722.       break;
  723.  
  724.     case FOREGROUND:
  725.       if (++a >= argc)
  726.     optionUsage(FOREGROUND);
  727.       newopt->info.foreground= argv[a];
  728.       break;
  729.  
  730.     case GAMMA:
  731.       if (++a >= argc)
  732.     optionUsage(GAMMA);
  733.       newopt->info.gamma= getFloat(GAMMA, argv[a]);
  734.       break;
  735.  
  736.     case GOTO:
  737.       if (++a >= argc)
  738.     optionUsage(GOTO);
  739.       newopt->info.go_to= argv[a];
  740.       break;
  741.  
  742.     case GRAY:
  743.       break;
  744.  
  745.     case HALFTONE:
  746.       if (global_opt)
  747.     killOption(global_options, DITHER);
  748.       else
  749.     killOption(curset, DITHER);
  750.       break;
  751.  
  752.     case INVERT:
  753.       killOption(curset, FOREGROUND);
  754.       killOption(curset, BACKGROUND);
  755.       newopt->type= FOREGROUND;
  756.       newopt->info.foreground= "white";
  757.       if (global_opt)
  758.     addOption(global_options, newopt);
  759.       else
  760.     addOption(curset, newopt);
  761.       newopt= newOption(BACKGROUND);
  762.       newopt->info.background= "black";
  763.       break;
  764.  
  765.     case MERGE:
  766.       break;
  767.  
  768.     case NEWOPTIONS:
  769.       fprintf(stderr, "%s is no longer supported (sorry)\n",
  770.           optionName(NEWOPTIONS));
  771.       newopt->type= OPT_IGNORE;
  772.       break;
  773.  
  774.     case NORMALIZE:
  775.       break;
  776.  
  777.     case ROTATE:
  778.       if (++a >= argc)
  779.     optionUsage(ROTATE);
  780.       newopt->info.rotate= getInteger(ROTATE, argv[a]);
  781.       if (newopt->info.rotate % 90) {
  782.     fprintf(stderr, "Argument to %s must be a multiple of 90 (ignored)\n",
  783.         optionName(ROTATE));
  784.     newopt->type= OPT_IGNORE;
  785.       }
  786.       else {
  787.     while (newopt->info.rotate < 0)
  788.       newopt->info.rotate += 360;
  789.     while (newopt->info.rotate > 360)
  790.       newopt->info.rotate -= 360;
  791.       }
  792.       break;
  793.  
  794.     case SMOOTH:
  795.       break;
  796.  
  797.     case TILE:
  798.       break;
  799.  
  800.     case TITLE:
  801.       if (++a >= argc)
  802.     optionUsage(TITLE);
  803.       newopt->info.title= argv[a];
  804.       break;
  805.  
  806.     case TYPE:
  807.       if (++a >= argc)
  808.     optionUsage(TYPE);
  809.       newopt->info.type= argv[a];
  810.       break;
  811.  
  812.     case XZOOM:
  813.       if (++a >= argc)
  814.     optionUsage(XZOOM);
  815.       newopt->type= ZOOM;
  816.       newopt->info.zoom.x= getInteger(XZOOM, argv[a]);
  817.       newopt->info.zoom.y= 0;
  818.       break;
  819.  
  820.     case YZOOM:
  821.       if (++a >= argc)
  822.     optionUsage(YZOOM);
  823.       newopt->type= ZOOM;
  824.       newopt->info.zoom.x= 0;
  825.       newopt->info.zoom.y= getInteger(YZOOM, argv[a]);
  826.       break;
  827.  
  828.     case ZOOM:
  829.       if (++a >= argc)
  830.     optionUsage(ZOOM);
  831.       newopt->info.zoom.x= newopt->info.zoom.y= getInteger(ZOOM, argv[a]);
  832.       if (global_opt)
  833.     addOption(global_options, newopt);
  834.       else
  835.     addOption(curset, newopt);
  836.       newopt= newOption(YZOOM);
  837.       newopt->info.zoom.y= getInteger(ZOOM, argv[a]);
  838.       break;
  839.  
  840.     default:
  841.  
  842.       /* this should not happen!
  843.        */
  844.  
  845.       printf("%s: Internal error parsing arguments\n", argv[0]);
  846.       exit(1);
  847.     }
  848.  
  849.     if (global_opt) {
  850.       addOption(global_options, newopt);
  851.       global_opt= 0;
  852.     }
  853.     else
  854.       addOption(curset, newopt);
  855.   }
  856.   *rglobal= global_options;
  857.   *rimage= image_options;
  858. }
  859.  
  860. /* this is used by readers/dumpers to parse options strings of the
  861.  * form name[=value][,...]
  862.  */
  863. int getNextTypeOption(opt_string, name, value)
  864.      char **opt_string;
  865.      char **name;
  866.      char **value;
  867. {
  868.   static char option_name[BUFSIZ];
  869.   static char option_value[BUFSIZ];
  870.   char *p;
  871.  
  872.   /* if no string, don't get anything
  873.    */
  874.   if (!opt_string || !*opt_string || !**opt_string)
  875.     return 0;
  876.  
  877.   /* look for comma, the option delimiter
  878.    */
  879.   p = index(*opt_string, ',');
  880.   if (p != NULL) {
  881.     strncpy(option_name, *opt_string, p - *opt_string);
  882.     option_name[p - *opt_string] = '\0';
  883.     *opt_string = p + 1; /* increment to next option */
  884.   }
  885.   else {
  886.     strcpy(option_name, *opt_string);
  887.     *opt_string += strlen(*opt_string); /* increment to end of string */
  888.   }
  889.   *name = option_name;
  890.  
  891.   /* look for equals sign, the start of a value
  892.    */
  893.   p = index(option_name, '=');
  894.   if (p != NULL) {
  895.     strcpy(option_value, p + 1);
  896.     *p = '\0'; /* stomp equals sign */
  897.     *value = option_value;
  898.   }
  899.   else
  900.     *value = NULL; /* no value */
  901.   return(1);
  902. }
  903.