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 2.19 by gwlarson, Fri Jun 4 16:00:27 1999 UTC vs.
Revision 2.27 by greg, Fri Jun 27 22:27:45 2003 UTC

# Line 1 | Line 1
1 /* Copyright (c) 1996 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
17 #include  "paths.h"
18
12   #include  <ctype.h>
13  
14 + #include  "standard.h"
15 + #include  "platform.h"
16 + #include  "paths.h"
17   #include  "object.h"
22
18   #include  "otypes.h"
19  
20   int  xac;                               /* global xform argument count */
# Line 29 | Line 24 | int  xfa;                              /* start of xf arguments */
24   XF  tot;                                /* total transformation */
25   int  reverse;                           /* boolean true if scene mirrored */
26  
27 < int  invert = 0;                        /* boolean true to invert surfaces */
27 > int  invert;                            /* boolean true to invert surfaces */
28  
29 < int  expand = 1;                        /* boolean true to expand commands */
29 > int  expand;                            /* boolean true to expand commands */
30  
31 < char  *newmod = NULL;                   /* new modifier for surfaces */
31 > char  *newmod;                          /* new modifier for surfaces */
32  
33 < char  *idprefix = NULL;                 /* prefix for object identifiers */
33 > char  *idprefix;                        /* prefix for object identifiers */
34  
35 < #define  ALIAS          NUMOTYPE        /* put alias at end of array */
35 > FUN  ofun[NUMOTYPE] = INIT_OTYPE;       /* default types and actions */
36  
42 #define  NUMTYPES       (NUMOTYPE+1)    /* total number of object types */
43
44 FUN  ofun[NUMTYPES] = INIT_OTYPE;       /* default types and actions */
45
37   short  tinvers[NUMOTYPE];               /* inverse types for surfaces */
38  
39   int  nrept = 1;                         /* number of array repetitions */
40  
41   int stdinused = 0;                      /* stdin has been used by -f option? */
42  
52 extern char  *malloc(), *fgets(), *fgetword();
53
43   char  mainfn[MAXPATH];                  /* main file name */
44   FILE  *mainfp = NULL;                   /* main file pointer */
45  
# Line 61 | Line 50 | main(argc, argv)               /* get transform options and transfo
50   int  argc;
51   char  *argv[];
52   {
53 +        int  mal_prefix = 0;
54          char  *fname;
55          int  a;
56                                          /* check for argument list file */
# Line 72 | Line 62 | char  *argv[];
62                  if (!strcmp(argv[a], "-a"))
63                          return(doarray(argc, argv, a));
64  
65 <        initotypes();
65 >        initotypes();                   /* initialize */
66 >        invert = 0;
67 >        expand = 1;
68 >        newmod = NULL;
69 >        idprefix = NULL;
70  
71          for (a = 1; a < argc; a++) {
72                  if (argv[a][0] == '-')
73                          switch (argv[a][1]) {
74                          case 'm':
75 <                                if (argv[a][2] || a+1 >= argc)
75 >                                if (argv[a][2] | a+1 >= argc)
76                                          break;
77 <                                newmod = argv[++a];
77 >                                a++;
78 >                                if (newmod == NULL)
79 >                                        newmod = argv[a];
80                                  continue;
81                          case 'n':
82 <                                if (argv[a][2] || a+1 >= argc)
82 >                                if (argv[a][2] | a+1 >= argc)
83                                          break;
84 <                                idprefix = argv[++a];
84 >                                a++;
85 >                                if (idprefix == NULL)
86 >                                        idprefix = argv[a];
87 >                                else {
88 >                                        register char   *newp;
89 >                                        newp = (char *)malloc(strlen(idprefix)+
90 >                                                        strlen(argv[a])+2);
91 >                                        if (newp == NULL)
92 >                                                exit(2);
93 >                                        sprintf(newp, "%s.%s",
94 >                                                        idprefix, argv[a]);
95 >                                        if (mal_prefix++)
96 >                                                free((void *)idprefix);
97 >                                        idprefix = newp;
98 >                                }
99                                  continue;
100                          case 'c':
101                                  if (argv[a][2])
# Line 100 | Line 110 | char  *argv[];
110                          case 'I':
111                                  if (argv[a][2])
112                                          break;
113 <                                invert = 1;
113 >                                invert = !invert;
114                                  continue;
115                          }
116                  break;
# Line 143 | Line 153 | char  *argv[];
153                          xform(mainfn, mainfp);
154                  }
155  
156 +        if (mal_prefix)
157 +                free((void *)idprefix);
158          return(0);
159   }
160  
# Line 151 | Line 163 | doargf(ac, av, fi)                     /* take argument list from file *
163   char  **av;
164   int  ac, fi;
165   {
166 +        int  inquote;
167          char  *newav[256], **avp;
168 <        char  argbuf[2048];
168 >        char  argbuf[1024];
169          char  newid[128];
170          char  *oldid;
171          register char   *cp;
# Line 165 | Line 178 | int  ac, fi;
178          }
179          if (av[fi+1][0] == '-' && av[fi+1][1] == '\0') {
180                  if (stdinused++) {
181 <                        fprintf(stderr, "%s: cannot use stdin more than once\n",
181 >                        fprintf(stderr,
182 >                                "%s: cannot use stdin more than once\n",
183                                          av[0]);
184                          exit(1);
185                  }
# Line 173 | Line 187 | int  ac, fi;
187                  n = 100;                /* we just don't know! */
188          } else {
189                  if ((argfp = fopen(av[fi+1], "r")) == NULL) {
190 <                        fprintf(stderr, "%s: cannot open argument file \"%s\"\n",
190 >                        fprintf(stderr,
191 >                                "%s: cannot open argument file \"%s\"\n",
192                                          av[0], av[fi+1]);
193                          exit(1);
194                  }
195                  n = 0;                  /* count number of lines in file */
196 <                while (fgets(argbuf,sizeof(argbuf),argfp) != NULL)
197 <                        n += argbuf[0] != '\n' & argbuf[0] != '#';
196 >                while (fgetline(argbuf,sizeof(argbuf),argfp) != NULL)
197 >                        n += argbuf[0] && argbuf[0] != '#';
198                  if (!n) {
199                          fprintf(stderr, "%s: empty argument file \"%s\"\n",
200                                          av[0], av[fi+1]);
# Line 189 | Line 204 | int  ac, fi;
204                  rewind(argfp);
205          }
206          err = 0; k = 0;                 /* read each arg list and call main */
207 <        while (fgets(argbuf,sizeof(argbuf),argfp) != NULL) {
208 <                if (argbuf[0] == '\n' | argbuf[0] == '#')
207 >        while (fgetline(argbuf,sizeof(argbuf),argfp) != NULL) {
208 >                if (!argbuf[0] || argbuf[0] == '#')
209                          continue;
210                  avp = newav+2;
211                  avp[0] = av[0];
# Line 200 | Line 215 | int  ac, fi;
215                  cp = argbuf;            /* parse new words */
216                  if (*cp == '!') cp++;
217                  if (!strncmp(cp, "xform ", 6)) cp += 6;
218 +                inquote = 0;
219                  for ( ; ; ) {
220 +                skipspaces:
221                          while (isspace(*cp))    /* nullify spaces */
222                                  *cp++ = '\0';
223 +                        if ((*cp == '"' | *cp == '\''))
224 +                                inquote = *cp++;
225                          if (!*cp)               /* all done? */
226                                  break;
227 +                        if (cp[0] == '\\' && cp[1])
228 +                                if (*++cp == '\n')
229 +                                        goto skipspaces;
230                          avp[newac++] = cp;      /* add argument to list */
231 <                        while (*++cp && !isspace(*cp))
232 <                                ;
231 >                        if (inquote) {
232 >                                while (*++cp)
233 >                                        if (*cp == inquote) {
234 >                                                *cp++ = '\0';
235 >                                                break;
236 >                                        }
237 >                        } else {
238 >                                while (*++cp && !isspace(*cp))
239 >                                        ;
240 >                        }
241                  }
242                  for (i = fi+2; i < ac; i++)
243                          avp[newac++] = av[i];
# Line 320 | Line 350 | xfcomm(fname, fin)                     /* transform a command */
350   char  *fname;
351   FILE  *fin;
352   {
323        extern FILE  *popen();
324        extern char  *fgetline();
353          FILE  *pin;
354          char  buf[512];
355          int  i;
# Line 338 | Line 366 | FILE  *fin;
366          } else {
367                  printf("\n%s", buf);
368                  if (xac > 1) {
369 <                        printf(" | %s", xav[0]);
369 >                        printf(" | %s -e", xav[0]);     /* expand next time */
370                          for (i = 1; i < xac; i++)
371 <                                printf(" %s", xav[i]);
371 >                                if (i >= xfa || strcmp(xav[i], "-c"))
372 >                                        printf(" %s", xav[i]);
373                  }
374                  putchar('\n');
375          }
# Line 351 | Line 380 | xfobject(fname, fin)                           /* transform an object */
380   char  *fname;
381   FILE  *fin;
382   {
354        extern char  *strcpy();
383          char  typ[16], nam[MAXSTR];
384          int  fn;
385                                                  /* modifier and type */
# Line 393 | Line 421 | FILE  *fin;
421                  return(-1);
422                                          /* string arguments */
423          printf("%d", fa.nsargs);
424 <        for (i = 0; i < fa.nsargs; i++)
425 <                printf(" %s", fa.sarg[i]);
424 >        for (i = 0; i < fa.nsargs; i++) {
425 >                fputc(' ', stdout);
426 >                fputword(fa.sarg[i], stdout);
427 >        }
428          printf("\n");
429   #ifdef  IARGS
430                                          /* integer arguments */
# Line 428 | Line 458 | FILE  *fin;
458          if (xac > xfa && strcmp(xav[xfa], "-i"))
459                  resetarr = 2;
460          printf("%d", fa.nsargs + resetarr + xac-xfa);
461 <        for (i = 0; i < fa.nsargs; i++)
462 <                printf(" %s", fa.sarg[i]);
461 >        for (i = 0; i < fa.nsargs; i++) {
462 >                fputc(' ', stdout);
463 >                fputword(fa.sarg[i], stdout);
464 >        }
465          if (resetarr)
466                  printf(" -i 1");
467          for (i = xfa; i < xac; i++)     /* add xf arguments */
# Line 454 | Line 486 | FILE  *fin;
486   }
487  
488  
457 int
458 otype(ofname)                   /* get object function number from its name */
459 register char  *ofname;
460 {
461        register int  i;
462
463        for (i = 0; i < NUMTYPES; i++)
464                if (!strcmp(ofun[i].funame, ofname))
465                        return(i);
466
467        return(-1);             /* not found */
468 }
469
470
489   alias(fin)                      /* transfer alias */
490   FILE  *fin;
491   {
# Line 618 | Line 636 | FILE  *fin;
636                  return(-1);
637                                          /* string arguments */
638          printf("%d", fa.nsargs);
639 <        for (i = 0; i < fa.nsargs; i++)
640 <                printf(" %s", fa.sarg[i]);
639 >        for (i = 0; i < fa.nsargs; i++) {
640 >                fputc(' ', stdout);
641 >                fputword(fa.sarg[i], stdout);
642 >        }
643          printf("\n0\n%d\n", fa.nfargs);
644                                          /* anchor point */
645          multp3(v, fa.farg, tot.xfm);
# Line 802 | Line 822 | initotypes()                   /* initialize ofun[] array */
822  
823          if (ofun[OBJ_SOURCE].funp == o_source)
824                  return;                 /* done already */
805                                        /* alias is additional */
806        ofun[ALIAS].funame = ALIASID;
807        ofun[ALIAS].flags = 0;
825                                          /* functions get new transform */
826 <        for (i = 0; i < NUMTYPES; i++)
826 >        for (i = 0; i < NUMOTYPE; i++)
827                  if (hasfunc(i))
828                          ofun[i].funp = addxform;
829                                          /* special cases */
# Line 828 | Line 845 | initotypes()                   /* initialize ofun[] array */
845          ofun[PAT_CTEXT].funp =
846          ofun[PAT_BTEXT].funp =
847          ofun[MIX_TEXT].funp = text;
848 <        ofun[ALIAS].funp = alias;
848 >        ofun[MOD_ALIAS].funp = alias;
849                                          /* surface inverses */
850          tinvers[OBJ_FACE] = OBJ_FACE;
851          tinvers[OBJ_SOURCE] = OBJ_SOURCE;
# Line 867 | Line 884 | char  *fname;
884          strcpy(mainfn, fname);
885   }
886   #else
887 < openmain(fname)         /* open fname for input, changing to its directory */
888 < char  *fname;
887 > openmain(iname)         /* open input, changing directory for file */
888 > char  *iname;
889   {
873        extern FILE  *tmpfile();
874        extern char  *getlibpath(), *getpath();
890          static char  origdir[MAXPATH];
891          static char  curfn[MAXPATH];
892          static int  diffdir;
893          register char  *fpath;
894  
895 <        if (fname == NULL) {                    /* standard input */
895 >        if (iname == NULL) {                    /* standard input */
896                  if (mainfp == NULL) {
897                          register int  c;
898                          strcpy(mainfn, "standard input");
# Line 894 | Line 909 | char  *fname;
909                          }
910                          while ((c = getc(stdin)) != EOF)
911                                  putc(c, mainfp);
897                        fclose(stdin);
912                  }
913                  rewind(mainfp);                 /* rewind copy */
914                  return;
915          }
916          if (mainfp == NULL) {                   /* first call, initialize */
917                  getwd(origdir);
918 <        } else if (!strcmp(fname, curfn)) {     /* just need to rewind? */
918 >        } else if (!strcmp(iname, curfn)) {     /* just need to rewind? */
919                  rewind(mainfp);
920                  return;
921          } else {                                /* else close old stream */
922                  fclose(mainfp);
923 <                if (diffdir) {
923 >                mainfp = NULL;
924 >                if (diffdir) {                  /* return to our directory */
925                          chdir(origdir);
926                          diffdir = 0;
927                  }
928          }
929 <        strcpy(curfn, fname);                   /* remember file name */
930 <                                                /* get full path */
931 <        if ((fpath = getpath(fname, getlibpath(), R_OK)) == NULL) {
929 >        strcpy(curfn, iname);                   /* remember input name */
930 >                                                /* get full path for file */
931 >        if ((fpath = getpath(iname, getrlibpath(), R_OK)) == NULL) {
932                  fprintf(stderr, "%s: cannot find file \"%s\"\n",
933 <                                progname, fname);
933 >                                progname, iname);
934                  exit(1);
935          }
936          if (fpath[0] == '.' && ISDIRSEP(fpath[1]))      /* remove leading ./ */
# Line 943 | Line 958 | char  *fname;
958                          diffdir++;
959                  }
960                                                  /* get final path component */
961 <                for (fpath = fname+strlen(fname);
962 <                                fpath > fname && !ISDIRSEP(fpath[-1]); fpath--)
961 >                for (fpath = iname+strlen(iname);
962 >                                fpath > iname && !ISDIRSEP(fpath[-1]); fpath--)
963                          ;
964          }
965 <                                                /* open the file */
965 >                                                /* finally, open the file */
966          if ((mainfp = fopen(fpath, "r")) == NULL) {
967                  fprintf(stderr, "%s: cannot open file \"%s\"\n",
968                                  progname, mainfn);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines