ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/rview.c
Revision: 2.36
Committed: Tue Mar 20 03:37:08 2012 UTC (12 years, 1 month ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.35: +4 -2 lines
Log Message:
Improved immediate mode switching

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: rview.c,v 2.35 2011/08/16 18:09:53 greg Exp $";
3 #endif
4 /*
5 * rview.c - routines and variables for interactive view generation.
6 *
7 * External symbols declared in rpaint.h
8 */
9
10 #include "copyright.h"
11
12 #include <signal.h>
13 #include <ctype.h>
14
15 #include "ray.h"
16 #include "rpaint.h"
17
18 #define CTRL(c) ((c)-'@')
19
20
21 void
22 quit(code) /* quit program */
23 int code;
24 {
25 if (ray_pnprocs > 0) /* close children if any */
26 ray_pclose(0);
27 if (!ray_pnprocs) /* in parent */
28 devclose();
29 exit(code);
30 }
31
32
33 void
34 devopen( /* open device driver */
35 char *dname
36 )
37 {
38 extern char *progname, *octname;
39 char *id;
40 int i;
41
42 id = octname!=NULL ? octname : progname;
43 /* check device table */
44 for (i = 0; devtable[i].name; i++)
45 if (!strcmp(dname, devtable[i].name)) {
46 if ((dev = (*devtable[i].init)(dname, id)) == NULL) {
47 sprintf(errmsg, "cannot initialize %s", dname);
48 error(USER, errmsg);
49 } else
50 return;
51 }
52 /* not there, try exec */
53 if ((dev = comm_init(dname, id)) == NULL) {
54 sprintf(errmsg, "cannot start device \"%s\"", dname);
55 error(USER, errmsg);
56 }
57 }
58
59
60 void
61 devclose(void) /* close our device */
62 {
63 if (dev != NULL)
64 (*dev->close)();
65 dev = NULL;
66 }
67
68
69 void
70 printdevices(void) /* print list of output devices */
71 {
72 int i;
73
74 for (i = 0; devtable[i].name; i++)
75 printf("%-16s # %s\n", devtable[i].name, devtable[i].descrip);
76 }
77
78
79 void
80 rview(void) /* do a view */
81 {
82 char buf[32];
83
84 devopen(dvcname); /* open device */
85 newimage(NULL); /* start image */
86
87 for ( ; ; ) { /* quit in command() */
88 while (hresolu <= 1<<pdepth && vresolu <= 1<<pdepth)
89 command("done: ");
90 errno = 0;
91 if (hresolu <= psample<<pdepth && vresolu <= psample<<pdepth) {
92 sprintf(buf, "%d sampling...\n", 1<<pdepth);
93 (*dev->comout)(buf);
94 rsample();
95 } else {
96 sprintf(buf, "%d refining...\n", 1<<pdepth);
97 (*dev->comout)(buf);
98 refine(&ptrunk, pdepth+1);
99 }
100 if (dev->inpready) /* noticed some input */
101 command(": ");
102 else /* finished this depth */
103 pdepth++;
104 }
105 }
106
107
108 void
109 command( /* get/execute command */
110 char *prompt
111 )
112 {
113 #define badcom(s) strncmp(s, inpbuf, args-inpbuf-1)
114 char inpbuf[256];
115 char *args;
116 again:
117 (*dev->comin)(inpbuf, prompt); /* get command + arguments */
118 for (args = inpbuf; *args && *args != ' '; args++)
119 ;
120 if (*args) *args++ = '\0';
121 else *++args = '\0';
122
123 if (waitrays() < 0) /* clear ray queue */
124 quit(1);
125
126 switch (inpbuf[0]) {
127 case 'f': /* new frame (|focus|free) */
128 if (badcom("frame")) {
129 if (badcom("focus")) {
130 if (badcom("free"))
131 goto commerr;
132 free_objmem();
133 break;
134 }
135 getfocus(args);
136 break;
137 }
138 getframe(args);
139 break;
140 case 'v': /* view */
141 if (badcom("view"))
142 goto commerr;
143 getview(args);
144 break;
145 case 'l': /* last view */
146 if (badcom("last"))
147 goto commerr;
148 lastview(args);
149 break;
150 case 'V': /* save view */
151 if (badcom("V"))
152 goto commerr;
153 saveview(args);
154 break;
155 case 'L': /* load view */
156 if (badcom("L"))
157 goto commerr;
158 loadview(args);
159 break;
160 case 'e': /* exposure */
161 if (badcom("exposure"))
162 goto commerr;
163 getexposure(args);
164 break;
165 case 's': /* set a parameter */
166 if (badcom("set")) {
167 #ifdef SIGTSTP
168 if (!badcom("stop"))
169 goto dostop;
170 #endif
171 goto commerr;
172 }
173 setparam(args);
174 break;
175 case 'n': /* new picture */
176 if (badcom("new"))
177 goto commerr;
178 newimage(args);
179 break;
180 case 't': /* trace a ray */
181 if (badcom("trace"))
182 goto commerr;
183 traceray(args);
184 break;
185 case 'a': /* aim camera */
186 if (badcom("aim"))
187 goto commerr;
188 getaim(args);
189 break;
190 case 'm': /* move camera (or memstats) */
191 if (badcom("move"))
192 goto commerr;
193 getmove(args);
194 break;
195 case 'r': /* rotate/repaint */
196 if (badcom("rotate")) {
197 if (badcom("repaint")) {
198 if (badcom("redraw"))
199 goto commerr;
200 redraw();
201 break;
202 }
203 getrepaint(args);
204 break;
205 }
206 getrotate(args);
207 break;
208 case 'p': /* pivot view */
209 if (badcom("pivot")) {
210 if (badcom("pause"))
211 goto commerr;
212 goto again;
213 }
214 getpivot(args);
215 break;
216 case CTRL('R'): /* redraw */
217 redraw();
218 break;
219 case 'w': /* write */
220 if (badcom("write"))
221 goto commerr;
222 writepict(args);
223 break;
224 case 'q': /* quit */
225 if (badcom("quit"))
226 goto commerr;
227 quit(0);
228 case CTRL('C'): /* interrupt */
229 goto again;
230 #ifdef SIGTSTP
231 case CTRL('Z'):; /* stop */
232 dostop:
233 devclose();
234 kill(0, SIGTSTP);
235 /* pc stops here */
236 devopen(dvcname);
237 redraw();
238 break;
239 #endif
240 case '\0': /* continue */
241 break;
242 default:;
243 commerr:
244 if (iscntrl(inpbuf[0]))
245 sprintf(errmsg, "^%c: unknown control",
246 inpbuf[0]|0100);
247 else
248 sprintf(errmsg, "%s: unknown command", inpbuf);
249 error(COMMAND, errmsg);
250 break;
251 }
252 if (newparam && ray_pnprocs) /* drop into immediate mode */
253 ray_pclose(0);
254 #undef badcom
255 }
256
257
258 void
259 rsample(void) /* sample the image */
260 {
261 int xsiz, ysiz, y;
262 PNODE *p;
263 PNODE **pl;
264 int x;
265 /*
266 * We initialize the bottom row in the image at our current
267 * resolution. During sampling, we check super-pixels to the
268 * right and above by calling bigdiff(). If there is a significant
269 * difference, we subsample the super-pixels. The testing process
270 * includes initialization of the next row.
271 */
272 xsiz = (((long)(pframe.r-pframe.l)<<pdepth)+hresolu-1) / hresolu;
273 ysiz = (((long)(pframe.u-pframe.d)<<pdepth)+vresolu-1) / vresolu;
274 pl = (PNODE **)malloc(xsiz*sizeof(PNODE *));
275 if (pl == NULL)
276 return;
277 /*
278 * Initialize the bottom row.
279 */
280 pl[0] = findrect(pframe.l, pframe.d, &ptrunk, pdepth);
281 for (x = 1; x < xsiz; x++) {
282 pl[x] = findrect(pframe.l+((x*hresolu)>>pdepth),
283 pframe.d, &ptrunk, pdepth);
284 }
285 /* sample the image */
286 for (y = 0; /* y < ysiz */ ; y++) {
287 for (x = 0; x < xsiz-1; x++) {
288 if (dev->inpready)
289 goto escape;
290 /*
291 * Test super-pixel to the right.
292 */
293 if (pl[x] != pl[x+1] && bigdiff(pl[x]->v,
294 pl[x+1]->v, maxdiff)) {
295 refine(pl[x], 1);
296 refine(pl[x+1], 1);
297 }
298 }
299 if (y >= ysiz-1)
300 break;
301 for (x = 0; x < xsiz; x++) {
302 if (dev->inpready)
303 goto escape;
304 /*
305 * Find super-pixel at this position in next row.
306 */
307 p = findrect(pframe.l+((x*hresolu)>>pdepth),
308 pframe.d+(((y+1)*vresolu)>>pdepth),
309 &ptrunk, pdepth);
310 /*
311 * Test super-pixel in next row.
312 */
313 if (pl[x] != p && bigdiff(pl[x]->v, p->v, maxdiff)) {
314 refine(pl[x], 1);
315 refine(p, 1);
316 }
317 /*
318 * Copy into super-pixel array.
319 */
320 pl[x] = p;
321 }
322 }
323 escape:
324 free((void *)pl);
325 }
326
327
328 int
329 refine( /* refine a node */
330 PNODE *p,
331 int pd
332 )
333 {
334 int growth;
335 int mx, my;
336
337 if (dev->inpready) /* quit for input */
338 return(0);
339
340 if (pd <= 0) /* depth limit */
341 return(0);
342
343 mx = (p->xmin + p->xmax) >> 1;
344 my = (p->ymin + p->ymax) >> 1;
345 growth = 0;
346
347 if (p->kid == NULL) { /* subdivide */
348
349 if ((p->kid = newptree()) == NULL)
350 return(0);
351
352 p->kid[UR].xmin = mx;
353 p->kid[UR].ymin = my;
354 p->kid[UR].xmax = p->xmax;
355 p->kid[UR].ymax = p->ymax;
356 p->kid[UL].xmin = p->xmin;
357 p->kid[UL].ymin = my;
358 p->kid[UL].xmax = mx;
359 p->kid[UL].ymax = p->ymax;
360 p->kid[DR].xmin = mx;
361 p->kid[DR].ymin = p->ymin;
362 p->kid[DR].xmax = p->xmax;
363 p->kid[DR].ymax = my;
364 p->kid[DL].xmin = p->xmin;
365 p->kid[DL].ymin = p->ymin;
366 p->kid[DL].xmax = mx;
367 p->kid[DL].ymax = my;
368 /*
369 * The following paint order can leave a black pixel
370 * if redraw() is called in (*dev->paintr)().
371 */
372 if (p->x >= mx && p->y >= my)
373 pcopy(p, p->kid+UR);
374 else if (paint(p->kid+UR) < 0)
375 quit(1);
376 if (p->x < mx && p->y >= my)
377 pcopy(p, p->kid+UL);
378 else if (paint(p->kid+UL) < 0)
379 quit(1);
380 if (p->x >= mx && p->y < my)
381 pcopy(p, p->kid+DR);
382 else if (paint(p->kid+DR) < 0)
383 quit(1);
384 if (p->x < mx && p->y < my)
385 pcopy(p, p->kid+DL);
386 else if (paint(p->kid+DL) < 0)
387 quit(1);
388
389 growth++;
390 }
391 /* do children */
392 if (mx > pframe.l) {
393 if (my > pframe.d)
394 growth += refine(p->kid+DL, pd-1);
395 if (my < pframe.u)
396 growth += refine(p->kid+UL, pd-1);
397 }
398 if (mx < pframe.r) {
399 if (my > pframe.d)
400 growth += refine(p->kid+DR, pd-1);
401 if (my < pframe.u)
402 growth += refine(p->kid+UR, pd-1);
403 }
404 return(growth);
405 }