* src/preproc/grn/main.cc: Allow values of `narrow' parameter and
[s-roff.git] / src / preproc / grn / main.cc
blob244aece7fff4d38c2b11887fcff78687a9e3d2f9
1 /* Last non-groff version: main.cc 1.23 (Berkeley) 85/08/05
3 * Adapted to GNU troff by Daniel Senderowicz 99/12/29.
5 * Further refinements by Werner Lemberg 00/02/20.
8 * This file contains the main and file system dependent routines for
9 * processing gremlin files into troff input. The program watches input go
10 * by to standard output, only interpreting things between .GS and .GE
11 * lines. Default values (font, size, scale, thickness) may be overridden
12 * with a `default' command and are further overridden by commands in the
13 * input.
15 * Inside the GS and GE, commands are accepted to reconfigure the picture.
16 * At most one command may reside on each line, and each command is followed
17 * by a parameter separated by white space. The commands are as follows,
18 * and may be abbreviated down to one character (with exception of `scale'
19 * and `stipple' down to "sc" and "st") and may be upper or lower case.
21 * default - Make all settings in the current
22 * .GS/.GE the global defaults. Height,
23 * width and file are NOT saved.
24 * 1, 2, 3, 4 - Set size 1, 2, 3, or 4 (followed by an
25 * integer point size).
26 * roman, italics, bold, special - Set gremlin's fonts to any other troff
27 * font (one or two characters).
28 * stipple, l - Use a stipple font for polygons. Arg
29 * is troff font name. No Default. Can
30 * use only one stipple font per picture.
31 * (See below for stipple font index.)
32 * scale, x - Scale is IN ADDITION to the global
33 * scale factor from the default.
34 * pointscale - Turn on scaling point sizes to match
35 * `scale' commands. (Optional operand
36 * `off' to turn it off.)
37 * narrow, medium, thick - Set widths of lines.
38 * file - Set the file name to read the gremlin
39 * picture from. If the file isn't in
40 * the current directory, the gremlin
41 * library is tried.
42 * width, height - These two commands override any
43 * scaling factor that is in effect, and
44 * forces the picture to fit into either
45 * the height or width specified,
46 * whichever makes the picture smaller.
47 * The operand for these two commands is
48 * a floating-point number in units of
49 * inches.
50 * l<nn> (integer <nn>) - Set association between stipple <nn>
51 * and a stipple `character'. <nn> must
52 * be in the range 0 to NSTIPPLES (16)
53 * inclusive. The integer operand is an
54 * index in the stipple font selected.
55 * Valid cf (cifplot) indices are 1-32
56 * (although 24 is not defined), valid ug
57 * (unigrafix) indices are 1-14, and
58 * valid gs (gray scale) indices are
59 * 0-16. Nonetheless, any number between
60 * 0 and 255 is accepted since new
61 * stipple fonts may be added. An
62 * integer operand is required.
64 * Troff number registers used: g1 through g9. g1 is the width of the
65 * picture, and g2 is the height. g3, and g4, save information, g8 and g9
66 * are used for text processing and g5-g7 are reserved.
70 #include <ctype.h>
71 #include <stdlib.h>
72 #include <string.h>
73 #include "gprint.h"
75 #include "device.h"
76 #include "font.h"
77 #include "searchpath.h"
78 #include "macropath.h"
80 #include "lib.h"
81 #include "errarg.h"
82 #include "error.h"
83 #include "defs.h"
85 /* database imports */
87 extern void HGPrintElt(ELT *element, int baseline);
88 extern ELT *DBInit(void);
89 extern ELT *DBRead(register FILE *file);
90 extern POINT *PTInit();
91 extern POINT *PTMakePoint(float x, float y, POINT **pplist);
94 #define SUN_SCALEFACTOR 0.70
96 /* #define DEFSTIPPLE "gs" */
97 #define DEFSTIPPLE "cf"
99 #define MAXINLINE 100 /* input line length */
101 #define SCREENtoINCH 0.02 /* scaling factor, screen to inches */
103 #define BIG 999999999999.0 /* unweildly large floating number */
106 static char sccsid[] = "@(#) (Berkeley) 8/5/85, 12/28/99";
108 int res; /* the printer's resolution goes here */
110 int dotshifter; /* for the length of dotted curves */
112 double linethickness; /* brush styles */
113 int linmod;
114 int lastx; /* point registers for printing elements */
115 int lasty;
116 int lastyline; /* A line's vertical position is NOT the */
117 /* same after that line is over, so for a */
118 /* line of drawing commands, vertical */
119 /* spacing is kept in lastyline */
121 /* These are the default fonts, sizes, line styles, */
122 /* and thicknesses. They can be modified from a */
123 /* `default' command and are reset each time the */
124 /* start of a picture (.GS) is found. */
126 char *deffont[] =
127 {"R", "I", "B", "S"};
128 int defsize[] =
129 {10, 16, 24, 36};
130 /* #define BASE_THICKNESS 1.0 */
131 #define BASE_THICKNESS 0.15
132 double defthick[STYLES] =
133 {1 * BASE_THICKNESS,
134 1 * BASE_THICKNESS,
135 5 * BASE_THICKNESS,
136 1 * BASE_THICKNESS,
137 1 * BASE_THICKNESS,
138 3 * BASE_THICKNESS};
140 /* int cf_stipple_index[NSTIPPLES + 1] = */
141 /* {0, 1, 3, 12, 14, 16, 19, 21, 23}; */
142 /* a logarithmic scale looks better than a linear one for the gray shades */
143 /* */
144 /* int other_stipple_index[NSTIPPLES + 1] = */
145 /* {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}; */
147 int cf_stipple_index[NSTIPPLES + 1] =
148 {0, 18, 32, 56, 100, 178, 316, 562, 1000}; /* only 1-8 used */
149 int other_stipple_index[NSTIPPLES + 1] =
150 {0, 62, 125, 187, 250, 312, 375, 437, 500,
151 562, 625, 687, 750, 812, 875, 937, 1000};
153 /* int *defstipple_index = other_stipple_index; */
154 int *defstipple_index = cf_stipple_index;
156 int style[STYLES] =
157 {DOTTED, DOTDASHED, SOLID, DASHED, SOLID, SOLID};
158 double scale = 1.0; /* no scaling, default */
159 int defpoint = 0; /* flag for pointsize scaling */
160 char *defstipple = (char *) 0;
161 enum {
162 OUTLINE, FILL, BOTH
163 } polyfill;
165 /* flag to controll filling of polygons */
167 double adj1 = 0.0;
168 double adj2 = 0.0;
169 double adj3 = 0.0;
170 double adj4 = 0.0;
172 double thick[STYLES]; /* thicknesses set by defaults, then by */
173 /* commands */
174 char *tfont[FONTS]; /* fonts originally set to deffont values, */
175 /* then */
176 int tsize[SIZES]; /* optionally changed by commands inside */
177 /* grn */
178 int stipple_index[NSTIPPLES + 1]; /* stipple font file indices */
179 char *stipple;
181 double xscale; /* scaling factor from individual pictures */
182 double troffscale; /* scaling factor at output time */
184 double width; /* user-request maximum width for picture */
185 /* (in inches) */
186 double height; /* user-request height */
187 int pointscale; /* flag for pointsize scaling */
188 int setdefault; /* flag for a .GS/.GE to remember all */
189 /* settings */
190 int sflag; /* -s flag: sort order (do polyfill first) */
192 double toppoint; /* remember the picture */
193 double bottompoint; /* bounds in these variables */
194 double leftpoint;
195 double rightpoint;
197 int ytop; /* these are integer versions of the above */
198 int ybottom; /* so not to convert each time they're used */
199 int xleft;
200 int xright;
202 int linenum = 0; /* line number of input file */
203 char inputline[MAXINLINE]; /* spot to filter through the file */
204 char *c1 = inputline; /* c1, c2, and c3 will be used to */
205 char *c2 = inputline + 1; /* hunt for lines that begin with */
206 char *c3 = inputline + 2; /* ".GS" by looking individually */
207 char *c4 = inputline + 3; /* needed for compatibility mode */
208 char GScommand[MAXINLINE]; /* put user's ".GS" command line here */
209 char gremlinfile[MAXINLINE]; /* filename to use for a picture */
210 int SUNFILE = FALSE; /* TRUE if SUN gremlin file */
211 int compatibility_flag = FALSE; /* TRUE if in compatibility mode */
214 void getres(void);
215 char *doinput(FILE *fp);
216 void conv(register FILE *fp, int baseline);
217 void savestate(void);
218 int has_polygon(register ELT *elist);
219 void interpret(char *line);
222 void
223 usage()
225 fprintf(stderr,
226 "usage: %s [ -vCs ] [ -M dir ] [ -F dir ] [ -T dev ] [ file ]\n",
227 program_name);
228 exit(1);
232 /*----------------------------------------------------------------------------*
233 | Routine: main (argument_count, argument_pointer)
235 | Results: Parses the command line, accumulating input file names, then
236 | reads the inputs, passing it directly to output until a `.GS'
237 | line is read. Main then passes control to `conv' to do the
238 | gremlin file conversions.
239 *----------------------------------------------------------------------------*/
242 main(int argc,
243 char **argv)
245 program_name = argv[0];
246 register FILE *fp;
247 register int k;
248 register char c;
249 register int gfil = 0;
250 char *file[50];
251 char *operand(int *argcp, char ***argvp);
252 char *p;
254 while (--argc) {
255 if (**++argv != '-')
256 file[gfil++] = *argv;
257 else
258 switch (c = (*argv)[1]) {
260 case 0:
261 file[gfil++] = NULL;
262 break;
264 case 'v':
266 extern const char *Version_string;
267 fprintf(stderr, "GNU grn version %s\n", Version_string);
268 fflush(stderr);
269 break;
271 case 'C': /* compatibility mode */
272 compatibility_flag = TRUE;
273 break;
275 case 'F': /* font path to find DESC */
276 font::command_line_font_dir(operand(&argc, &argv));
277 break;
279 case 'T': /* final output typesetter name */
280 device = operand(&argc, &argv);
281 break;
283 case 'M': /* set library directory */
284 macro_path.command_line_dir(operand(&argc, &argv));
285 break;
287 case 's': /* preserve order of elements */
288 sflag = 1;
289 break;
291 case '?':
292 usage();
293 break;
295 default:
296 error("unknown switch: %1", c);
297 usage();
301 getres(); /* set the resolution for an output device */
303 if (gfil == 0) { /* no filename, use standard input */
304 file[0] = NULL;
305 gfil++;
308 for (k = 0; k < gfil; k++) {
309 if (file[k] != NULL) {
310 if ((fp = fopen(file[k], "r")) == NULL)
311 fatal("can't open %1", file[k]);
312 } else
313 fp = stdin;
315 while (doinput(fp) != NULL) {
316 if (*c1 == '.' && *c2 == 'G' && *c3 == 'S') {
317 if (compatibility_flag ||
318 *c4 == '\n' || *c4 == ' ' || *c4 == '\0')
319 conv(fp, linenum);
320 else
321 fputs(inputline, stdout);
322 } else
323 fputs(inputline, stdout);
329 /*----------------------------------------------------------------------------*
330 | Routine: char * operand (& argc, & argv)
332 | Results: Returns address of the operand given with a command-line
333 | option. It uses either `-Xoperand' or `-X operand', whichever
334 | is present. The program is terminated if no option is
335 | present.
337 | Side Efct: argc and argv are updated as necessary.
338 *----------------------------------------------------------------------------*/
340 char *
341 operand(int *argcp,
342 char ***argvp)
344 if ((**argvp)[2])
345 return (**argvp + 2); /* operand immediately follows */
346 if ((--*argcp) <= 0) { /* no operand */
347 error("command-line option operand missing.");
348 exit(8);
350 return (*(++(*argvp))); /* operand is next word */
354 /*----------------------------------------------------------------------------*
355 | Routine: getres ()
357 | Results: Sets `res' to the resolution of the output device.
358 *----------------------------------------------------------------------------*/
360 void
361 getres(void)
363 int linepiece;
365 if (!font::load_desc())
366 fatal("sorry, I can't continue");
368 res = font::res;
370 /* Correct the brush thicknesses based on res */
371 /* if (res >= 256) {
372 defthick[0] = res >> 8;
373 defthick[1] = res >> 8;
374 defthick[2] = res >> 4;
375 defthick[3] = res >> 8;
376 defthick[4] = res >> 8;
377 defthick[5] = res >> 6;
378 } */
380 linepiece = res >> 9;
381 for (dotshifter = 0; linepiece; dotshifter++)
382 linepiece = linepiece >> 1;
386 /*----------------------------------------------------------------------------*
387 | Routine: char * doinput (file_pointer)
389 | Results: A line of input is read into `inputline'.
391 | Side Efct: "linenum" is incremented.
393 | Bugs: Lines longer than MAXINLINE are NOT checked, except for
394 | updating `linenum'.
395 *----------------------------------------------------------------------------*/
397 char *
398 doinput(FILE *fp)
400 char *k;
402 if ((k = fgets(inputline, MAXINLINE, fp)) == NULL)
403 return k;
404 if (strchr(inputline, '\n')) /* ++ only if it's a complete line */
405 linenum++;
406 return (char *) !NULL;
410 /*----------------------------------------------------------------------------*
411 | Routine: initpic ( )
413 | Results: Sets all parameters to the normal defaults, possibly
414 | overridden by a setdefault command. Initialize the picture
415 | variables, and output the startup commands to troff to begin
416 | the picture.
417 *----------------------------------------------------------------------------*/
419 void
420 initpic(void)
422 register int i;
424 for (i = 0; i < STYLES; i++) { /* line thickness defaults */
425 thick[i] = defthick[i];
427 for (i = 0; i < FONTS; i++) { /* font name defaults */
428 tfont[i] = deffont[i];
430 for (i = 0; i < SIZES; i++) { /* font size defaults */
431 tsize[i] = defsize[i];
433 for (i = 0; i <= NSTIPPLES; i++) { /* stipple font file default indices */
434 stipple_index[i] = defstipple_index[i];
436 stipple = defstipple;
438 gremlinfile[0] = 0; /* filename is `null' */
439 setdefault = 0; /* this is not the default settings (yet) */
441 toppoint = BIG; /* set the picture bounds out */
442 bottompoint = -BIG; /* of range so they'll be set */
443 leftpoint = BIG; /* by `savebounds' on input */
444 rightpoint = -BIG;
446 pointscale = defpoint; /* flag for scaling point sizes default */
447 xscale = scale; /* default scale of individual pictures */
448 width = 0.0; /* size specifications input by user */
449 height = 0.0;
451 linethickness = DEFTHICK; /* brush styles */
452 linmod = DEFSTYLE;
456 /*----------------------------------------------------------------------------*
457 | Routine: conv (file_pointer, starting_line)
459 | Results: At this point, we just passed a `.GS' line in the input
460 | file. conv reads the input and calls `interpret' to process
461 | commands, gathering up information until a `.GE' line is
462 | found. It then calls `HGPrint' to do the translation of the
463 | gremlin file to troff commands.
464 *----------------------------------------------------------------------------*/
466 void
467 conv(register FILE *fp,
468 int baseline)
470 register FILE *gfp = NULL; /* input file pointer */
471 register int done = 0; /* flag to remember if finished */
472 register ELT *e; /* current element pointer */
473 ELT *PICTURE; /* whole picture data base pointer */
474 double temp; /* temporary calculating area */
475 POINT ptr; /* coordinates of a point to pass to `mov' */
476 /* routine */
477 int flyback; /* flag `want to end up at the top of the */
478 /* picture?' */
479 int compat; /* test character after .GE or .GF */
482 initpic(); /* set defaults, ranges, etc. */
483 strcpy(GScommand, inputline); /* save `.GS' line for later */
485 do {
486 done = (doinput(fp) == NULL); /* test for EOF */
487 flyback = (*c3 == 'F'); /* and .GE or .GF */
488 compat = (compatibility_flag ||
489 *c4 == '\n' || *c4 == ' ' || *c4 == '\0');
490 done |= (*c1 == '.' && *c2 == 'G' && (*c3 == 'E' || flyback) &&
491 compat);
493 if (done) {
494 if (setdefault)
495 savestate();
497 if (!gremlinfile[0]) {
498 if (!setdefault)
499 error("at line %1: no picture filename.\n", baseline);
500 return;
502 char *path;
503 gfp = macro_path.open_file(gremlinfile, &path);
504 if (!gfp)
505 return;
506 PICTURE = DBRead(gfp); /* read picture file */
507 fclose(gfp);
508 a_delete path;
509 if (DBNullelt(PICTURE))
510 return; /* If a request is made to make the */
511 /* picture fit into a specific area, */
512 /* set the scale to do that. */
514 if (stipple == (char *) NULL) /* if user forgot stipple */
515 if (has_polygon(PICTURE)) /* and picture has a polygon */
516 stipple = DEFSTIPPLE; /* then set the default */
518 if ((temp = bottompoint - toppoint) < 0.1)
519 temp = 0.1;
520 temp = (height != 0.0) ? height / (temp * SCREENtoINCH) : BIG;
521 if ((troffscale = rightpoint - leftpoint) < 0.1)
522 troffscale = 0.1;
523 troffscale = (width != 0.0) ?
524 width / (troffscale * SCREENtoINCH) : BIG;
525 if (temp == BIG && troffscale == BIG)
526 troffscale = xscale;
527 else {
528 if (temp < troffscale)
529 troffscale = temp;
530 } /* here, troffscale is the */
531 /* picture's scaling factor */
532 if (pointscale) {
533 register int i; /* do pointscaling here, when */
534 /* scale is known, before output */
535 for (i = 0; i < SIZES; i++)
536 tsize[i] = (int) (troffscale * (double) tsize[i] + 0.5);
539 /* change to device units */
540 troffscale *= SCREENtoINCH * res; /* from screen units */
542 ytop = (int) (toppoint * troffscale); /* calculate integer */
543 ybottom = (int) (bottompoint * troffscale); /* versions of the */
544 xleft = (int) (leftpoint * troffscale); /* picture limits */
545 xright = (int) (rightpoint * troffscale);
547 /* save stuff in number registers, */
548 /* register g1 = picture width and */
549 /* register g2 = picture height, */
550 /* set vertical spacing, no fill, */
551 /* and break (to make sure picture */
552 /* starts on left), and put out the */
553 /* user's `.GS' line. */
554 printf(".br\n"
555 ".nr g1 %du\n"
556 ".nr g2 %du\n"
557 "%s"
558 ".nr g3 \\n(.f\n"
559 ".nr g4 \\n(.s\n"
560 "\\0\n"
561 ".sp -1\n",
562 xright - xleft, ybottom - ytop, GScommand);
564 if (stipple) /* stipple requested for this picture */
565 printf(".st %s\n", stipple);
566 lastx = xleft; /* note where we are (upper left */
567 lastyline = lasty = ytop; /* corner of the picture) */
569 /* Just dump everything in the order it appears.
571 * If -s command-line option, traverse picture twice: First time,
572 * print only the interiors of filled polygons (as borderless
573 * polygons). Second time, print the outline as series of line
574 * segments. This way, postprocessors that overwrite rather than
575 * merge picture elements (such as Postscript) can still have text and
576 * graphics on a shaded background.
578 /* if (sflag) */
579 if (!sflag) { /* changing the default for filled polygons */
580 e = PICTURE;
581 polyfill = FILL;
582 while (!DBNullelt(e)) {
583 printf(".mk\n");
584 if (e->type == POLYGON)
585 HGPrintElt(e, baseline);
586 printf(".rt\n");
587 lastx = xleft;
588 lastyline = lasty = ytop;
589 e = DBNextElt(e);
592 e = PICTURE;
594 /* polyfill = !sflag ? BOTH : OUTLINE; */
595 polyfill = sflag ? BOTH : OUTLINE; /* changing the default */
596 while (!DBNullelt(e)) {
597 printf(".mk\n");
598 HGPrintElt(e, baseline);
599 printf(".rt\n");
600 lastx = xleft;
601 lastyline = lasty = ytop;
602 e = DBNextElt(e);
605 /* decide where to end picture */
607 /* I changed everything here. I always use the combination .mk and */
608 /* .rt so once finished I just space down the heigth of the picture */
609 /* that is \n(g2u */
610 if (flyback) { /* end picture at upper left */
611 /* ptr.x = leftpoint;
612 ptr.y = toppoint; */
613 } else { /* end picture at lower left */
614 /* ptr.x = leftpoint;
615 ptr.y = bottompoint; */
616 printf(".sp \\n(g2u\n");
619 /* tmove(&ptr); */ /* restore default line parameters */
621 /* restore everything to the way it was before the .GS, then put */
622 /* out the `.GE' line from user */
624 /* printf("\\D't %du'\\D's %du'\n", DEFTHICK, DEFSTYLE); */
625 /* groff doesn't understand the \Ds command */
627 printf("\\D't %du'\n", DEFTHICK);
628 if (flyback) /* make sure we end up at top of */
629 printf(".sp -1\n"); /* picture if `flying back' */
630 if (stipple) /* restore stipple to previous */
631 printf(".st\n");
632 printf(".br\n"
633 ".ft \\n(g3\n"
634 ".ps \\n(g4\n"
635 "%s", inputline);
636 } else
637 interpret(inputline); /* take commands from the input file */
638 } while (!done);
642 /*----------------------------------------------------------------------------*
643 | Routine: savestate ( )
645 | Results: all the current scaling / font size / font name / thickness
646 | / pointscale settings are saved to be the defaults. Scaled
647 | point sizes are NOT saved. The scaling is done each time a
648 | new picture is started.
650 | Side Efct: scale, and def* are modified.
651 *----------------------------------------------------------------------------*/
653 void
654 savestate(void)
656 register int i;
658 for (i = 0; i < STYLES; i++) /* line thickness defaults */
659 defthick[i] = thick[i];
660 for (i = 0; i < FONTS; i++) /* font name defaults */
661 deffont[i] = tfont[i];
662 for (i = 0; i < SIZES; i++) /* font size defaults */
663 defsize[i] = tsize[i];
664 for (i = 0; i <= NSTIPPLES; i++) /* stipple font file default indices */
665 defstipple_index[i] = stipple_index[i];
667 defstipple = stipple; /* if stipple has been set, it's remembered */
668 scale *= xscale; /* default scale of individual pictures */
669 defpoint = pointscale; /* flag for scaling pointsizes from x factors */
673 /*----------------------------------------------------------------------------*
674 | Routine: savebounds (x_coordinate, y_coordinate)
676 | Results: Keeps track of the maximum and minimum extent of a picture
677 | in the global variables: left-, right-, top- and
678 | bottompoint. `savebounds' assumes that the points have been
679 | oriented to the correct direction. No scaling has taken
680 | place, though.
681 *----------------------------------------------------------------------------*/
684 savebounds(float x,
685 float y)
687 if (x < leftpoint)
688 leftpoint = x;
689 if (x > rightpoint)
690 rightpoint = x;
691 if (y < toppoint)
692 toppoint = y;
693 if (y > bottompoint)
694 bottompoint = y;
698 /*----------------------------------------------------------------------------*
699 | Routine: interpret (character_string)
701 | Results: Commands are taken from the input string and performed.
702 | Commands are separated by the endofline, and are of the
703 | format:
704 | string1 string2
706 | where string1 is the command and string2 is the argument.
708 | Side Efct: Font and size strings, plus the gremlin file name and the
709 | width and height variables are set by this routine.
710 *----------------------------------------------------------------------------*/
712 void
713 interpret(char *line)
715 char str1[MAXINLINE];
716 char str2[MAXINLINE];
717 register char *chr;
718 register int i;
719 double par;
721 str2[0] = '\0';
722 sscanf(line, "%80s%80s", &str1[0], &str2[0]);
723 for (chr = &str1[0]; *chr; chr++) /* convert command to */
724 if (isupper(*chr))
725 *chr = tolower(*chr); /* lower case */
727 switch (str1[0]) {
729 case '1':
730 case '2': /* font sizes */
731 case '3':
732 case '4':
733 i = atoi(str2);
734 if (i > 0 && i < 1000)
735 tsize[str1[0] - '1'] = i;
736 else
737 error("bad font size value at line %1", linenum);
738 break;
740 case 'r': /* roman */
741 if (str2[0] < '0')
742 goto nofont;
743 tfont[0] = (char *) malloc(strlen(str2) + 1);
744 strcpy(tfont[0], str2);
745 break;
747 case 'i': /* italics */
748 if (str2[0] < '0')
749 goto nofont;
750 tfont[1] = (char *) malloc(strlen(str2) + 1);
751 strcpy(tfont[1], str2);
752 break;
754 case 'b': /* bold */
755 if (str2[0] < '0')
756 goto nofont;
757 tfont[2] = (char *) malloc(strlen(str2) + 1);
758 strcpy(tfont[2], str2);
759 break;
761 case 's': /* special */
762 if (str1[1] == 'c')
763 goto scalecommand; /* or scale */
765 if (str2[0] < '0') {
766 nofont:
767 error("no fontname specified in line %1", linenum);
768 break;
770 if (str1[1] == 't')
771 goto stipplecommand; /* or stipple */
773 tfont[3] = (char *) malloc(strlen(str2) + 1);
774 strcpy(tfont[3], str2);
775 break;
777 case 'l': /* l */
778 if (isdigit(str1[1])) { /* set stipple index */
779 int index = atoi(str1 + 1), val;
781 if (index < 0 || index > NSTIPPLES) {
782 error("bad stipple number %1 at line %2", index, linenum);
783 break;
785 if (!defstipple_index)
786 defstipple_index = other_stipple_index;
787 val = atoi(str2);
788 if (val >= 0 && val < 256)
789 stipple_index[index] = val;
790 else
791 error("bad stipple index value at line %1", linenum);
792 break;
795 stipplecommand: /* set stipple name */
796 stipple = (char *) malloc(strlen(str2) + 1);
797 strcpy(stipple, str2);
798 /* if its a `known' font (currently only `cf'), set indicies */
799 if (strcmp(stipple, "cf") == 0)
800 defstipple_index = cf_stipple_index;
801 else
802 defstipple_index = other_stipple_index;
803 for (i = 0; i <= NSTIPPLES; i++)
804 stipple_index[i] = defstipple_index[i];
805 break;
807 case 'a': /* text adjust */
808 par = atof(str2);
809 switch (str1[1]) {
810 case '1':
811 adj1 = par;
812 break;
813 case '2':
814 adj2 = par;
815 break;
816 case '3':
817 adj3 = par;
818 break;
819 case '4':
820 adj4 = par;
821 break;
822 default:
823 error("bad adjust command at line %1", linenum);
824 break;
826 break;
828 case 't': /* thick */
829 thick[2] = defthick[0] * atof(str2);
830 break;
832 case 'm': /* medium */
833 thick[5] = defthick[0] * atof(str2);
834 break;
836 case 'n': /* narrow */
837 thick[0] = thick[1] = thick[3] = thick[4] =
838 defthick[0] * atof(str2);
839 break;
841 case 'x': /* x */
842 scalecommand: /* scale */
843 par = atof(str2);
844 if (par > 0.0)
845 xscale *= par;
846 else
847 error("illegal scale value on line %1", linenum);
848 break;
850 case 'f': /* file */
851 strcpy(gremlinfile, str2);
852 break;
854 case 'w': /* width */
855 width = atof(str2);
856 if (width < 0.0)
857 width = -width;
858 break;
860 case 'h': /* height */
861 height = atof(str2);
862 if (height < 0.0)
863 height = -height;
864 break;
866 case 'd': /* defaults */
867 setdefault = 1;
868 break;
870 case 'p': /* pointscale */
871 if (strcmp("off", str2))
872 pointscale = 1;
873 else
874 pointscale = 0;
875 break;
877 default:
878 error("unknown command `%1' on line %2", str1, linenum);
879 exit(8);
880 break;
886 * return TRUE if picture contains a polygon
887 * otherwise FALSE
891 has_polygon(register ELT *elist)
893 while (!DBNullelt(elist)) {
894 if (elist->type == POLYGON)
895 return (1);
896 elist = DBNextElt(elist);
899 return (0);
902 /* EOF */