Added win32 port contributed by Blake McBride
[s-roff.git] / src / preproc / grn / main.cc
blobbcbb2df85e56c569f28ba9357b7c3b3d09561be3
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);
253 while (--argc) {
254 if (**++argv != '-')
255 file[gfil++] = *argv;
256 else
257 switch (c = (*argv)[1]) {
259 case 0:
260 file[gfil++] = NULL;
261 break;
263 case 'v':
265 extern const char *Version_string;
266 fprintf(stderr, "GNU grn version %s\n", Version_string);
267 fflush(stderr);
268 break;
270 case 'C': /* compatibility mode */
271 compatibility_flag = TRUE;
272 break;
274 case 'F': /* font path to find DESC */
275 font::command_line_font_dir(operand(&argc, &argv));
276 break;
278 case 'T': /* final output typesetter name */
279 device = operand(&argc, &argv);
280 break;
282 case 'M': /* set library directory */
283 macro_path.command_line_dir(operand(&argc, &argv));
284 break;
286 case 's': /* preserve order of elements */
287 sflag = 1;
288 break;
290 case '?':
291 usage();
292 break;
294 default:
295 error("unknown switch: %1", c);
296 usage();
300 getres(); /* set the resolution for an output device */
302 if (gfil == 0) { /* no filename, use standard input */
303 file[0] = NULL;
304 gfil++;
307 for (k = 0; k < gfil; k++) {
308 if (file[k] != NULL) {
309 if ((fp = fopen(file[k], "r")) == NULL)
310 fatal("can't open %1", file[k]);
311 } else
312 fp = stdin;
314 while (doinput(fp) != NULL) {
315 if (*c1 == '.' && *c2 == 'G' && *c3 == 'S') {
316 if (compatibility_flag ||
317 *c4 == '\n' || *c4 == ' ' || *c4 == '\0')
318 conv(fp, linenum);
319 else
320 fputs(inputline, stdout);
321 } else
322 fputs(inputline, stdout);
328 /*----------------------------------------------------------------------------*
329 | Routine: char * operand (& argc, & argv)
331 | Results: Returns address of the operand given with a command-line
332 | option. It uses either `-Xoperand' or `-X operand', whichever
333 | is present. The program is terminated if no option is
334 | present.
336 | Side Efct: argc and argv are updated as necessary.
337 *----------------------------------------------------------------------------*/
339 char *
340 operand(int *argcp,
341 char ***argvp)
343 if ((**argvp)[2])
344 return (**argvp + 2); /* operand immediately follows */
345 if ((--*argcp) <= 0) { /* no operand */
346 error("command-line option operand missing.");
347 exit(8);
349 return (*(++(*argvp))); /* operand is next word */
353 /*----------------------------------------------------------------------------*
354 | Routine: getres ()
356 | Results: Sets `res' to the resolution of the output device.
357 *----------------------------------------------------------------------------*/
359 void
360 getres(void)
362 int linepiece;
364 if (!font::load_desc())
365 fatal("sorry, I can't continue");
367 res = font::res;
369 /* Correct the brush thicknesses based on res */
370 /* if (res >= 256) {
371 defthick[0] = res >> 8;
372 defthick[1] = res >> 8;
373 defthick[2] = res >> 4;
374 defthick[3] = res >> 8;
375 defthick[4] = res >> 8;
376 defthick[5] = res >> 6;
377 } */
379 linepiece = res >> 9;
380 for (dotshifter = 0; linepiece; dotshifter++)
381 linepiece = linepiece >> 1;
385 /*----------------------------------------------------------------------------*
386 | Routine: char * doinput (file_pointer)
388 | Results: A line of input is read into `inputline'.
390 | Side Efct: "linenum" is incremented.
392 | Bugs: Lines longer than MAXINLINE are NOT checked, except for
393 | updating `linenum'.
394 *----------------------------------------------------------------------------*/
396 char *
397 doinput(FILE *fp)
399 char *k;
401 if ((k = fgets(inputline, MAXINLINE, fp)) == NULL)
402 return k;
403 if (strchr(inputline, '\n')) /* ++ only if it's a complete line */
404 linenum++;
405 return (char *) !NULL;
409 /*----------------------------------------------------------------------------*
410 | Routine: initpic ( )
412 | Results: Sets all parameters to the normal defaults, possibly
413 | overridden by a setdefault command. Initialize the picture
414 | variables, and output the startup commands to troff to begin
415 | the picture.
416 *----------------------------------------------------------------------------*/
418 void
419 initpic(void)
421 register int i;
423 for (i = 0; i < STYLES; i++) { /* line thickness defaults */
424 thick[i] = defthick[i];
426 for (i = 0; i < FONTS; i++) { /* font name defaults */
427 tfont[i] = deffont[i];
429 for (i = 0; i < SIZES; i++) { /* font size defaults */
430 tsize[i] = defsize[i];
432 for (i = 0; i <= NSTIPPLES; i++) { /* stipple font file default indices */
433 stipple_index[i] = defstipple_index[i];
435 stipple = defstipple;
437 gremlinfile[0] = 0; /* filename is `null' */
438 setdefault = 0; /* this is not the default settings (yet) */
440 toppoint = BIG; /* set the picture bounds out */
441 bottompoint = -BIG; /* of range so they'll be set */
442 leftpoint = BIG; /* by `savebounds' on input */
443 rightpoint = -BIG;
445 pointscale = defpoint; /* flag for scaling point sizes default */
446 xscale = scale; /* default scale of individual pictures */
447 width = 0.0; /* size specifications input by user */
448 height = 0.0;
450 linethickness = DEFTHICK; /* brush styles */
451 linmod = DEFSTYLE;
455 /*----------------------------------------------------------------------------*
456 | Routine: conv (file_pointer, starting_line)
458 | Results: At this point, we just passed a `.GS' line in the input
459 | file. conv reads the input and calls `interpret' to process
460 | commands, gathering up information until a `.GE' line is
461 | found. It then calls `HGPrint' to do the translation of the
462 | gremlin file to troff commands.
463 *----------------------------------------------------------------------------*/
465 void
466 conv(register FILE *fp,
467 int baseline)
469 register FILE *gfp = NULL; /* input file pointer */
470 register int done = 0; /* flag to remember if finished */
471 register ELT *e; /* current element pointer */
472 ELT *PICTURE; /* whole picture data base pointer */
473 double temp; /* temporary calculating area */
474 /* POINT ptr; */ /* coordinates of a point to pass to `mov' */
475 /* routine */
476 int flyback; /* flag `want to end up at the top of the */
477 /* picture?' */
478 int compat; /* test character after .GE or .GF */
481 initpic(); /* set defaults, ranges, etc. */
482 strcpy(GScommand, inputline); /* save `.GS' line for later */
484 do {
485 done = (doinput(fp) == NULL); /* test for EOF */
486 flyback = (*c3 == 'F'); /* and .GE or .GF */
487 compat = (compatibility_flag ||
488 *c4 == '\n' || *c4 == ' ' || *c4 == '\0');
489 done |= (*c1 == '.' && *c2 == 'G' && (*c3 == 'E' || flyback) &&
490 compat);
492 if (done) {
493 if (setdefault)
494 savestate();
496 if (!gremlinfile[0]) {
497 if (!setdefault)
498 error("at line %1: no picture filename.\n", baseline);
499 return;
501 char *path;
502 gfp = macro_path.open_file(gremlinfile, &path);
503 if (!gfp)
504 return;
505 PICTURE = DBRead(gfp); /* read picture file */
506 fclose(gfp);
507 a_delete path;
508 if (DBNullelt(PICTURE))
509 return; /* If a request is made to make the */
510 /* picture fit into a specific area, */
511 /* set the scale to do that. */
513 if (stipple == (char *) NULL) /* if user forgot stipple */
514 if (has_polygon(PICTURE)) /* and picture has a polygon */
515 stipple = DEFSTIPPLE; /* then set the default */
517 if ((temp = bottompoint - toppoint) < 0.1)
518 temp = 0.1;
519 temp = (height != 0.0) ? height / (temp * SCREENtoINCH) : BIG;
520 if ((troffscale = rightpoint - leftpoint) < 0.1)
521 troffscale = 0.1;
522 troffscale = (width != 0.0) ?
523 width / (troffscale * SCREENtoINCH) : BIG;
524 if (temp == BIG && troffscale == BIG)
525 troffscale = xscale;
526 else {
527 if (temp < troffscale)
528 troffscale = temp;
529 } /* here, troffscale is the */
530 /* picture's scaling factor */
531 if (pointscale) {
532 register int i; /* do pointscaling here, when */
533 /* scale is known, before output */
534 for (i = 0; i < SIZES; i++)
535 tsize[i] = (int) (troffscale * (double) tsize[i] + 0.5);
538 /* change to device units */
539 troffscale *= SCREENtoINCH * res; /* from screen units */
541 ytop = (int) (toppoint * troffscale); /* calculate integer */
542 ybottom = (int) (bottompoint * troffscale); /* versions of the */
543 xleft = (int) (leftpoint * troffscale); /* picture limits */
544 xright = (int) (rightpoint * troffscale);
546 /* save stuff in number registers, */
547 /* register g1 = picture width and */
548 /* register g2 = picture height, */
549 /* set vertical spacing, no fill, */
550 /* and break (to make sure picture */
551 /* starts on left), and put out the */
552 /* user's `.GS' line. */
553 printf(".br\n"
554 ".nr g1 %du\n"
555 ".nr g2 %du\n"
556 "%s"
557 ".nr g3 \\n(.f\n"
558 ".nr g4 \\n(.s\n"
559 "\\0\n"
560 ".sp -1\n",
561 xright - xleft, ybottom - ytop, GScommand);
563 if (stipple) /* stipple requested for this picture */
564 printf(".st %s\n", stipple);
565 lastx = xleft; /* note where we are (upper left */
566 lastyline = lasty = ytop; /* corner of the picture) */
568 /* Just dump everything in the order it appears.
570 * If -s command-line option, traverse picture twice: First time,
571 * print only the interiors of filled polygons (as borderless
572 * polygons). Second time, print the outline as series of line
573 * segments. This way, postprocessors that overwrite rather than
574 * merge picture elements (such as Postscript) can still have text and
575 * graphics on a shaded background.
577 /* if (sflag) */
578 if (!sflag) { /* changing the default for filled polygons */
579 e = PICTURE;
580 polyfill = FILL;
581 while (!DBNullelt(e)) {
582 printf(".mk\n");
583 if (e->type == POLYGON)
584 HGPrintElt(e, baseline);
585 printf(".rt\n");
586 lastx = xleft;
587 lastyline = lasty = ytop;
588 e = DBNextElt(e);
591 e = PICTURE;
593 /* polyfill = !sflag ? BOTH : OUTLINE; */
594 polyfill = sflag ? BOTH : OUTLINE; /* changing the default */
595 while (!DBNullelt(e)) {
596 printf(".mk\n");
597 HGPrintElt(e, baseline);
598 printf(".rt\n");
599 lastx = xleft;
600 lastyline = lasty = ytop;
601 e = DBNextElt(e);
604 /* decide where to end picture */
606 /* I changed everything here. I always use the combination .mk and */
607 /* .rt so once finished I just space down the heigth of the picture */
608 /* that is \n(g2u */
609 if (flyback) { /* end picture at upper left */
610 /* ptr.x = leftpoint;
611 ptr.y = toppoint; */
612 } else { /* end picture at lower left */
613 /* ptr.x = leftpoint;
614 ptr.y = bottompoint; */
615 printf(".sp \\n(g2u\n");
618 /* tmove(&ptr); */ /* restore default line parameters */
620 /* restore everything to the way it was before the .GS, then put */
621 /* out the `.GE' line from user */
623 /* printf("\\D't %du'\\D's %du'\n", DEFTHICK, DEFSTYLE); */
624 /* groff doesn't understand the \Ds command */
626 printf("\\D't %du'\n", DEFTHICK);
627 if (flyback) /* make sure we end up at top of */
628 printf(".sp -1\n"); /* picture if `flying back' */
629 if (stipple) /* restore stipple to previous */
630 printf(".st\n");
631 printf(".br\n"
632 ".ft \\n(g3\n"
633 ".ps \\n(g4\n"
634 "%s", inputline);
635 } else
636 interpret(inputline); /* take commands from the input file */
637 } while (!done);
641 /*----------------------------------------------------------------------------*
642 | Routine: savestate ( )
644 | Results: all the current scaling / font size / font name / thickness
645 | / pointscale settings are saved to be the defaults. Scaled
646 | point sizes are NOT saved. The scaling is done each time a
647 | new picture is started.
649 | Side Efct: scale, and def* are modified.
650 *----------------------------------------------------------------------------*/
652 void
653 savestate(void)
655 register int i;
657 for (i = 0; i < STYLES; i++) /* line thickness defaults */
658 defthick[i] = thick[i];
659 for (i = 0; i < FONTS; i++) /* font name defaults */
660 deffont[i] = tfont[i];
661 for (i = 0; i < SIZES; i++) /* font size defaults */
662 defsize[i] = tsize[i];
663 for (i = 0; i <= NSTIPPLES; i++) /* stipple font file default indices */
664 defstipple_index[i] = stipple_index[i];
666 defstipple = stipple; /* if stipple has been set, it's remembered */
667 scale *= xscale; /* default scale of individual pictures */
668 defpoint = pointscale; /* flag for scaling pointsizes from x factors */
672 /*----------------------------------------------------------------------------*
673 | Routine: savebounds (x_coordinate, y_coordinate)
675 | Results: Keeps track of the maximum and minimum extent of a picture
676 | in the global variables: left-, right-, top- and
677 | bottompoint. `savebounds' assumes that the points have been
678 | oriented to the correct direction. No scaling has taken
679 | place, though.
680 *----------------------------------------------------------------------------*/
682 void
683 savebounds(float x,
684 float y)
686 if (x < leftpoint)
687 leftpoint = x;
688 if (x > rightpoint)
689 rightpoint = x;
690 if (y < toppoint)
691 toppoint = y;
692 if (y > bottompoint)
693 bottompoint = y;
697 /*----------------------------------------------------------------------------*
698 | Routine: interpret (character_string)
700 | Results: Commands are taken from the input string and performed.
701 | Commands are separated by the endofline, and are of the
702 | format:
703 | string1 string2
705 | where string1 is the command and string2 is the argument.
707 | Side Efct: Font and size strings, plus the gremlin file name and the
708 | width and height variables are set by this routine.
709 *----------------------------------------------------------------------------*/
711 void
712 interpret(char *line)
714 char str1[MAXINLINE];
715 char str2[MAXINLINE];
716 register char *chr;
717 register int i;
718 double par;
720 str2[0] = '\0';
721 sscanf(line, "%80s%80s", &str1[0], &str2[0]);
722 for (chr = &str1[0]; *chr; chr++) /* convert command to */
723 if (isupper(*chr))
724 *chr = tolower(*chr); /* lower case */
726 switch (str1[0]) {
728 case '1':
729 case '2': /* font sizes */
730 case '3':
731 case '4':
732 i = atoi(str2);
733 if (i > 0 && i < 1000)
734 tsize[str1[0] - '1'] = i;
735 else
736 error("bad font size value at line %1", linenum);
737 break;
739 case 'r': /* roman */
740 if (str2[0] < '0')
741 goto nofont;
742 tfont[0] = (char *) malloc(strlen(str2) + 1);
743 strcpy(tfont[0], str2);
744 break;
746 case 'i': /* italics */
747 if (str2[0] < '0')
748 goto nofont;
749 tfont[1] = (char *) malloc(strlen(str2) + 1);
750 strcpy(tfont[1], str2);
751 break;
753 case 'b': /* bold */
754 if (str2[0] < '0')
755 goto nofont;
756 tfont[2] = (char *) malloc(strlen(str2) + 1);
757 strcpy(tfont[2], str2);
758 break;
760 case 's': /* special */
761 if (str1[1] == 'c')
762 goto scalecommand; /* or scale */
764 if (str2[0] < '0') {
765 nofont:
766 error("no fontname specified in line %1", linenum);
767 break;
769 if (str1[1] == 't')
770 goto stipplecommand; /* or stipple */
772 tfont[3] = (char *) malloc(strlen(str2) + 1);
773 strcpy(tfont[3], str2);
774 break;
776 case 'l': /* l */
777 if (isdigit(str1[1])) { /* set stipple index */
778 int index = atoi(str1 + 1), val;
780 if (index < 0 || index > NSTIPPLES) {
781 error("bad stipple number %1 at line %2", index, linenum);
782 break;
784 if (!defstipple_index)
785 defstipple_index = other_stipple_index;
786 val = atoi(str2);
787 if (val >= 0 && val < 256)
788 stipple_index[index] = val;
789 else
790 error("bad stipple index value at line %1", linenum);
791 break;
794 stipplecommand: /* set stipple name */
795 stipple = (char *) malloc(strlen(str2) + 1);
796 strcpy(stipple, str2);
797 /* if its a `known' font (currently only `cf'), set indicies */
798 if (strcmp(stipple, "cf") == 0)
799 defstipple_index = cf_stipple_index;
800 else
801 defstipple_index = other_stipple_index;
802 for (i = 0; i <= NSTIPPLES; i++)
803 stipple_index[i] = defstipple_index[i];
804 break;
806 case 'a': /* text adjust */
807 par = atof(str2);
808 switch (str1[1]) {
809 case '1':
810 adj1 = par;
811 break;
812 case '2':
813 adj2 = par;
814 break;
815 case '3':
816 adj3 = par;
817 break;
818 case '4':
819 adj4 = par;
820 break;
821 default:
822 error("bad adjust command at line %1", linenum);
823 break;
825 break;
827 case 't': /* thick */
828 thick[2] = defthick[0] * atof(str2);
829 break;
831 case 'm': /* medium */
832 thick[5] = defthick[0] * atof(str2);
833 break;
835 case 'n': /* narrow */
836 thick[0] = thick[1] = thick[3] = thick[4] =
837 defthick[0] * atof(str2);
838 break;
840 case 'x': /* x */
841 scalecommand: /* scale */
842 par = atof(str2);
843 if (par > 0.0)
844 xscale *= par;
845 else
846 error("illegal scale value on line %1", linenum);
847 break;
849 case 'f': /* file */
850 strcpy(gremlinfile, str2);
851 break;
853 case 'w': /* width */
854 width = atof(str2);
855 if (width < 0.0)
856 width = -width;
857 break;
859 case 'h': /* height */
860 height = atof(str2);
861 if (height < 0.0)
862 height = -height;
863 break;
865 case 'd': /* defaults */
866 setdefault = 1;
867 break;
869 case 'p': /* pointscale */
870 if (strcmp("off", str2))
871 pointscale = 1;
872 else
873 pointscale = 0;
874 break;
876 default:
877 error("unknown command `%1' on line %2", str1, linenum);
878 exit(8);
879 break;
885 * return TRUE if picture contains a polygon
886 * otherwise FALSE
890 has_polygon(register ELT *elist)
892 while (!DBNullelt(elist)) {
893 if (elist->type == POLYGON)
894 return (1);
895 elist = DBNextElt(elist);
898 return (0);
901 /* EOF */