ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rvmain.c
Revision: 2.11
Committed: Wed Oct 5 17:20:55 2011 UTC (12 years, 7 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad4R2P2, rad4R2, rad4R1, rad4R2P1
Changes since 2.10: +6 -2 lines
Log Message:
Windows compatibility changes from Bill Hoffman

File Contents

# User Rev Content
1 greg 2.1 #ifndef lint
2 greg 2.11 static const char RCSid[] = "$Id: rvmain.c,v 2.10 2009/12/12 19:01:00 greg Exp $";
3 greg 2.1 #endif
4     /*
5     * rvmain.c - main for rview interactive viewer
6     */
7    
8 greg 2.2 #include "copyright.h"
9 greg 2.1
10 schorsch 2.3 #include <signal.h>
11 greg 2.5 #include <time.h>
12 schorsch 2.3
13     #include "platform.h"
14 greg 2.1 #include "ray.h"
15     #include "source.h"
16     #include "ambient.h"
17 schorsch 2.4 #include "rpaint.h"
18 greg 2.1 #include "random.h"
19     #include "paths.h"
20     #include "view.h"
21    
22 greg 2.9 extern char *progname; /* global argv[0] */
23 greg 2.1
24 greg 2.9 VIEW ourview = STDVIEW; /* viewing parameters */
25     int hresolu, vresolu; /* image resolution */
26 greg 2.1
27 greg 2.9 int psample = 8; /* pixel sample size */
28     double maxdiff = .15; /* max. sample difference */
29    
30     int greyscale = 0; /* map colors to brightness? */
31     char *dvcname = dev_default; /* output device name */
32    
33     double exposure = 1.0; /* exposure for scene */
34 greg 2.1
35 greg 2.9 int newparam = 1; /* parameter setting changed */
36    
37     struct driver *dev = NULL; /* driver functions */
38 greg 2.1
39 greg 2.9 char rifname[128]; /* rad input file name */
40 greg 2.1
41 greg 2.9 VIEW oldview; /* previous view parameters */
42 greg 2.1
43 greg 2.9 PNODE ptrunk; /* the base of our image */
44     RECT pframe; /* current frame boundaries */
45     int pdepth; /* image depth in current frame */
46 greg 2.1
47 greg 2.9 char *errfile = NULL; /* error output file */
48 greg 2.1
49 greg 2.9 int nproc = 1; /* number of processes */
50 greg 2.1
51 greg 2.9 char *sigerr[NSIG]; /* signal error messages */
52 greg 2.1
53 schorsch 2.4 static void onsig(int signo);
54     static void sigdie(int signo, char *msg);
55     static void printdefaults(void);
56 greg 2.1
57    
58     int
59 greg 2.9 main(int argc, char *argv[])
60 greg 2.1 {
61     #define check(ol,al) if (argv[i][ol] || \
62     badarg(argc-i-1,argv+i+1,al)) \
63     goto badopt
64     #define bool(olen,var) switch (argv[i][olen]) { \
65     case '\0': var = !var; break; \
66     case 'y': case 'Y': case 't': case 'T': \
67     case '+': case '1': var = 1; break; \
68     case 'n': case 'N': case 'f': case 'F': \
69     case '-': case '0': var = 0; break; \
70     default: goto badopt; }
71 greg 2.9 char *octnm = NULL;
72 greg 2.1 char *err;
73     int rval;
74     int i;
75     /* global program name */
76     progname = argv[0] = fixargv0(argv[0]);
77 greg 2.9 /* set our defaults */
78     shadthresh = .1;
79     shadcert = .25;
80     directrelay = 0;
81     vspretest = 128;
82     srcsizerat = 0.;
83     specthresh = .3;
84     specjitter = 1.;
85     maxdepth = 6;
86     minweight = 1e-2;
87     ambacc = 0.3;
88     ambres = 32;
89     ambdiv = 256;
90     ambssamp = 64;
91 greg 2.1 /* option city */
92     for (i = 1; i < argc; i++) {
93     /* expand arguments */
94     while ((rval = expandarg(&argc, &argv, i)) > 0)
95     ;
96     if (rval < 0) {
97     sprintf(errmsg, "cannot expand '%s'", argv[i]);
98     error(SYSTEM, errmsg);
99     }
100     if (argv[i] == NULL || argv[i][0] != '-')
101     break; /* break from options */
102     if (!strcmp(argv[i], "-version")) {
103     puts(VersionID);
104     quit(0);
105     }
106     if (!strcmp(argv[i], "-defaults") ||
107     !strcmp(argv[i], "-help")) {
108     printdefaults();
109     quit(0);
110     }
111     if (!strcmp(argv[i], "-devices")) {
112     printdevices();
113     quit(0);
114     }
115     rval = getrenderopt(argc-i, argv+i);
116     if (rval >= 0) {
117     i += rval;
118     continue;
119     }
120     rval = getviewopt(&ourview, argc-i, argv+i);
121     if (rval >= 0) {
122     i += rval;
123     continue;
124     }
125     switch (argv[i][1]) {
126 greg 2.9 case 'n': /* # processes */
127     check(2,"i");
128     nproc = atoi(argv[++i]);
129     if (nproc <= 0)
130     error(USER, "bad number of processes");
131     break;
132 greg 2.1 case 'v': /* view file */
133     if (argv[i][2] != 'f')
134     goto badopt;
135     check(3,"s");
136     rval = viewfile(argv[++i], &ourview, NULL);
137     if (rval < 0) {
138     sprintf(errmsg,
139     "cannot open view file \"%s\"",
140     argv[i]);
141     error(SYSTEM, errmsg);
142     } else if (rval == 0) {
143     sprintf(errmsg,
144     "bad view file \"%s\"",
145     argv[i]);
146     error(USER, errmsg);
147     }
148     break;
149     case 'b': /* grayscale */
150     bool(2,greyscale);
151     break;
152     case 'p': /* pixel */
153     switch (argv[i][2]) {
154     case 's': /* sample */
155     check(3,"i");
156     psample = atoi(argv[++i]);
157     break;
158     case 't': /* threshold */
159     check(3,"f");
160     maxdiff = atof(argv[++i]);
161     break;
162     case 'e': /* exposure */
163     check(3,"f");
164     exposure = atof(argv[++i]);
165     if (argv[i][0] == '+' || argv[i][0] == '-')
166     exposure = pow(2.0, exposure);
167     break;
168     default:
169     goto badopt;
170     }
171     break;
172     case 'w': /* warnings */
173     rval = erract[WARNING].pf != NULL;
174     bool(2,rval);
175     if (rval) erract[WARNING].pf = wputs;
176     else erract[WARNING].pf = NULL;
177     break;
178     case 'e': /* error file */
179     check(2,"s");
180     errfile = argv[++i];
181     break;
182     case 'o': /* output device */
183     check(2,"s");
184     dvcname = argv[++i];
185     break;
186     case 'R': /* render input file */
187     check(2,"s");
188     strcpy(rifname, argv[++i]);
189     break;
190     default:
191     goto badopt;
192     }
193     }
194     err = setview(&ourview); /* set viewing parameters */
195     if (err != NULL)
196     error(USER, err);
197 greg 2.9 /* set up signal handling */
198 greg 2.1 sigdie(SIGINT, "Interrupt");
199 greg 2.11 sigdie(SIGTERM, "Terminate");
200     #ifndef _WIN32
201 greg 2.1 sigdie(SIGHUP, "Hangup");
202     sigdie(SIGPIPE, "Broken pipe");
203     sigdie(SIGALRM, "Alarm clock");
204 greg 2.11 #endif
205 greg 2.1 /* open error file */
206     if (errfile != NULL) {
207     if (freopen(errfile, "a", stderr) == NULL)
208     quit(2);
209     fprintf(stderr, "**************\n*** PID %5d: ",
210     getpid());
211     printargs(argc, argv, stderr);
212     putc('\n', stderr);
213     fflush(stderr);
214     }
215     #ifdef NICE
216     nice(NICE); /* lower priority */
217     #endif
218     /* get octree */
219     if (i == argc)
220 greg 2.9 octnm = NULL;
221 greg 2.1 else if (i == argc-1)
222 greg 2.9 octnm = argv[i];
223 greg 2.1 else
224     goto badopt;
225 greg 2.9 if (octnm == NULL)
226 greg 2.1 error(USER, "missing octree argument");
227 greg 2.9 /* set up output & start process(es) */
228 schorsch 2.3 SET_FILE_BINARY(stdout);
229 greg 2.9
230 greg 2.10 ray_init(octnm);
231 greg 2.1
232     rview(); /* run interactive viewer */
233    
234 greg 2.9 devclose(); /* close output device */
235 greg 2.1
236     quit(0);
237    
238     badopt:
239     sprintf(errmsg, "command line error at '%s'", argv[i]);
240     error(USER, errmsg);
241 schorsch 2.4 return 1; /* pro forma return */
242 greg 2.1
243     #undef check
244     #undef bool
245     }
246    
247    
248     void
249 schorsch 2.4 wputs( /* warning output function */
250     char *s
251     )
252 greg 2.1 {
253     int lasterrno = errno;
254     eputs(s);
255     errno = lasterrno;
256     }
257    
258    
259     void
260 schorsch 2.4 eputs( /* put string to stderr */
261 greg 2.9 char *s
262 schorsch 2.4 )
263 greg 2.1 {
264     static int midline = 0;
265    
266     if (!*s)
267     return;
268     if (!midline++) {
269     fputs(progname, stderr);
270     fputs(": ", stderr);
271     }
272     fputs(s, stderr);
273     if (s[strlen(s)-1] == '\n') {
274     fflush(stderr);
275     midline = 0;
276     }
277     }
278    
279    
280 schorsch 2.4 static void
281     onsig( /* fatal signal */
282     int signo
283     )
284 greg 2.1 {
285     static int gotsig = 0;
286    
287     if (gotsig++) /* two signals and we're gone! */
288     _exit(signo);
289    
290 greg 2.11 #ifndef _WIN32
291 greg 2.1 alarm(15); /* allow 15 seconds to clean up */
292     signal(SIGALRM, SIG_DFL); /* make certain we do die */
293 greg 2.11 #endif
294 greg 2.1 eputs("signal - ");
295     eputs(sigerr[signo]);
296     eputs("\n");
297 greg 2.9 devclose();
298 greg 2.1 quit(3);
299     }
300    
301    
302 schorsch 2.4 static void
303     sigdie( /* set fatal signal */
304     int signo,
305     char *msg
306     )
307 greg 2.1 {
308     if (signal(signo, onsig) == SIG_IGN)
309     signal(signo, SIG_IGN);
310     sigerr[signo] = msg;
311     }
312    
313    
314 schorsch 2.4 static void
315     printdefaults(void) /* print default values to stdout */
316 greg 2.1 {
317 greg 2.9 printf("-n %-2d\t\t\t\t# number of rendering processes\n", nproc);
318 greg 2.1 printf(greyscale ? "-b+\t\t\t\t# greyscale on\n" :
319     "-b-\t\t\t\t# greyscale off\n");
320     printf("-vt%c\t\t\t\t# view type %s\n", ourview.type,
321     ourview.type==VT_PER ? "perspective" :
322     ourview.type==VT_PAR ? "parallel" :
323     ourview.type==VT_HEM ? "hemispherical" :
324     ourview.type==VT_ANG ? "angular" :
325     ourview.type==VT_CYL ? "cylindrical" :
326 greg 2.8 ourview.type==VT_PLS ? "planisphere" :
327 greg 2.1 "unknown");
328     printf("-vp %f %f %f\t# view point\n",
329     ourview.vp[0], ourview.vp[1], ourview.vp[2]);
330     printf("-vd %f %f %f\t# view direction\n",
331     ourview.vdir[0], ourview.vdir[1], ourview.vdir[2]);
332     printf("-vu %f %f %f\t# view up\n",
333     ourview.vup[0], ourview.vup[1], ourview.vup[2]);
334     printf("-vh %f\t\t\t# view horizontal size\n", ourview.horiz);
335     printf("-vv %f\t\t\t# view vertical size\n", ourview.vert);
336     printf("-vo %f\t\t\t# view fore clipping plane\n", ourview.vfore);
337     printf("-va %f\t\t\t# view aft clipping plane\n", ourview.vaft);
338     printf("-vs %f\t\t\t# view shift\n", ourview.hoff);
339     printf("-vl %f\t\t\t# view lift\n", ourview.voff);
340     printf("-pe %f\t\t\t# pixel exposure\n", exposure);
341     printf("-ps %-9d\t\t\t# pixel sample\n", psample);
342     printf("-pt %f\t\t\t# pixel threshold\n", maxdiff);
343     printf("-o %s\t\t\t\t# output device\n", dvcname);
344     printf(erract[WARNING].pf != NULL ?
345     "-w+\t\t\t\t# warning messages on\n" :
346     "-w-\t\t\t\t# warning messages off\n");
347     print_rdefaults();
348     }