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

Comparing ray/src/cal/calc.c (file contents):
Revision 1.3 by schorsch, Mon Jun 30 14:59:10 2003 UTC vs.
Revision 1.10 by greg, Tue Sep 26 18:09:08 2023 UTC

# Line 8 | Line 8 | static const char      RCSid[] = "$Id$";
8   */
9  
10   #include  <stdlib.h>
11 #include  <stdio.h>
12 #include  <string.h>
11   #include  <setjmp.h>
12   #include  <ctype.h>
13  
14 + #include  "rtio.h"
15 + #include  "rterror.h"
16   #include  "calcomp.h"
17  
18
18   #define  MAXRES         100
19  
20   double  result[MAXRES];
# Line 25 | Line 24 | jmp_buf  env;
24   int  recover = 0;
25  
26  
27 < main(argc, argv)
28 < int  argc;
30 < char  *argv[];
27 > int
28 > main(int argc, char *argv[])
29   {
30 <        char  expr[512];
30 >        char  expr[2048];
31 >        char  *epos;
32          FILE  *fp;
33          int  i;
34 <        register char  *cp;
34 >        char  *cp;
35  
36          esupport |= E_VARIABLE|E_INCHAN|E_FUNCTION;
37          esupport &= ~(E_REDEFW|E_RCONST|E_OUTCHAN);
# Line 41 | Line 40 | char  *argv[];
40   #endif
41          varset("PI", ':', 3.14159265358979323846);
42  
43 <        for (i = 1; i < argc; i++)
44 <                fcompile(argv[i]);
45 <
43 >        for (i = 1; i < argc; i++) {
44 >                cp = getpath(argv[i], getrlibpath(), 0);
45 >                if (cp == NULL) {
46 >                        eputs(argv[0]);
47 >                        eputs(": cannot find file '");
48 >                        eputs(argv[i]);
49 >                        eputs("'\n");
50 >                        quit(1);
51 >                }
52 >                fcompile(cp);
53 >        }
54          setjmp(env);
55          recover = 1;
56          eclock++;
57  
58 <        while (fgets(expr, sizeof(expr), stdin) != NULL) {
59 <                for (cp = expr; *cp && *cp != '\n'; cp++)
60 <                        ;
61 <                *cp = '\0';
58 >        epos = expr;
59 >        while (fgets(epos, sizeof(expr)-(epos-expr), stdin) != NULL) {
60 >                while (*epos && *epos != '\n')
61 >                        epos++;
62 >                if (*epos && epos > expr && epos[-1] == '\\') {
63 >                        epos[-1] = ' ';
64 >                        continue;               /* escaped newline */
65 >                }
66 >                while (epos > expr && isspace(epos[-1]))
67 >                        epos--;                 /* eliminate end spaces */
68 >                *epos = '\0';
69 >                epos = expr;
70                  switch (expr[0]) {
71                  case '\0':
72                          continue;
73                  case '?':
74                          for (cp = expr+1; isspace(*cp); cp++)
75                                  ;
76 +                        if (*calcontext(NULL))
77 +                                printf("context is: %s\n", calcontext(NULL));
78                          if (*cp)
79                                  dprint(cp, stdout);
80                          else
# Line 85 | Line 102 | char  *argv[];
102                                  eputs("file name required\n");
103                                  continue;
104                          }
105 +                        cp = getpath(cp, getrlibpath(), 0);
106 +                        if (cp == NULL) {
107 +                                eputs("cannot find file\n");
108 +                                continue;
109 +                        }
110                          fcompile(cp);
111                          eclock++;
112                          continue;
113 +                case '[':
114 +                        for (cp = expr+1; isspace(*cp); cp++)
115 +                                ;
116 +                        if (!isalpha(*cp)) {
117 +                                eputs("context name required\n");
118 +                                continue;
119 +                        }
120 +                        printf("context now: %s\n", pushcontext(cp));
121 +                        continue;
122 +                case ']':
123 +                        cp = popcontext();
124 +                        if (*cp)
125 +                                printf("context now: %s\n", cp);
126 +                        else
127 +                                printf("at global context\n");
128 +                        continue;
129                  }
130                  if ((cp = strchr(expr, '=')) != NULL ||
131                                  (cp = strchr(expr, ':')) != NULL) {
# Line 116 | Line 154 | char  *argv[];
154  
155          recover = 0;
156          quit(0);
157 +        return 0; /* pro forma exit */
158   }
159  
160  
# Line 134 | Line 173 | int  n;
173  
174  
175   void
176 < eputs(msg)
138 < char  *msg;
176 > eputs(const char *msg)
177   {
178          fputs(msg, stderr);
179   }
180  
181  
182   void
183 < wputs(msg)
146 < char  *msg;
183 > wputs(const char *msg)
184   {
185          eputs(msg);
186   }
187  
188  
189   void
190 < quit(code)
154 < int  code;
190 > quit(int code)
191   {
192          if (recover)                    /* a cavalier approach */
193                  longjmp(env, 1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines