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.22 by gwlarson, Fri Jun 4 17:24:56 1999 UTC vs.
Revision 2.33 by greg, Wed Oct 22 02:06:34 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  "platform.h"
15 + #include  "standard.h"
16 + #include  "paths.h"
17   #include  "object.h"
22
18   #include  "otypes.h"
19  
20   int  xac;                               /* global xform argument count */
# Line 37 | Line 32 | char  *newmod;                         /* new modifier for surfaces */
32  
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  
43 < extern char  *malloc(), *fgets(), *fgetword();
53 <
54 < char  mainfn[MAXPATH];                  /* main file name */
43 > char  mainfn[PATH_MAX];                 /* main file name */
44   FILE  *mainfp = NULL;                   /* main file pointer */
45  
46   #define  progname  (xav[0])
# Line 83 | Line 72 | char  *argv[];
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                                  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                                  a++;
85                                  if (idprefix == NULL)
# Line 104 | Line 93 | char  *argv[];
93                                          sprintf(newp, "%s.%s",
94                                                          idprefix, argv[a]);
95                                          if (mal_prefix++)
96 <                                                free((char *)idprefix);
96 >                                                free((void *)idprefix);
97                                          idprefix = newp;
98                                  }
99                                  continue;
# Line 132 | Line 121 | char  *argv[];
121  
122          a += xf(&tot, argc-a, argv+a);
123  
124 <        if (reverse = tot.sca < 0.0)
124 >        if ( (reverse = tot.sca < 0.0) )
125                  tot.sca = -tot.sca;
126          if (invert)
127                  reverse = !reverse;
# Line 165 | Line 154 | char  *argv[];
154                  }
155  
156          if (mal_prefix)
157 <                free((char *)idprefix);
157 >                free((void *)idprefix);
158          return(0);
159   }
160  
# Line 174 | 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[1024];
169          char  newid[128];
# Line 188 | 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 196 | 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 212 | 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 223 | 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 343 | Line 350 | xfcomm(fname, fin)                     /* transform a command */
350   char  *fname;
351   FILE  *fin;
352   {
346        extern FILE  *popen();
347        extern char  *fgetline();
353          FILE  *pin;
354          char  buf[512];
355          int  i;
# Line 375 | Line 380 | xfobject(fname, fin)                           /* transform an object */
380   char  *fname;
381   FILE  *fin;
382   {
378        extern char  *strcpy();
383          char  typ[16], nam[MAXSTR];
384          int  fn;
385                                                  /* modifier and type */
# Line 417 | 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 452 | 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 478 | Line 486 | FILE  *fin;
486   }
487  
488  
481 int
482 otype(ofname)                   /* get object function number from its name */
483 register char  *ofname;
484 {
485        register int  i;
486
487        for (i = 0; i < NUMTYPES; i++)
488                if (!strcmp(ofun[i].funame, ofname))
489                        return(i);
490
491        return(-1);             /* not found */
492 }
493
494
489   alias(fin)                      /* transfer alias */
490   FILE  *fin;
491   {
# Line 642 | 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 826 | Line 822 | initotypes()                   /* initialize ofun[] array */
822  
823          if (ofun[OBJ_SOURCE].funp == o_source)
824                  return;                 /* done already */
829                                        /* alias is additional */
830        ofun[ALIAS].funame = ALIASID;
831        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 843 | Line 836 | initotypes()                   /* initialize ofun[] array */
836          ofun[OBJ_CYLINDER].funp =
837          ofun[OBJ_TUBE].funp = o_cylinder;
838          ofun[OBJ_RING].funp = o_ring;
839 <        ofun[OBJ_INSTANCE].funp = addxform;
839 >        ofun[OBJ_INSTANCE].funp =
840 >        ofun[OBJ_MESH].funp = addxform;
841          ofun[MAT_GLOW].funp = m_glow;
842          ofun[MAT_SPOT].funp = m_spot;
843          ofun[MAT_DIELECTRIC].funp = m_dielectric;
# Line 852 | Line 846 | initotypes()                   /* initialize ofun[] array */
846          ofun[PAT_CTEXT].funp =
847          ofun[PAT_BTEXT].funp =
848          ofun[MIX_TEXT].funp = text;
849 <        ofun[ALIAS].funp = alias;
849 >        ofun[MOD_ALIAS].funp = alias;
850                                          /* surface inverses */
851          tinvers[OBJ_FACE] = OBJ_FACE;
852          tinvers[OBJ_SOURCE] = OBJ_SOURCE;
# Line 891 | Line 885 | char  *fname;
885          strcpy(mainfn, fname);
886   }
887   #else
888 < openmain(fname)         /* open fname for input, changing to its directory */
889 < char  *fname;
888 > openmain(iname)         /* open input, changing directory for file */
889 > char  *iname;
890   {
891 <        extern FILE  *tmpfile();
892 <        extern char  *getlibpath(), *getpath();
899 <        static char  origdir[MAXPATH];
900 <        static char  curfn[MAXPATH];
891 >        static char  origdir[PATH_MAX];
892 >        static char  curfn[PATH_MAX];
893          static int  diffdir;
894          register char  *fpath;
895  
896 <        if (fname == NULL) {                    /* standard input */
896 >        if (iname == NULL) {                    /* standard input */
897                  if (mainfp == NULL) {
898                          register int  c;
899                          strcpy(mainfn, "standard input");
# Line 918 | Line 910 | char  *fname;
910                          }
911                          while ((c = getc(stdin)) != EOF)
912                                  putc(c, mainfp);
921                        fclose(stdin);
913                  }
914                  rewind(mainfp);                 /* rewind copy */
915                  return;
916          }
917          if (mainfp == NULL) {                   /* first call, initialize */
918 <                getwd(origdir);
919 <        } else if (!strcmp(fname, curfn)) {     /* just need to rewind? */
918 >                getcwd(origdir, sizeof(origdir));
919 >        } else if (!strcmp(iname, curfn)) {     /* just need to rewind? */
920                  rewind(mainfp);
921                  return;
922          } else {                                /* else close old stream */
923                  fclose(mainfp);
924 <                if (diffdir) {
924 >                mainfp = NULL;
925 >                if (diffdir) {                  /* return to our directory */
926                          chdir(origdir);
927                          diffdir = 0;
928                  }
929          }
930 <        strcpy(curfn, fname);                   /* remember file name */
931 <                                                /* get full path */
932 <        if ((fpath = getpath(fname, getlibpath(), R_OK)) == NULL) {
930 >        strcpy(curfn, iname);                   /* remember input name */
931 >                                                /* get full path for file */
932 >        if ((fpath = getpath(iname, getrlibpath(), R_OK)) == NULL) {
933                  fprintf(stderr, "%s: cannot find file \"%s\"\n",
934 <                                progname, fname);
934 >                                progname, iname);
935                  exit(1);
936          }
937          if (fpath[0] == '.' && ISDIRSEP(fpath[1]))      /* remove leading ./ */
# Line 967 | Line 959 | char  *fname;
959                          diffdir++;
960                  }
961                                                  /* get final path component */
962 <                for (fpath = fname+strlen(fname);
963 <                                fpath > fname && !ISDIRSEP(fpath[-1]); fpath--)
962 >                for (fpath = iname+strlen(iname);
963 >                                fpath > iname && !ISDIRSEP(fpath[-1]); fpath--)
964                          ;
965          }
966 <                                                /* open the file */
966 >                                                /* finally, open the file */
967          if ((mainfp = fopen(fpath, "r")) == NULL) {
968                  fprintf(stderr, "%s: cannot open file \"%s\"\n",
969                                  progname, mainfn);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines