ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/gen/xform.c
(Generate patch)

Comparing ray/src/gen/xform.c (file contents):
Revision 1.17 by greg, Wed Oct 23 15:37:47 1991 UTC vs.
Revision 2.35 by schorsch, Sun Nov 16 09:23:46 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1991 Regents of the University of California */
2
1   #ifndef lint
2 < static char SCCSid[] = "$SunId$ LBL";
2 > static const char RCSid[] = "$Id$";
3   #endif
6
4   /*
5   *  xform.c - program to transform object files.
6   *              Transformations must preserve aspect ratio.
# Line 12 | Line 9 | static char SCCSid[] = "$SunId$ LBL";
9   *     11/6/86          Finally added error checking!
10   */
11  
15 #include  "standard.h"
16
12   #include  <ctype.h>
13  
14 + #include  "platform.h"
15 + #include  "paths.h"
16 + #include  "rtprocess.h" /* win_popen() */
17 + #include  "rtio.h"
18 + #include  "rtmath.h"
19   #include  "object.h"
20
20   #include  "otypes.h"
21  
22   int  xac;                               /* global xform argument count */
# Line 27 | Line 26 | int  xfa;                              /* start of xf arguments */
26   XF  tot;                                /* total transformation */
27   int  reverse;                           /* boolean true if scene mirrored */
28  
29 < int  invert = 0;                        /* boolean true to invert surfaces */
29 > int  invert;                            /* boolean true to invert surfaces */
30  
31 < int  expand = 0;                        /* boolean true to expand commands */
31 > int  expand;                            /* boolean true to expand commands */
32  
33 < char  *newmod = NULL;                   /* new modifier for surfaces */
33 > char  *newmod;                          /* new modifier for surfaces */
34  
35 < char  *idprefix = NULL;                 /* prefix for object identifiers */
35 > char  *idprefix;                        /* prefix for object identifiers */
36  
37 < #define  ALIAS          NUMOTYPE        /* put alias at end of array */
37 > FUN  ofun[NUMOTYPE] = INIT_OTYPE;       /* default types and actions */
38  
39 < #define  NUMTYPES       (NUMOTYPE+1)    /* total number of object types */
39 > short  tinvers[NUMOTYPE];               /* inverse types for surfaces */
40  
41 < FUN  ofun[NUMTYPES] = INIT_OTYPE;       /* default types and actions */
41 > int  nrept = 1;                         /* number of array repetitions */
42  
43 < short  tinvers[NUMOTYPE];               /* inverse types for surfaces */
43 > int stdinused = 0;                      /* stdin has been used by -f option? */
44  
45 < extern char  *malloc(), *fgetword();
45 > char  mainfn[PATH_MAX];                 /* main file name */
46 > FILE  *mainfp = NULL;                   /* main file pointer */
47  
48 < #define  progname  (xav[0])
48 > #define  progname  (xav[0])
49  
50 + static int doargf(int ac, char **av, int fi);
51 + static int doarray(int ac, char **av, int ai);
52 + static void xform(char *name, FILE *fin);
53 + static void xfcomm(char *fname, FILE *fin);
54 + static void xfobject(char *fname, FILE *fin);
55 + static int addxform(FILE *fin);
56 + static int alias(FILE *fin);
57 + static void initotypes(void);
58 + static void openmain(char *iname);
59  
60 < main(argc, argv)                /* get transform options and transform file */
61 < int  argc;
62 < char  *argv[];
60 >
61 > int
62 > main(           /* get transform options and transform file */
63 >        int  argc,
64 >        char  *argv[]
65 > )
66   {
67 <        FILE  *fopen();
56 <        FILE  *fp;
67 >        int  mal_prefix = 0;
68          int  a;
69 <                                        /* check for array */
69 >                                        /* check for argument list file */
70          for (a = 1; a < argc; a++)
71 +                if (!strcmp(argv[a], "-f"))
72 +                        return(doargf(argc, argv, a));
73 +                                        /* check for regular array */
74 +        for (a = 1; a < argc; a++)
75                  if (!strcmp(argv[a], "-a"))
76                          return(doarray(argc, argv, a));
77  
78 <        initotypes();
78 >        initotypes();                   /* initialize */
79 >        invert = 0;
80 >        expand = 1;
81 >        newmod = NULL;
82 >        idprefix = NULL;
83  
84          for (a = 1; a < argc; a++) {
85                  if (argv[a][0] == '-')
86                          switch (argv[a][1]) {
87                          case 'm':
88 <                                if (argv[a][2] || a+1 >= argc)
88 >                                if (argv[a][2] | (a+1 >= argc))
89                                          break;
90 <                                newmod = argv[++a];
90 >                                a++;
91 >                                if (newmod == NULL)
92 >                                        newmod = argv[a];
93                                  continue;
94                          case 'n':
95 <                                if (argv[a][2] || a+1 >= argc)
95 >                                if (argv[a][2] | (a+1 >= argc))
96                                          break;
97 <                                idprefix = argv[++a];
97 >                                a++;
98 >                                if (idprefix == NULL)
99 >                                        idprefix = argv[a];
100 >                                else {
101 >                                        register char   *newp;
102 >                                        newp = (char *)malloc(strlen(idprefix)+
103 >                                                        strlen(argv[a])+2);
104 >                                        if (newp == NULL)
105 >                                                exit(2);
106 >                                        sprintf(newp, "%s.%s",
107 >                                                        idprefix, argv[a]);
108 >                                        if (mal_prefix++)
109 >                                                free((void *)idprefix);
110 >                                        idprefix = newp;
111 >                                }
112                                  continue;
113 +                        case 'c':
114 +                                if (argv[a][2])
115 +                                        break;
116 +                                expand = 0;
117 +                                continue;
118                          case 'e':
119                                  if (argv[a][2])
120                                          break;
# Line 83 | Line 123 | char  *argv[];
123                          case 'I':
124                                  if (argv[a][2])
125                                          break;
126 <                                invert = 1;
126 >                                invert = !invert;
127                                  continue;
128                          }
129                  break;
# Line 94 | Line 134 | char  *argv[];
134  
135          a += xf(&tot, argc-a, argv+a);
136  
137 <        if (reverse = tot.sca < 0.0)
137 >        if ( (reverse = tot.sca < 0.0) )
138                  tot.sca = -tot.sca;
139          if (invert)
140                  reverse = !reverse;
# Line 112 | Line 152 | char  *argv[];
152                  printf(" %s", xav[a]);
153          putchar('\n');
154                                          /* transform input */
155 <        if (xac == argc)
156 <                xform("standard input", stdin);
157 <        else
155 >        if (xac == argc) {
156 >                if (stdinused) {
157 >                        fprintf(stderr, "%s: cannot use stdin more than once\n",
158 >                                        argv[0]);
159 >                        exit(1);
160 >                }
161 >                openmain(NULL);
162 >                xform(mainfn, mainfp);
163 >        } else
164                  for (a = xac; a < argc; a++) {
165 <                        if ((fp = fopen(argv[a], "r")) == NULL) {
166 <                                fprintf(stderr, "%s: cannot open \"%s\"\n",
121 <                                                progname, argv[a]);
122 <                                exit(1);
123 <                        }
124 <                        xform(argv[a], fp);
125 <                        fclose(fp);
165 >                        openmain(argv[a]);
166 >                        xform(mainfn, mainfp);
167                  }
168  
169 +        if (mal_prefix)
170 +                free((void *)idprefix);
171          return(0);
172   }
173  
174  
175 < doarray(ac, av, ai)                     /* make array */
176 < char  **av;
177 < int  ac, ai;
175 > int
176 > doargf(                 /* take argument list from file */
177 >        int ac,
178 >        char  **av,
179 >        int fi
180 > )
181   {
182 +        int  inquote;
183          char  *newav[256], **avp;
184 +        char  argbuf[1024];
185 +        char  newid[128];
186 +        char  *oldid;
187 +        register char   *cp;
188 +        FILE    *argfp;
189 +        int  n, i, k, newac, err;
190 +        
191 +        if (fi >= ac-1 || (av[fi+1][0] == '-' && av[fi+1][1] != '\0')) {
192 +                fprintf(stderr, "%s: missing file for -f option\n", av[0]);
193 +                exit(1);
194 +        }
195 +        if (av[fi+1][0] == '-' && av[fi+1][1] == '\0') {
196 +                if (stdinused++) {
197 +                        fprintf(stderr,
198 +                                "%s: cannot use stdin more than once\n",
199 +                                        av[0]);
200 +                        exit(1);
201 +                }
202 +                argfp = stdin;
203 +                n = 100;                /* we just don't know! */
204 +        } else {
205 +                if ((argfp = fopen(av[fi+1], "r")) == NULL) {
206 +                        fprintf(stderr,
207 +                                "%s: cannot open argument file \"%s\"\n",
208 +                                        av[0], av[fi+1]);
209 +                        exit(1);
210 +                }
211 +                n = 0;                  /* count number of lines in file */
212 +                while (fgetline(argbuf,sizeof(argbuf),argfp) != NULL)
213 +                        n += argbuf[0] && argbuf[0] != '#';
214 +                if (!n) {
215 +                        fprintf(stderr, "%s: empty argument file \"%s\"\n",
216 +                                        av[0], av[fi+1]);
217 +                        exit(1);
218 +                }
219 +                nrept *= n;
220 +                rewind(argfp);
221 +        }
222 +        err = 0; k = 0;                 /* read each arg list and call main */
223 +        while (fgetline(argbuf,sizeof(argbuf),argfp) != NULL) {
224 +                if (!argbuf[0] || argbuf[0] == '#')
225 +                        continue;
226 +                avp = newav+2;
227 +                avp[0] = av[0];
228 +                for (i = 1; i < fi; i++)
229 +                        avp[i] = av[i];
230 +                newac = i;
231 +                cp = argbuf;            /* parse new words */
232 +                if (*cp == '!') cp++;
233 +                if (!strncmp(cp, "xform ", 6)) cp += 6;
234 +                inquote = 0;
235 +                for ( ; ; ) {
236 +                skipspaces:
237 +                        while (isspace(*cp))    /* nullify spaces */
238 +                                *cp++ = '\0';
239 +                        if ((*cp == '"') | (*cp == '\''))
240 +                                inquote = *cp++;
241 +                        if (!*cp)               /* all done? */
242 +                                break;
243 +                        if (cp[0] == '\\' && cp[1])
244 +                                if (*++cp == '\n')
245 +                                        goto skipspaces;
246 +                        avp[newac++] = cp;      /* add argument to list */
247 +                        if (inquote) {
248 +                                while (*++cp)
249 +                                        if (*cp == inquote) {
250 +                                                *cp++ = '\0';
251 +                                                break;
252 +                                        }
253 +                        } else {
254 +                                while (*++cp && !isspace(*cp))
255 +                                        ;
256 +                        }
257 +                }
258 +                for (i = fi+2; i < ac; i++)
259 +                        avp[newac++] = av[i];
260 +                avp[newac] = NULL;
261 +                oldid = NULL;
262 +                for (i = 2; i < newac; i++)
263 +                        if (!strcmp(avp[i-1], "-n")) {
264 +                                oldid = avp[i];
265 +                                avp[i] = newid;
266 +                                break;
267 +                        }
268 +                if (oldid == NULL) {
269 +                        newav[0] = av[0];
270 +                        newav[1] = "-n";
271 +                        newav[2] = newid;
272 +                        avp = newav;
273 +                        newac += 2;
274 +                }
275 +                if (oldid == NULL)
276 +                        sprintf(newid, "i%d", k);
277 +                else
278 +                        sprintf(newid, "%s.%d", oldid, k);
279 +                err |= main(newac, avp);
280 +                k++;
281 +        }
282 +        fclose(argfp);
283 +        return(err);
284 + }
285 +
286 +
287 + int
288 + doarray(                        /* make array */
289 +        int  ac,
290 +        char  **av,
291 +        int  ai
292 + )
293 + {
294 +        char  *newav[256], **avp;
295          char  newid[128], repts[32];
296          char  *oldid = NULL;
297 <        int  i, err;
297 >        int  n, i, err;
298          
299 +        if (ai >= ac-1 || (n = atoi(av[ai+1])) <= 0) {
300 +                fprintf(stderr, "%s: missing count for -a option\n", av[0]);
301 +                exit(1);
302 +        }
303 +        nrept *= n;
304          avp = newav+2;
305          avp[0] = av[0];
306          for (i = 1; i < ac; i++)
# Line 157 | Line 320 | int  ac, ai;
320                  ac += 2;
321          }
322          err = 0;
323 <        for (i = 0; i < atoi(av[ai+1]); i++) {
323 >        for (i = 0; i < n; i++) {
324                  if (oldid == NULL)
325                          sprintf(newid, "a%d", i);
326                  else
# Line 169 | Line 332 | int  ac, ai;
332   }
333  
334  
335 < xform(name, fin)                        /* transform stream by tot.xfm */
336 < char  *name;
337 < register FILE  *fin;
335 > void
336 > xform(                  /* transform stream by tot.xfm */
337 >        char  *name,
338 >        register FILE  *fin
339 > )
340   {
341 +        int  nobjs = 0;
342          register int  c;
343  
344          while ((c = getc(fin)) != EOF) {
# Line 188 | Line 354 | register FILE  *fin;
354                  } else if (c == '!') {                  /* command */
355                          ungetc(c, fin);
356                          xfcomm(name, fin);
357 +                        nobjs++;
358                  } else {                                /* object */
359                          ungetc(c, fin);
360                          xfobject(name, fin);
361 +                        nobjs++;
362                  }
363          }
364 +        if (nobjs == 0)
365 +                fprintf(stderr, "%s: (%s): warning - empty file\n",
366 +                                progname, name);
367   }
368  
369  
370 < xfcomm(fname, fin)                      /* transform a command */
371 < FILE  *fin;
370 > void
371 > xfcomm(                 /* transform a command */
372 >        char  *fname,
373 >        FILE  *fin
374 > )
375   {
202        FILE  *popen();
203        char  *fgetline();
376          FILE  *pin;
377          char  buf[512];
378          int  i;
379  
380          fgetline(buf, sizeof(buf), fin);
381          if (expand) {
382 <                if (xac > 2) {
383 <                        if ((pin = popen(buf+1, "r")) == NULL) {
384 <                                fprintf(stderr,
385 <                                "%s: (%s): cannot execute \"%s\"\n",
214 <                                                progname, fname, buf);
215 <                                exit(1);
216 <                        }
217 <                        xform(buf, pin);
218 <                        pclose(pin);
219 <                } else {
220 <                        fflush(stdout);
221 <                        system(buf+1);
382 >                if ((pin = popen(buf+1, "r")) == NULL) {
383 >                        fprintf(stderr, "%s: (%s): cannot execute \"%s\"\n",
384 >                                        progname, fname, buf);
385 >                        exit(1);
386                  }
387 +                xform(buf, pin);
388 +                pclose(pin);
389          } else {
390                  printf("\n%s", buf);
391                  if (xac > 1) {
392 <                        printf(" | %s -e", xav[0]);
392 >                        printf(" | %s -e", xav[0]);     /* expand next time */
393                          for (i = 1; i < xac; i++)
394 <                                printf(" %s", xav[i]);
394 >                                if (i >= xfa || strcmp(xav[i], "-c"))
395 >                                        printf(" %s", xav[i]);
396                  }
397                  putchar('\n');
398          }
399   }
400  
401  
402 < xfobject(fname, fin)                            /* transform an object */
403 < char  *fname;
404 < FILE  *fin;
402 > void
403 > xfobject(                               /* transform an object */
404 >        char  *fname,
405 >        FILE  *fin
406 > )
407   {
239        extern char  *strcpy();
408          char  typ[16], nam[MAXSTR];
409          int  fn;
410                                                  /* modifier and type */
# Line 248 | Line 416 | FILE  *fin;
416                                  progname, fname, typ);
417                  exit(1);
418          }
419 <        if (issurface(fn))
419 >        if (ismodifier(fn))
420 >                printf("\n%s %s ", nam, typ);
421 >        else
422                  printf("\n%s %s ", newmod != NULL ? newmod : nam,
423                                  invert ? ofun[tinvers[fn]].funame : typ);
254        else
255                printf("\n%s %s ", nam, typ);
424                                                  /* object name */
425          fgetword(nam, sizeof(nam), fin);
426 <        if (idprefix != NULL && issurface(fn))
259 <                printf("%s.%s\n", idprefix, nam);
260 <        else
426 >        if (idprefix == NULL || ismodifier(fn))
427                  printf("%s\n", nam);
428 +        else
429 +                printf("%s.%s\n", idprefix, nam);
430                                                  /* transform arguments */
431          if ((*ofun[fn].funp)(fin) < 0) {
432                  fprintf(stderr, "%s: (%s): bad %s \"%s\"\n",
# Line 268 | Line 436 | FILE  *fin;
436   }
437  
438  
439 < o_default(fin)                  /* pass on arguments unchanged */
440 < FILE  *fin;
439 > int
440 > o_default(                      /* pass on arguments unchanged */
441 >        FILE  *fin
442 > )
443   {
444          register int  i;
445 <        FUNARGS  fa;
445 >        FUNARGS  fa;
446  
447          if (readfargs(&fa, fin) != 1)
448                  return(-1);
449                                          /* string arguments */
450          printf("%d", fa.nsargs);
451 <        for (i = 0; i < fa.nsargs; i++)
452 <                printf(" %s", fa.sarg[i]);
451 >        for (i = 0; i < fa.nsargs; i++) {
452 >                fputc(' ', stdout);
453 >                fputword(fa.sarg[i], stdout);
454 >        }
455          printf("\n");
456 < #ifdef  IARGS
456 > #ifdef  IARGS
457                                          /* integer arguments */
458          printf("%d", fa.niargs);
459          for (i = 0; i < fa.niargs; i++)
# Line 300 | Line 472 | FILE  *fin;
472   }
473  
474  
475 < addxform(fin)                   /* add xf arguments to strings */
476 < FILE  *fin;
475 > int
476 > addxform(                       /* add xf arguments to strings */
477 >        FILE  *fin
478 > )
479   {
480          register int  i;
481 <        FUNARGS  fa;
481 >        int  resetarr = 0;
482 >        FUNARGS  fa;
483  
484          if (readfargs(&fa, fin) != 1)
485                  return(-1);
486                                          /* string arguments */
487 <        printf("%d", fa.nsargs + xac-xfa);
488 <        for (i = 0; i < fa.nsargs; i++)
489 <                printf(" %s", fa.sarg[i]);
487 >        if (xac > xfa && strcmp(xav[xfa], "-i"))
488 >                resetarr = 2;
489 >        printf("%d", fa.nsargs + resetarr + xac-xfa);
490 >        for (i = 0; i < fa.nsargs; i++) {
491 >                fputc(' ', stdout);
492 >                fputword(fa.sarg[i], stdout);
493 >        }
494 >        if (resetarr)
495 >                printf(" -i 1");
496          for (i = xfa; i < xac; i++)     /* add xf arguments */
497                  printf(" %s", xav[i]);
498          printf("\n");
499 < #ifdef  IARGS
499 > #ifdef  IARGS
500                                          /* integer arguments */
501          printf("%d", fa.niargs);
502          for (i = 0; i < fa.niargs; i++)
# Line 335 | Line 516 | FILE  *fin;
516  
517  
518   int
519 < otype(ofname)                   /* get object function number from its name */
520 < register char  *ofname;
519 > alias(                  /* transfer alias */
520 >        FILE  *fin
521 > )
522   {
341        register int  i;
342
343        for (i = 0; i < NUMTYPES; i++)
344                if (!strcmp(ofun[i].funame, ofname))
345                        return(i);
346
347        return(-1);             /* not found */
348 }
349
350
351 alias(fin)                      /* transfer alias */
352 FILE  *fin;
353 {
523          char  aliasnm[MAXSTR];
524  
525          if (fgetword(aliasnm, MAXSTR, fin) == NULL)
# Line 360 | Line 529 | FILE  *fin;
529   }
530  
531  
532 < m_glow(fin)                     /* transform arguments for proximity light */
533 < FILE  *fin;
532 > int
533 > m_glow(                 /* transform arguments for proximity light */
534 >        FILE  *fin
535 > )
536   {
537 <        FUNARGS  fa;
537 >        FUNARGS  fa;
538  
539          if (readfargs(&fa, fin) != 1)
540                  return(-1);
# Line 378 | Line 549 | FILE  *fin;
549   }
550  
551  
552 < m_spot(fin)                     /* transform arguments for spotlight */
553 < FILE  *fin;
552 > int
553 > m_spot(                 /* transform arguments for spotlight */
554 >        FILE  *fin
555 > )
556   {
557          FVECT  v;
558 <        FUNARGS  fa;
558 >        FUNARGS  fa;
559  
560          if (readfargs(&fa, fin) != 1)
561                  return(-1);
# Line 398 | Line 571 | FILE  *fin;
571   }
572  
573  
574 < m_dielectric(fin)               /* transform arguments for dielectric */
575 < FILE  *fin;
574 > int
575 > m_mist(         /* transform arguments for mist */
576 >        FILE  *fin
577 > )
578   {
579 <        double  pow();
580 <        FUNARGS  fa;
579 >        FUNARGS  fa;
580 >        int     i;
581  
582          if (readfargs(&fa, fin) != 1)
583                  return(-1);
584 +        if (fa.nfargs > 7)
585 +                return(-1);
586 +        printf("%d", fa.nsargs);
587 +        if (idprefix == NULL)
588 +                for (i = 0; i < fa.nsargs; i++)
589 +                        printf(" %s", fa.sarg[i]);
590 +        else
591 +                for (i = 0; i < fa.nsargs; i++) {
592 +                        char    sname[256], *sp;
593 +                        register char   *cp1, *cp2 = sname;
594 +                                                        /* add idprefix */
595 +                        for (sp = fa.sarg[i]; *sp; sp = cp1) {
596 +                                for (cp1 = idprefix; *cp1; )
597 +                                        *cp2++ = *cp1++;
598 +                                *cp2++ = '.';
599 +                                for (cp1 = sp; *cp1 &&
600 +                                                (*cp2++ = *cp1++) != '>'; )
601 +                                        ;
602 +                        }
603 +                        *cp2 = '\0';
604 +                        printf(" %s", sname);
605 +                }
606 +        printf("\n0\n%d", fa.nfargs);
607 +        if (fa.nfargs > 2)
608 +                printf(" %12.6g %12.6g %12.6g", fa.farg[0]/tot.sca,
609 +                                fa.farg[1]/tot.sca, fa.farg[2]/tot.sca);
610 +        for (i = 3; i < fa.nfargs; i++)
611 +                printf(" %12.6g", fa.farg[i]);
612 +        printf("\n");
613 +        freefargs(&fa);
614 +        return(0);
615 + }
616 +
617 +
618 + int
619 + m_dielectric(           /* transform arguments for dielectric */
620 +        FILE  *fin
621 + )
622 + {
623 +        FUNARGS  fa;
624 +
625 +        if (readfargs(&fa, fin) != 1)
626 +                return(-1);
627          if (fa.nsargs != 0  || fa.nfargs != 5)
628                  return(-1);
629          printf("0\n0\n5");
630 <        printf(" %18.12g %18.12g %18.12g",
630 >        printf(" %12.6g %12.6g %12.6g",
631                  pow(fa.farg[0], 1.0/tot.sca),
632                  pow(fa.farg[1], 1.0/tot.sca),
633                  pow(fa.farg[2], 1.0/tot.sca));
634 <        printf(" %18.12g %18.12g\n", fa.farg[3], fa.farg[4]);
634 >        printf(" %12.6g %12.6g\n", fa.farg[3], fa.farg[4]);
635          freefargs(&fa);
636          return(0);
637   }
638  
639  
640 < m_interface(fin)                /* transform arguments for interface */
641 < FILE  *fin;
640 > int
641 > m_interface(            /* transform arguments for interface */
642 >        FILE  *fin
643 > )
644   {
645 <        double  pow();
426 <        FUNARGS  fa;
645 >        FUNARGS  fa;
646  
647          if (readfargs(&fa, fin) != 1)
648                  return(-1);
649          if (fa.nsargs != 0  || fa.nfargs != 8)
650                  return(-1);
651          printf("0\n0\n8\n");
652 <        printf("%18.12g %18.12g %18.12g",
652 >        printf("%12.6g %12.6g %12.6g",
653                  pow(fa.farg[0], 1.0/tot.sca),
654                  pow(fa.farg[1], 1.0/tot.sca),
655                  pow(fa.farg[2], 1.0/tot.sca));
656 <        printf(" %18.12g\n", fa.farg[3]);
657 <        printf("%18.12g %18.12g %18.12g",
656 >        printf(" %12.6g\n", fa.farg[3]);
657 >        printf("%12.6g %12.6g %12.6g",
658                  pow(fa.farg[4], 1.0/tot.sca),
659                  pow(fa.farg[5], 1.0/tot.sca),
660                  pow(fa.farg[6], 1.0/tot.sca));
661 <        printf(" %18.12g\n", fa.farg[7]);
661 >        printf(" %12.6g\n", fa.farg[7]);
662          freefargs(&fa);
663          return(0);
664   }
665  
666  
667 < text(fin)                       /* transform text arguments */
668 < FILE  *fin;
667 > int
668 > text(                   /* transform text arguments */
669 >        FILE  *fin
670 > )
671   {
672          int  i;
673          FVECT  v;
674 <        FUNARGS  fa;
674 >        FUNARGS  fa;
675  
676          if (readfargs(&fa, fin) != 1)
677                  return(-1);
678 <        if (fa.nfargs != 9 && fa.nfargs != 11 && fa.nfargs != 15)
678 >        if (fa.nfargs < 9)
679                  return(-1);
680                                          /* string arguments */
681          printf("%d", fa.nsargs);
682 <        for (i = 0; i < fa.nsargs; i++)
683 <                printf(" %s", fa.sarg[i]);
682 >        for (i = 0; i < fa.nsargs; i++) {
683 >                fputc(' ', stdout);
684 >                fputword(fa.sarg[i], stdout);
685 >        }
686          printf("\n0\n%d\n", fa.nfargs);
687                                          /* anchor point */
688          multp3(v, fa.farg, tot.xfm);
# Line 469 | Line 692 | FILE  *fin;
692          printf(" %18.12g %18.12g %18.12g\n", v[0], v[1], v[2]);
693                                          /* down vector */
694          multv3(v, fa.farg+6, tot.xfm);
695 <        printf(" %18.12g %18.12g %18.12g\n", v[0], v[1], v[2]);
696 <                                        /* forground and background */
697 <        if (fa.nfargs == 11)
698 <                printf(" %18.12g %18.12g\n", fa.farg[9], fa.farg[10]);
699 <        else if (fa.nfargs == 15) {
700 <                printf(" %18.12g %18.12g %18.12g\n",
478 <                                fa.farg[9], fa.farg[10], fa.farg[11]);
479 <                printf(" %18.12g %18.12g %18.12g\n",
480 <                                fa.farg[12], fa.farg[13], fa.farg[14]);
695 >        printf(" %18.12g %18.12g %18.12g", v[0], v[1], v[2]);
696 >                                        /* remaining arguments */
697 >        for (i = 9; i < fa.nfargs; i++) {
698 >                if (i%3 == 0)
699 >                        putchar('\n');
700 >                printf(" %18.12g", fa.farg[i]);
701          }
702 +        putchar('\n');
703          freefargs(&fa);
704          return(0);
705   }
706  
707  
708 < o_source(fin)                   /* transform source arguments */
709 < FILE  *fin;
708 > int
709 > o_source(                       /* transform source arguments */
710 >        FILE  *fin
711 > )
712   {
713          FVECT  dv;
714 <        FUNARGS  fa;
714 >        FUNARGS  fa;
715  
716          if (readfargs(&fa, fin) != 1)
717                  return(-1);
# Line 505 | Line 728 | FILE  *fin;
728   }
729  
730  
731 < o_sphere(fin)                   /* transform sphere arguments */
732 < FILE  *fin;
731 > int
732 > o_sphere(                       /* transform sphere arguments */
733 >        FILE  *fin
734 > )
735   {
736          FVECT  cent;
737 <        double  rad;
738 <        FUNARGS  fa;
737 >        double  rad;
738 >        FUNARGS  fa;
739  
740          if (readfargs(&fa, fin) != 1)
741                  return(-1);
742          if (fa.nsargs != 0  || fa.nfargs != 4)
743                  return(-1);
744          
745 <        multp3(cent, fa.farg, tot.xfm); /* transform center */
745 >        multp3(cent, fa.farg, tot.xfm); /* transform center */
746          
747          rad = fa.farg[3] * tot.sca;             /* scale radius */
748          
# Line 529 | Line 754 | FILE  *fin;
754   }
755  
756  
757 < o_face(fin)                     /* transform face arguments */
758 < FILE  *fin;
757 > int
758 > o_face(                 /* transform face arguments */
759 >        FILE  *fin
760 > )
761   {
762          FVECT  p;
763          register int  i;
764 <        FUNARGS  fa;
764 >        FUNARGS  fa;
765  
766          if (readfargs(&fa, fin) != 1)
767                  return(-1);
# Line 555 | Line 782 | FILE  *fin;
782   }
783  
784  
785 < o_cone(fin)                     /* transform cone and cup arguments */
786 < FILE  *fin;
785 > int
786 > o_cone(                 /* transform cone and cup arguments */
787 >        FILE  *fin
788 > )
789   {
790          FVECT  p0, p1;
791 <        double  r0, r1;
792 <        FUNARGS  fa;
791 >        double  r0, r1;
792 >        FUNARGS  fa;
793  
794          if (readfargs(&fa, fin) != 1)
795                  return(-1);
# Line 582 | Line 811 | FILE  *fin;
811   }
812  
813  
814 < o_cylinder(fin)                 /* transform cylinder and tube arguments */
815 < FILE  *fin;
814 > int
815 > o_cylinder(                     /* transform cylinder and tube arguments */
816 >        FILE  *fin
817 > )
818   {
819          FVECT  p0, p1;
820 <        double  rad;
821 <        FUNARGS  fa;
820 >        double  rad;
821 >        FUNARGS  fa;
822  
823          if (readfargs(&fa, fin) != 1)
824                  return(-1);
# Line 607 | Line 838 | FILE  *fin;
838   }
839  
840  
841 < o_ring(fin)                     /* transform ring arguments */
842 < FILE  *fin;
841 > int
842 > o_ring(                 /* transform ring arguments */
843 >        FILE  *fin
844 > )
845   {
846          FVECT  p0, pd;
847 <        double  r0, r1;
848 <        FUNARGS  fa;
847 >        double  r0, r1;
848 >        FUNARGS  fa;
849  
850          if (readfargs(&fa, fin) != 1)
851                  return(-1);
# Line 638 | Line 871 | FILE  *fin;
871   }
872  
873  
874 < initotypes()                    /* initialize ofun[] array */
874 > void
875 > initotypes(void)                        /* initialize ofun[] array */
876   {
643        extern int  o_source();
644        extern int  o_sphere();
645        extern int  o_face();
646        extern int  o_cone();
647        extern int  o_cylinder();
648        extern int  o_ring();
649        extern int  m_glow();
650        extern int  m_spot();
651        extern int  m_dielectric();
652        extern int  m_interface();
653        extern int  text();
654        extern int  alias();
655        extern int  passargs();
656        extern int  addxform();
877          register int  i;
878  
879          if (ofun[OBJ_SOURCE].funp == o_source)
880                  return;                 /* done already */
661                                        /* alias is additional */
662        ofun[ALIAS].funame = ALIASID;
663        ofun[ALIAS].flags = 0;
881                                          /* functions get new transform */
882 <        for (i = 0; i < NUMTYPES; i++)
882 >        for (i = 0; i < NUMOTYPE; i++)
883                  if (hasfunc(i))
884                          ofun[i].funp = addxform;
885                                          /* special cases */
# Line 675 | Line 892 | initotypes()                   /* initialize ofun[] array */
892          ofun[OBJ_CYLINDER].funp =
893          ofun[OBJ_TUBE].funp = o_cylinder;
894          ofun[OBJ_RING].funp = o_ring;
895 <        ofun[OBJ_INSTANCE].funp = addxform;
895 >        ofun[OBJ_INSTANCE].funp =
896 >        ofun[OBJ_MESH].funp = addxform;
897          ofun[MAT_GLOW].funp = m_glow;
898          ofun[MAT_SPOT].funp = m_spot;
899          ofun[MAT_DIELECTRIC].funp = m_dielectric;
900          ofun[MAT_INTERFACE].funp = m_interface;
901 +        ofun[MAT_MIST].funp = m_mist;
902          ofun[PAT_CTEXT].funp =
903          ofun[PAT_BTEXT].funp =
904          ofun[MIX_TEXT].funp = text;
905 <        ofun[ALIAS].funp = alias;
905 >        ofun[MOD_ALIAS].funp = alias;
906                                          /* surface inverses */
907 +        tinvers[OBJ_FACE] = OBJ_FACE;
908          tinvers[OBJ_SOURCE] = OBJ_SOURCE;
909          tinvers[OBJ_CONE] = OBJ_CUP;
910          tinvers[OBJ_CUP] = OBJ_CONE;
# Line 695 | Line 915 | initotypes()                   /* initialize ofun[] array */
915          tinvers[OBJ_TUBE] = OBJ_CYLINDER;
916          tinvers[OBJ_INSTANCE] = OBJ_INSTANCE;   /* oh, well */
917   }
918 +
919 +
920 + #ifdef  OLDXFORM
921 + void
922 + openmain(
923 +        char  *fname
924 + )
925 + {
926 +        if (fname == NULL) {
927 +                strcpy(mainfn, "standard input");
928 +                mainfp = stdin;
929 +                return;
930 +        }
931 +        if (mainfp != NULL) {
932 +                if (!strcmp(fname, mainfn)) {
933 +                        rewind(mainfp);
934 +                        return;
935 +                }
936 +                fclose(mainfp);
937 +        }
938 +        if ((mainfp = fopen(fname, "r")) == NULL) {
939 +                fprintf(stderr, "%s: cannot open file \"%s\"\n",
940 +                                progname, fname);
941 +                exit(1);
942 +        }
943 +        strcpy(mainfn, fname);
944 + }
945 + #else
946 + void
947 + openmain(               /* open input, changing directory for file */
948 +        char  *iname
949 + )
950 + {
951 +        static char  origdir[PATH_MAX];
952 +        static char  curfn[PATH_MAX];
953 +        static int  diffdir;
954 +        register char  *fpath;
955 +
956 +        if (iname == NULL) {                    /* standard input */
957 +                if (mainfp == NULL) {
958 +                        register int  c;
959 +                        strcpy(mainfn, "standard input");
960 +                        if (nrept <= 1) {
961 +                                mainfp = stdin;
962 +                                return;                 /* just read once */
963 +                        }
964 +                                                        /* else copy */
965 +                        if ((mainfp = tmpfile()) == NULL) {
966 +                                fprintf(stderr,
967 +                                        "%s: cannot create temporary file\n",
968 +                                                progname);
969 +                                exit(1);
970 +                        }
971 +                        while ((c = getc(stdin)) != EOF)
972 +                                putc(c, mainfp);
973 +                }
974 +                rewind(mainfp);                 /* rewind copy */
975 +                return;
976 +        }
977 +        if (mainfp == NULL) {                   /* first call, initialize */
978 +                getcwd(origdir, sizeof(origdir));
979 +        } else if (!strcmp(iname, curfn)) {     /* just need to rewind? */
980 +                rewind(mainfp);
981 +                return;
982 +        } else {                                /* else close old stream */
983 +                fclose(mainfp);
984 +                mainfp = NULL;
985 +                if (diffdir) {                  /* return to our directory */
986 +                        chdir(origdir);
987 +                        diffdir = 0;
988 +                }
989 +        }
990 +        strcpy(curfn, iname);                   /* remember input name */
991 +                                                /* get full path for file */
992 +        if ((fpath = getpath(iname, getrlibpath(), R_OK)) == NULL) {
993 +                fprintf(stderr, "%s: cannot find file \"%s\"\n",
994 +                                progname, iname);
995 +                exit(1);
996 +        }
997 +        if (fpath[0] == '.' && ISDIRSEP(fpath[1]))      /* remove leading ./ */
998 +                fpath += 2;
999 +                                                /* record path name */
1000 +        strcpy(mainfn, fpath);
1001 +        if (expand) {                           /* change to local directory */
1002 +                register char  *cp = fpath + strlen(fpath);     /* get dir. */
1003 +                while (cp > fpath) {
1004 +                        cp--;
1005 +                        if (ISDIRSEP(*cp)) {
1006 +                                if (cp == fpath)
1007 +                                        cp++;   /* root special case */
1008 +                                break;
1009 +                        }
1010 +                }
1011 +                *cp = '\0';
1012 +                if (fpath[0]) {                 /* change to new directory? */
1013 +                        if (chdir(fpath) < 0) {
1014 +                                fprintf(stderr,
1015 +                                "%s: cannot change directory to \"%s\"\n",
1016 +                                                progname, fpath);
1017 +                                exit(1);
1018 +                        }
1019 +                        diffdir++;
1020 +                }
1021 +                                                /* get final path component */
1022 +                for (fpath = iname+strlen(iname);
1023 +                                fpath > iname && !ISDIRSEP(fpath[-1]); fpath--)
1024 +                        ;
1025 +        }
1026 +                                                /* finally, open the file */
1027 +        if ((mainfp = fopen(fpath, "r")) == NULL) {
1028 +                fprintf(stderr, "%s: cannot open file \"%s\"\n",
1029 +                                progname, mainfn);
1030 +                exit(1);
1031 +        }
1032 + }
1033 + #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines